diff --git a/.gitignore b/.gitignore index 8dc23e42d..f43938662 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ buildSrc/** /output/ /Allay-Server/src/test/resources/allayworld/db/ /output/ +/cache/ diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/id/IdentifierMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/id/IdentifierMapper.java index 044b1089a..3620f4a87 100644 --- a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/id/IdentifierMapper.java +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/id/IdentifierMapper.java @@ -1,4 +1,18 @@ package cn.allay.mapping.generator.id; -public class IdentifierMapper { +import org.apache.commons.lang3.tuple.Pair; + +public interface IdentifierMapper { + Pair> translateIdentifier(String fullIdentifier); + + default String getStateValue(String fullIdentifier, String property) { + String[] states = fullIdentifier.substring(fullIdentifier.lastIndexOf("[") + 1).replace("]", "").split(","); + for (String state : states) { + String key = state.split("=")[0]; + if (property.equals(key)) { + return state.split("=")[1]; + } + } + return null; + } } diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/id/IdentifierRemapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/id/IdentifierRemapper.java new file mode 100644 index 000000000..d87bc11b7 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/id/IdentifierRemapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.id; + +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; + +@Retention(value = RetentionPolicy.RUNTIME) +public @interface IdentifierRemapper { + /** + * Regex string to check for when remapping states for blocks. Leave + * empty to check against all blocks. + * + * @return regex string to check against when remapping states for blocks + */ + String[] blockRegex() default ""; +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/id/type/PlanksType.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/id/type/PlanksType.java new file mode 100644 index 000000000..225e55079 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/id/type/PlanksType.java @@ -0,0 +1,14 @@ +package cn.allay.mapping.generator.id.type; + +import cn.allay.mapping.generator.id.IdentifierMapper; +import cn.allay.mapping.generator.id.IdentifierRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@IdentifierRemapper(blockRegex = ".*_planks$") +public class PlanksType implements IdentifierMapper { + @Override + public Pair> translateIdentifier(String fullIdentifier) { + return Pair.of("minecraft:planks", null); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/StateMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/StateMapper.java new file mode 100644 index 000000000..31d8621ad --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/StateMapper.java @@ -0,0 +1,34 @@ +package cn.allay.mapping.generator.state; + +import org.apache.commons.lang3.tuple.Pair; + +public abstract class StateMapper { + + /** + * Translates a state string from a Minecraft: Java Edition + * block state to it's bedrock counterpart. + * + * @param fullIdentifier the full identifier of the block to translate the state for + * @param value the value given in the Java blockstate + * @return a state string for bedrock edition + */ + public abstract Pair translateState(String fullIdentifier, String value); + + public static V asType(Pair pair, Class type) { + if (type.isInstance(pair.getValue())) { + return type.cast(pair.getValue()); + } + throw new IllegalArgumentException("Mapping type " + pair.getValue().getClass().getSimpleName() + " cannot be cast to " + type.getSimpleName()); + } + + protected String getStateValue(String fullIdentifier, String property) { + String[] states = fullIdentifier.substring(fullIdentifier.lastIndexOf("[") + 1).replace("]", "").split(","); + for (String state : states) { + String key = state.split("=")[0]; + if (property.equals(key)) { + return state.split("=")[1]; + } + } + return null; + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/StateRemapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/StateRemapper.java new file mode 100644 index 000000000..92fa1ea72 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/StateRemapper.java @@ -0,0 +1,23 @@ +package cn.allay.mapping.generator.state; + +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; + +@Retention(value = RetentionPolicy.RUNTIME) +public @interface StateRemapper { + + /** + * Regex string to check for when remapping states for blocks. Leave + * empty to check against all blocks. + * + * @return regex string to check against when remapping states for blocks + */ + String[] blockRegex() default ""; + + /** + * The name of the Minecraft: Java Edition blockstate data. + * + * @return the name of the Minecraft: java edition blockstate data. + */ + String value(); +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/BambooBlockAxisMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/BambooBlockAxisMapper.java new file mode 100644 index 000000000..2136200a1 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/BambooBlockAxisMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "axis", blockRegex = "minecraft:(stripped_)?bamboo_block") +public class BambooBlockAxisMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("pillar_axis", value); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/BasaltAxisMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/BasaltAxisMapper.java new file mode 100644 index 000000000..38226f52e --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/BasaltAxisMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "axis", blockRegex = ".*basalt.?$") +public class BasaltAxisMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("pillar_axis", value); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/BeeNestDirectionMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/BeeNestDirectionMapper.java new file mode 100644 index 000000000..0529eb094 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/BeeNestDirectionMapper.java @@ -0,0 +1,21 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "facing", blockRegex = "^minecraft:bee_nest|^minecraft:beehive") +public class BeeNestDirectionMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + int direction = switch (value) { + case "west" -> 1; + case "north" -> 2; + case "east" -> 3; + default -> 0; + }; + return Pair.of("direction", direction); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/BigDripleafDirectionMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/BigDripleafDirectionMapper.java new file mode 100644 index 000000000..7f1a55bc4 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/BigDripleafDirectionMapper.java @@ -0,0 +1,21 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "facing", blockRegex = "^minecraft:big_dripleaf|^minecraft:big_dripleaf_stem") +public class BigDripleafDirectionMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("direction", switch (value) { + case "south" -> 0; + case "west" -> 1; + case "north" -> 2; + case "east" -> 3; + default -> throw new RuntimeException("Could not determine big dripleaf direction!"); + }); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/BigDripleafTiltMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/BigDripleafTiltMapper.java new file mode 100644 index 000000000..abf665e91 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/BigDripleafTiltMapper.java @@ -0,0 +1,21 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "tilt", blockRegex = "^minecraft:big_dripleaf") +public class BigDripleafTiltMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("big_dripleaf_tilt", switch (value) { + case "none" -> "none"; + case "unstable" -> "unstable"; + case "partial" -> "partial_tilt"; + case "full" -> "full_tilt"; + default -> throw new RuntimeException("Unknown tilt state for big dripleaf!"); + }); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/ButtonFaceMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/ButtonFaceMapper.java new file mode 100644 index 000000000..1bbc33ec3 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/ButtonFaceMapper.java @@ -0,0 +1,27 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "face", blockRegex = ".*button.?$") +public class ButtonFaceMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + String facing = this.getStateValue(fullIdentifier, "facing"); + int facingDirection = switch (value) { + case "floor" -> 1; + case "wall" -> switch (facing) { + case "north" -> 2; + case "south" -> 3; + case "west" -> 4; + case "east" -> 5; + default -> 0; + }; + default -> 0; + }; + return Pair.of("facing_direction", facingDirection); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/ButtonPoweredMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/ButtonPoweredMapper.java new file mode 100644 index 000000000..f84c56cf9 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/ButtonPoweredMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "powered", blockRegex = ".*button.?$") +public class ButtonPoweredMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("button_pressed_bit", Boolean.parseBoolean(value)); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/CalibratedSculkSensorFacingMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/CalibratedSculkSensorFacingMapper.java new file mode 100644 index 000000000..967e217e1 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/CalibratedSculkSensorFacingMapper.java @@ -0,0 +1,22 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "facing", blockRegex = "minecraft:calibrated_sculk_sensor") +public class CalibratedSculkSensorFacingMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + int direction = switch (value) { + case "south" -> 0; + case "west" -> 1; + case "north" -> 2; + case "east" -> 3; + default -> throw new IllegalArgumentException("Got " + value + " instead of a cardinal direction"); + }; + return Pair.of("direction", direction); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/CampfireFacingMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/CampfireFacingMapper.java new file mode 100644 index 000000000..2c0ee2235 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/CampfireFacingMapper.java @@ -0,0 +1,21 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "facing", blockRegex = ".*campfire.?$") +public class CampfireFacingMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + int direction = switch (value) { + case "north" -> 2; + case "west" -> 1; + case "east" -> 3; + default -> 0; + }; + return Pair.of("direction", direction); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/CampfireLitMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/CampfireLitMapper.java new file mode 100644 index 000000000..00b948c6d --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/CampfireLitMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "lit", blockRegex = ".*campfire.?$") +public class CampfireLitMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("extinguished", value.equals("false")); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/CandleCountMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/CandleCountMapper.java new file mode 100644 index 000000000..61ea50476 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/CandleCountMapper.java @@ -0,0 +1,16 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "candles", blockRegex = ".*candle$") +public class CandleCountMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + // Java index starts at 1; Bedrock index starts at 0 + return Pair.of("candles", Integer.parseInt(value) - 1); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/CandleLitMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/CandleLitMapper.java new file mode 100644 index 000000000..90e90ca3c --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/CandleLitMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "lit", blockRegex = ".*candle.*") +public class CandleLitMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("lit", value.equals("true")); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/CauldronLiquidLevelMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/CauldronLiquidLevelMapper.java new file mode 100644 index 000000000..cbb47ca6b --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/CauldronLiquidLevelMapper.java @@ -0,0 +1,19 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "level", blockRegex = ".*cauldron.?$") +public class CauldronLiquidLevelMapper extends StateMapper { + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("fill_level", switch (value) { + case "1" -> 3; + case "2" -> 4; + case "3" -> 6; + default -> throw new RuntimeException("Unknown cauldron liquid level!"); + }); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/ChainAxisMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/ChainAxisMapper.java new file mode 100644 index 000000000..366b7a8f6 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/ChainAxisMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "axis", blockRegex = "^minecraft:chain") +public class ChainAxisMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("pillar_axis", value); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/ChiseledBookshelfBooksMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/ChiseledBookshelfBooksMapper.java new file mode 100644 index 000000000..18bb1d307 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/ChiseledBookshelfBooksMapper.java @@ -0,0 +1,23 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "slot_0_occupied", blockRegex = ".*chiseled_bookshelf$") +public class ChiseledBookshelfBooksMapper extends StateMapper { + @Override + public Pair translateState(String fullIdentifier, String value) { + // bedrock stores the book occupancy list as a bitmask. + int mask = 0; + for (int i = 0; i < 6; i++) { + String property = "slot_" + i + "_occupied"; + if ("true".equals(getStateValue(fullIdentifier, property))) { + mask |= (1 << i); + } + } + + return Pair.of("books_stored", mask); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/ChiseledBookshelfFacingMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/ChiseledBookshelfFacingMapper.java new file mode 100644 index 000000000..aee626801 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/ChiseledBookshelfFacingMapper.java @@ -0,0 +1,21 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "facing", blockRegex = ".*chiseled_bookshelf$") +public class ChiseledBookshelfFacingMapper extends StateMapper { + @Override + public Pair translateState(String fullIdentifier, String value) { + int direction = switch (value) { + case "south" -> 0; + case "west" -> 1; + case "north" -> 2; + case "east" -> 3; + default -> throw new IllegalArgumentException("Got " + value + " instead of a cardinal direction"); + }; + return Pair.of("direction", direction); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/DecoratedPotFacingMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/DecoratedPotFacingMapper.java new file mode 100644 index 000000000..947c379cf --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/DecoratedPotFacingMapper.java @@ -0,0 +1,23 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "facing", blockRegex = "minecraft:decorated_pot") +public class DecoratedPotFacingMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + // north/south and east/west are switched here compared to other blocks that use "facing" + int direction = switch (value) { + case "north" -> 0; + case "east" -> 1; + case "south" -> 2; + case "west" -> 3; + default -> throw new IllegalArgumentException("Got " + value + " instead of a cardinal direction"); + }; + return Pair.of("direction", direction); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/DeepslateAxisMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/DeepslateAxisMapper.java new file mode 100644 index 000000000..befd555cd --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/DeepslateAxisMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "axis", blockRegex = "^minecraft:deepslate|^minecraft:infested_deepslate") +public class DeepslateAxisMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("pillar_axis", value); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/DoorFacingMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/DoorFacingMapper.java new file mode 100644 index 000000000..f066f86d9 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/DoorFacingMapper.java @@ -0,0 +1,21 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "facing", blockRegex = ".*_door.?$") +public class DoorFacingMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + int direction = switch (value) { + case "north" -> 3; + case "west" -> 2; + case "south" -> 1; + default -> 0; + }; + return Pair.of("direction", direction); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/DoorHalfMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/DoorHalfMapper.java new file mode 100644 index 000000000..691705ddb --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/DoorHalfMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "half", blockRegex = ".*_door.?$") +public class DoorHalfMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("upper_block_bit", value.equals("upper")); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/DoorHingeMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/DoorHingeMapper.java new file mode 100644 index 000000000..59db35001 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/DoorHingeMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "hinge", blockRegex = ".*_door.?$") +public class DoorHingeMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("door_hinge_bit", value.equals("right")); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/DoorOpenMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/DoorOpenMapper.java new file mode 100644 index 000000000..4eccc96ee --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/DoorOpenMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "open", blockRegex = ".*door.?$") +public class DoorOpenMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("open_bit", Boolean.parseBoolean(value)); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/FenceGateFacingMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/FenceGateFacingMapper.java new file mode 100644 index 000000000..22d2b60f3 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/FenceGateFacingMapper.java @@ -0,0 +1,21 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "facing", blockRegex = ".*_fence_gate.?$") +public class FenceGateFacingMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + int direction = switch (value) { + case "north" -> 2; + case "west" -> 1; + case "east" -> 3; + default -> 0; + }; + return Pair.of("direction", direction); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/FenceGateInWallMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/FenceGateInWallMapper.java new file mode 100644 index 000000000..def53ff72 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/FenceGateInWallMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "in_wall", blockRegex = ".*_fence_gate.?$") +public class FenceGateInWallMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("in_wall_bit", Boolean.parseBoolean(value)); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/FenceGateOpenMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/FenceGateOpenMapper.java new file mode 100644 index 000000000..4523d1458 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/FenceGateOpenMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "open", blockRegex = ".*_fence_gate.?$") +public class FenceGateOpenMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("open_bit", Boolean.parseBoolean(value)); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/FrogLightAxisMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/FrogLightAxisMapper.java new file mode 100644 index 000000000..15265a51e --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/FrogLightAxisMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "axis", blockRegex = ".*_froglight$") +public class FrogLightAxisMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("pillar_axis", value); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/HeadRotationMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/HeadRotationMapper.java new file mode 100644 index 000000000..d60ff3d1d --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/HeadRotationMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "rotation", blockRegex = {".*_(head|skull)", "^((?!wall).)*$", "^((?!piston).)*$"}) +public class HeadRotationMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("facing_direction", 1); // Handled elsewhere (see getRemapBlock) + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/HyphaeAxisMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/HyphaeAxisMapper.java new file mode 100644 index 000000000..7655ec654 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/HyphaeAxisMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "axis", blockRegex = ".*_hyphae.?$") +public class HyphaeAxisMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("pillar_axis", value); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/LeavesPersistenceMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/LeavesPersistenceMapper.java new file mode 100644 index 000000000..04d507d99 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/LeavesPersistenceMapper.java @@ -0,0 +1,14 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "persistent", blockRegex = "^.*_leaves") +public class LeavesPersistenceMapper extends StateMapper { + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("persistent_bit", value.equals("true")); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/LightBlockMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/LightBlockMapper.java new file mode 100644 index 000000000..69caf1a9b --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/LightBlockMapper.java @@ -0,0 +1,14 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "level", blockRegex = "^minecraft:light") +public class LightBlockMapper extends StateMapper { + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("block_light_level", Integer.parseInt(value)); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/LiquidLevelMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/LiquidLevelMapper.java new file mode 100644 index 000000000..1e39b5689 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/LiquidLevelMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "level", blockRegex = "^minecraft:water|^minecraft:lava") +public class LiquidLevelMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("liquid_depth", Integer.parseInt(value)); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/LogAxisMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/LogAxisMapper.java new file mode 100644 index 000000000..58ea12f6e --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/LogAxisMapper.java @@ -0,0 +1,14 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "axis", blockRegex = ".*_log$") +public class LogAxisMapper extends StateMapper { + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("pillar_axis", value); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/MangrovePropaguleHangingMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/MangrovePropaguleHangingMapper.java new file mode 100644 index 000000000..4bb63cbe3 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/MangrovePropaguleHangingMapper.java @@ -0,0 +1,14 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "hanging", blockRegex = ".*mangrove_propagule$") +public class MangrovePropaguleHangingMapper extends StateMapper { + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("hanging", Boolean.parseBoolean(value)); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/MangrovePropaguleStageMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/MangrovePropaguleStageMapper.java new file mode 100644 index 000000000..d15850c7b --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/MangrovePropaguleStageMapper.java @@ -0,0 +1,14 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "stage", blockRegex = ".*mangrove_propagule$") +public class MangrovePropaguleStageMapper extends StateMapper { + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("propagule_stage", Integer.parseInt(value)); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/MuddyMangroveRootsAxisMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/MuddyMangroveRootsAxisMapper.java new file mode 100644 index 000000000..ae032f9a9 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/MuddyMangroveRootsAxisMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "axis", blockRegex = "^minecraft:muddy_mangrove_roots") +public class MuddyMangroveRootsAxisMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("pillar_axis", value); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/PinkPetalsAmountMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/PinkPetalsAmountMapper.java new file mode 100644 index 000000000..67a106a95 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/PinkPetalsAmountMapper.java @@ -0,0 +1,18 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "flower_amount", blockRegex = "minecraft:pink_petals") +public class PinkPetalsAmountMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + // Java has flower_amount 1, 2, 3, 4 + // Bedrock has growth 0, 1, 2, 3, 4, 5, 6, 7 + // but apparently growth greater than 3 can only be obtained via commands: https://minecraft.fandom.com/wiki/Pink_Petals + return Pair.of("growth", Integer.parseUnsignedInt(value) - 1); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/PinkPetalsFacingMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/PinkPetalsFacingMapper.java new file mode 100644 index 000000000..2b11ce2ff --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/PinkPetalsFacingMapper.java @@ -0,0 +1,22 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "facing", blockRegex = "minecraft:pink_petals") +public class PinkPetalsFacingMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + int direction = switch (value) { + case "south" -> 0; + case "west" -> 1; + case "north" -> 2; + case "east" -> 3; + default -> throw new IllegalArgumentException("Got " + value + " instead of a cardinal direction"); + }; + return Pair.of("direction", direction); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/PitcherCropAgeMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/PitcherCropAgeMapper.java new file mode 100644 index 000000000..3380fb7ab --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/PitcherCropAgeMapper.java @@ -0,0 +1,22 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "age", blockRegex = "minecraft:pitcher_crop") +public class PitcherCropAgeMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + int growth = switch (Integer.parseInt(value)) { + case 0 -> 0; + case 1 -> 1; + case 2 -> 3; + case 3 -> 5; + default -> 7; // 4 -> 7 + }; + return Pair.of("growth", growth); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/PitcherCropHalfMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/PitcherCropHalfMapper.java new file mode 100644 index 000000000..4e65458f0 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/PitcherCropHalfMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "half", blockRegex = "minecraft:pitcher_crop") +public class PitcherCropHalfMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("upper_block_bit", "upper".equals(value)); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/PressurePlatePoweredMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/PressurePlatePoweredMapper.java new file mode 100644 index 000000000..c702889c3 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/PressurePlatePoweredMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "powered", blockRegex = ".*_pressure_plate.?$") +public class PressurePlatePoweredMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("redstone_signal", value.equals("true") ? 15 : 0); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/RailDirectionMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/RailDirectionMapper.java new file mode 100644 index 000000000..86334378c --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/RailDirectionMapper.java @@ -0,0 +1,27 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "shape", blockRegex = ".*rail.?$") +public class RailDirectionMapper extends StateMapper { + @Override + public Pair translateState(String fullIdentifier, String value) { + int direction = switch (value) { + case "north_south" -> 0; + case "east_west" -> 1; + case "ascending_east" -> 2; + case "ascending_west" -> 3; + case "ascending_north" -> 4; + case "ascending_south" -> 5; + case "south_east" -> 6; + case "south_west" -> 7; + case "north_west" -> 8; + case "north_east" -> 9; + default -> throw new RuntimeException("Unknown rail state found!: " + value); + }; + return Pair.of("rail_direction", direction); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/RailPoweredMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/RailPoweredMapper.java new file mode 100644 index 000000000..3133ac760 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/RailPoweredMapper.java @@ -0,0 +1,14 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "powered", blockRegex = "^minecraft:detector_rail|^minecraft:powered_rail|^minecraft:activator_rail") +public class RailPoweredMapper extends StateMapper { + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("rail_data_bit", value.equals("true")); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SculkCatalystBloomMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SculkCatalystBloomMapper.java new file mode 100644 index 000000000..d6eb880f9 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SculkCatalystBloomMapper.java @@ -0,0 +1,14 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "bloom", blockRegex = ".*sculk_catalyst$") +public class SculkCatalystBloomMapper extends StateMapper { + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("bloom", Boolean.parseBoolean(value)); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SculkSensorPhaseMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SculkSensorPhaseMapper.java new file mode 100644 index 000000000..f1ed8c265 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SculkSensorPhaseMapper.java @@ -0,0 +1,23 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +/** + * calibrated_sculk_sensor and sculk_sensor + */ +@StateRemapper(value = "sculk_sensor_phase", blockRegex = ".*sculk_sensor") +public class SculkSensorPhaseMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("sculk_sensor_phase", switch (value) { + case "inactive" -> 0; + case "active" -> 1; + case "cooldown" -> 2; + default -> throw new IllegalArgumentException("Unknown sculk sensor phase: " + value); + }); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SculkShriekerCanSummonMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SculkShriekerCanSummonMapper.java new file mode 100644 index 000000000..125bd4291 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SculkShriekerCanSummonMapper.java @@ -0,0 +1,14 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "can_summon", blockRegex = ".*sculk_shrieker$") +public class SculkShriekerCanSummonMapper extends StateMapper { + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("can_summon", Boolean.parseBoolean(value)); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SculkShriekerShriekingMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SculkShriekerShriekingMapper.java new file mode 100644 index 000000000..e22f3700c --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SculkShriekerShriekingMapper.java @@ -0,0 +1,14 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "shrieking", blockRegex = ".*sculk_shrieker$") +public class SculkShriekerShriekingMapper extends StateMapper { + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("active", Boolean.parseBoolean(value)); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SlabTypeMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SlabTypeMapper.java new file mode 100644 index 000000000..333f7a1bd --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SlabTypeMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "type", blockRegex = ".*slab.?$") +public class SlabTypeMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("top_slot_bit", value.equals("top")); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SmallDripLeafDirectionMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SmallDripLeafDirectionMapper.java new file mode 100644 index 000000000..f9ef9e9d5 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SmallDripLeafDirectionMapper.java @@ -0,0 +1,22 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "facing", blockRegex = "^minecraft:small_dripleaf") +public class SmallDripLeafDirectionMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + // Bedrock's small drip leaves are rotated clockwise once for the same direction, so these values are shifted around + return Pair.of("direction", switch (value) { + case "south" -> 3; + case "west" -> 0; + case "north" -> 1; + case "east" -> 2; + default -> throw new RuntimeException("Could not determine small dripleaf direction!"); + }); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/StairFacingMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/StairFacingMapper.java new file mode 100644 index 000000000..9dbfb772e --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/StairFacingMapper.java @@ -0,0 +1,21 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "facing", blockRegex = ".*stairs.?$") +public class StairFacingMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + int weirdoDirection = switch (value) { + case "north" -> 3; + case "south" -> 2; + case "west" -> 1; + default -> 0; + }; + return Pair.of("weirdo_direction", weirdoDirection); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/StairHalfMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/StairHalfMapper.java new file mode 100644 index 000000000..239783809 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/StairHalfMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "half", blockRegex = ".*stairs.?$") +public class StairHalfMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("upside_down_bit", value.equals("top")); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/StemAxisMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/StemAxisMapper.java new file mode 100644 index 000000000..8069e4880 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/StemAxisMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "axis", blockRegex = ".*_stem.?$") +public class StemAxisMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("pillar_axis", value); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/StemFacingMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/StemFacingMapper.java new file mode 100644 index 000000000..5555a1516 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/StemFacingMapper.java @@ -0,0 +1,22 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "facing", blockRegex = ".*[^f]_stem.?$") +public class StemFacingMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + int direction = switch (value) { + case "north" -> 2; + case "west" -> 4; + case "south" -> 3; + case "east" -> 5; + default -> 0; + }; + return Pair.of("facing_direction", direction); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SuspiciousSandDustedMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SuspiciousSandDustedMapper.java new file mode 100644 index 000000000..9c93897d2 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SuspiciousSandDustedMapper.java @@ -0,0 +1,18 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +/** + * Also covers suspicious_gravel + */ +@StateRemapper(value = "dusted", blockRegex = "minecraft:suspicious_(sand|gravel)$") +public class SuspiciousSandDustedMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("brushed_progress", Integer.parseInt(value)); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SuspiciousSandHangingMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SuspiciousSandHangingMapper.java new file mode 100644 index 000000000..6e29432d8 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/SuspiciousSandHangingMapper.java @@ -0,0 +1,18 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +/** + * Also covers suspicious_gravel + */ +@StateRemapper(value = "dusted", blockRegex = "minecraft:suspicious_(sand|gravel)$") +public class SuspiciousSandHangingMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("hanging", false); // seemingly undeterminable + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/TorchFacingMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/TorchFacingMapper.java new file mode 100644 index 000000000..5d2ef143a --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/TorchFacingMapper.java @@ -0,0 +1,22 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "facing", blockRegex = ".*wall_torch.?$") +public class TorchFacingMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + String direction = switch (value) { + case "north" -> "south"; + case "west" -> "east"; + case "south" -> "north"; + case "east" -> "west"; + default -> ""; + }; + return Pair.of("torch_facing_direction", direction); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/TrapdoorFacingMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/TrapdoorFacingMapper.java new file mode 100644 index 000000000..2511e57fc --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/TrapdoorFacingMapper.java @@ -0,0 +1,21 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "facing", blockRegex = ".*trapdoor.?$") +public class TrapdoorFacingMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + int direction = switch (value) { + case "north" -> 3; + case "south" -> 2; + case "west" -> 1; + default -> 0; + }; + return Pair.of("direction", direction); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/TrapdoorHalfMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/TrapdoorHalfMapper.java new file mode 100644 index 000000000..c920a906a --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/TrapdoorHalfMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "half", blockRegex = ".*trapdoor.?$") +public class TrapdoorHalfMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("upside_down_bit", value.equals("top")); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/VinesAgeMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/VinesAgeMapper.java new file mode 100644 index 000000000..440d124c5 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/VinesAgeMapper.java @@ -0,0 +1,27 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "age", blockRegex = ".*_vines.?$") +public class VinesAgeMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + int age = 0; + try { + age = Integer.parseInt(value); + } catch (NumberFormatException ignored) { + } + if (fullIdentifier.contains("weeping")) { + return Pair.of("weeping_vines_age", age); + } else if (fullIdentifier.contains("twisting")) { + return Pair.of("twisting_vines_age", age); + } else { + // Cave vines + return Pair.of("growing_plant_age", age); + } + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/WallHeadFacingMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/WallHeadFacingMapper.java new file mode 100644 index 000000000..f63f49f10 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/WallHeadFacingMapper.java @@ -0,0 +1,25 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "facing", blockRegex = ".*_wall_(head|skull)") +public class WallHeadFacingMapper extends StateMapper { + + public WallHeadFacingMapper() { + } + + @Override + public Pair translateState(String fullIdentifier, String value) { + int direction = switch (value) { + case "north" -> 2; + case "south" -> 3; + case "west" -> 4; + case "east" -> 5; + default -> 0; + }; + return Pair.of("facing_direction", direction); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/WoodAxisMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/WoodAxisMapper.java new file mode 100644 index 000000000..8bc73e6c0 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/WoodAxisMapper.java @@ -0,0 +1,14 @@ +package cn.allay.mapping.generator.state.type; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "axis", blockRegex = ".*_wood$") +public class WoodAxisMapper extends StateMapper { + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("pillar_axis", value); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/sign/HangingSignAttachedMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/sign/HangingSignAttachedMapper.java new file mode 100644 index 000000000..a9a07b544 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/sign/HangingSignAttachedMapper.java @@ -0,0 +1,32 @@ +package cn.allay.mapping.generator.state.type.sign; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + +/** + * If the hanging sign is attached, two chains come off the top of the sign and come to a point. If the hanging sign is + * not attached, the two chains hang completely vertically. + *

+ * The most important thing is that if attached is false, the hanging sign is always facing a cardinal direction. + *

+ * Note that this mapper covers both wall_hanging and hanging signs. attached_bit does not matter for wall_hanging signs, + * in which the BE state "hanging" is false. + *

+ * Extra information: if the hanging sign is hanging from a solid block, attached may be true or false, depending on if + * it was placed while crouching. However, if the hanging sign is below a chain, attached is true. + */ +@StateRemapper(value = "attached", blockRegex = {".*hanging_sign.?$"}) +public class HangingSignAttachedMapper extends StateMapper { + @Override + public Pair translateState(String fullIdentifier, String value) { + boolean state; + if (fullIdentifier.contains("wall")) { + state = false; + } else { + state = Boolean.parseBoolean(value); + } + + return Pair.of("attached_bit", state); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/sign/HangingSignFacingMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/sign/HangingSignFacingMapper.java new file mode 100644 index 000000000..a8f748aab --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/sign/HangingSignFacingMapper.java @@ -0,0 +1,29 @@ +package cn.allay.mapping.generator.state.type.sign; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "rotation", blockRegex = {".*hanging_sign.?$", "^((?!wall).)*$"}) +public class HangingSignFacingMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + // Seems like 'facing_direction' is used if 'attached' is false, in which the sign points + // in a cardinal direction (rather 16 different possible rotation values) + + int facing = switch (Integer.parseUnsignedInt(value)) { + case 0 -> 3; // South rotation to south facing + case 4 -> 4; // West rotation to west facing + case 8 -> 2; // North rotation to north facing + case 12 -> 5; // East rotation to east facing + default -> 2; + // Any other value is a rotation that does NOT point in a cardinal direction. The mapped value theoretically + // shouldn't matter because if the rotation is not cardinal, the sign must have 'attached' true, in which + // 'ground_sign_direction' is used instead of 'facing_direction' + }; + + return Pair.of("facing_direction", facing); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/sign/HangingSignHangingMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/sign/HangingSignHangingMapper.java new file mode 100644 index 000000000..5ab675546 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/sign/HangingSignHangingMapper.java @@ -0,0 +1,20 @@ +package cn.allay.mapping.generator.state.type.sign; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +/** + * Covers "hanging" for both hanging and wall_hanging signs + */ +@StateRemapper(value = "waterlogged", blockRegex = ".*(wall_)?hanging_sign.?$") +public class HangingSignHangingMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + // wall_hanging signs are "not hanging" on BE. + // BE only has one identifier for both wall_hanging and hanging signs, so it uses this state to distinguish + return Pair.of("hanging", !fullIdentifier.contains("wall")); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/sign/SignRotationMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/sign/SignRotationMapper.java new file mode 100644 index 000000000..52f4aa8b5 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/sign/SignRotationMapper.java @@ -0,0 +1,18 @@ +package cn.allay.mapping.generator.state.type.sign; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +/** + * Covers "ground_sign_direction" for both standing signs, and hanging signs (non-wall variants) + */ +@StateRemapper(value = "rotation", blockRegex = {".*sign.?$", "^((?!wall).)*$"}) +public class SignRotationMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("ground_sign_direction", Integer.parseInt(value)); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/sign/WallHangingSignRotationMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/sign/WallHangingSignRotationMapper.java new file mode 100644 index 000000000..c43205369 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/sign/WallHangingSignRotationMapper.java @@ -0,0 +1,26 @@ +package cn.allay.mapping.generator.state.type.sign; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +/** + * Covers ground_sign_direction for wall_hanging signs. Theoretically, this state is not used for wall_hanging_signs, + * which face a cardinal direction (and use the "facing_direction" state), and have "hanging" false + */ +@StateRemapper(value = "facing", blockRegex = ".*wall_hanging_sign.?$") +public class WallHangingSignRotationMapper extends StateMapper { + @Override + public Pair translateState(String fullIdentifier, String value) { + int rotationDirection = switch (value) { + case "south" -> 0; + case "west" -> 4; + case "north" -> 8; + case "east" -> 12; + default -> throw new IllegalArgumentException("Got " + value + " instead of a cardinal direction"); + }; + + return Pair.of("ground_sign_direction", rotationDirection); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/sign/WallSignFacingMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/sign/WallSignFacingMapper.java new file mode 100644 index 000000000..69bdee642 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/sign/WallSignFacingMapper.java @@ -0,0 +1,25 @@ +package cn.allay.mapping.generator.state.type.sign; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +/** + * Covers facing_direction for wall signs and wall_hanging signs + */ +@StateRemapper(value = "facing", blockRegex = ".*wall_(hanging_)?sign.?$") +public class WallSignFacingMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + int facing = switch (value) { + case "north" -> 2; + case "south" -> 3; + case "west" -> 4; + case "east" -> 5; + default -> 0; + }; + return Pair.of("facing_direction", facing); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/sign/package-info.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/sign/package-info.java new file mode 100644 index 000000000..433cd23cf --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/sign/package-info.java @@ -0,0 +1,21 @@ +/** + * Covers block state mapping for standing signs, wall signs, hanging signs, and wall_hanging. On Bedrock edition, + * there is just standing signs, wall signs, and hanging signs. + *

+ * Standing signs are covered by {@link org.geysermc.generator.state.type.sign.SignRotationMapper} (ground_sign_direction) + *

+ * Wall signs are covered by {@link org.geysermc.generator.state.type.sign.WallSignFacingMapper} (facing_direction) + *

+ * Hanging signs are covered by + * {@link org.geysermc.generator.state.type.sign.HangingSignAttachedMapper} (attached_bit) + * {@link org.geysermc.generator.state.type.sign.HangingSignFacingMapper} (facing_direction) + * {@link org.geysermc.generator.state.type.sign.HangingSignHangingMapper} (hanging) + * {@link org.geysermc.generator.state.type.sign.SignRotationMapper} (ground_sign_direction) + *

+ * Wall_hanging signs are covered by + * {@link org.geysermc.generator.state.type.sign.HangingSignAttachedMapper} (attached_bit) + * {@link org.geysermc.generator.state.type.sign.WallSignFacingMapper} (facing_direction) + * {@link org.geysermc.generator.state.type.sign.HangingSignHangingMapper} (hanging) + * {@link org.geysermc.generator.state.type.sign.WallHangingSignRotationMapper} (ground_sign_direction) + */ +package cn.allay.mapping.generator.state.type.sign; diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/wall/WallBlockTypeMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/wall/WallBlockTypeMapper.java new file mode 100644 index 000000000..9231c71ca --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/wall/WallBlockTypeMapper.java @@ -0,0 +1,19 @@ +package cn.allay.mapping.generator.state.type.wall; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +// Used north value as all walls have it +@StateRemapper(value = "north", blockRegex = ".*_wall.?$") +public class WallBlockTypeMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + String trimmedIdentifier = fullIdentifier.split("\\[")[0].split(":")[1]; + // Most walls follow the same naming pattern but not end brick walls + if (trimmedIdentifier.contains("end_stone_brick")) trimmedIdentifier = "end_brick_wall"; + return Pair.of("wall_block_type", trimmedIdentifier.replace("_wall", "")); + } +} diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/wall/WallEastMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/wall/WallEastMapper.java new file mode 100644 index 000000000..56cccf5ee --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/wall/WallEastMapper.java @@ -0,0 +1,16 @@ +package cn.allay.mapping.generator.state.type.wall; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "east", blockRegex = ".*_wall.?$") +public class WallEastMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + if (value.equals("low")) value = "short"; + return Pair.of("wall_connection_type_east", value); + } +} \ No newline at end of file diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/wall/WallNorthMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/wall/WallNorthMapper.java new file mode 100644 index 000000000..46bc50fff --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/wall/WallNorthMapper.java @@ -0,0 +1,16 @@ +package cn.allay.mapping.generator.state.type.wall; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "north", blockRegex = ".*_wall.?$") +public class WallNorthMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + if (value.equals("low")) value = "short"; + return Pair.of("wall_connection_type_north", value); + } +} \ No newline at end of file diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/wall/WallSouthMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/wall/WallSouthMapper.java new file mode 100644 index 000000000..d47521ace --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/wall/WallSouthMapper.java @@ -0,0 +1,16 @@ +package cn.allay.mapping.generator.state.type.wall; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "south", blockRegex = ".*_wall.?$") +public class WallSouthMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + if (value.equals("low")) value = "short"; + return Pair.of("wall_connection_type_south", value); + } +} \ No newline at end of file diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/wall/WallUpMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/wall/WallUpMapper.java new file mode 100644 index 000000000..9f2c1a4b6 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/wall/WallUpMapper.java @@ -0,0 +1,15 @@ +package cn.allay.mapping.generator.state.type.wall; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "up", blockRegex = ".*_wall.?$") +public class WallUpMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + return Pair.of("wall_post_bit", Boolean.parseBoolean(value)); + } +} \ No newline at end of file diff --git a/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/wall/WallWestMapper.java b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/wall/WallWestMapper.java new file mode 100644 index 000000000..ce5145973 --- /dev/null +++ b/Allay-Mapping/src/main/java/cn/allay/mapping/generator/state/type/wall/WallWestMapper.java @@ -0,0 +1,16 @@ +package cn.allay.mapping.generator.state.type.wall; + +import cn.allay.mapping.generator.state.StateMapper; +import cn.allay.mapping.generator.state.StateRemapper; +import org.apache.commons.lang3.tuple.Pair; + + +@StateRemapper(value = "west", blockRegex = ".*_wall.?$") +public class WallWestMapper extends StateMapper { + + @Override + public Pair translateState(String fullIdentifier, String value) { + if (value.equals("low")) value = "short"; + return Pair.of("wall_connection_type_west", value); + } +} \ No newline at end of file diff --git a/Allay-Server/src/test/resources/allayworld/copy/level.dat b/Allay-Server/src/test/resources/allayworld/copy/level.dat new file mode 100644 index 000000000..a648ac6bf Binary files /dev/null and b/Allay-Server/src/test/resources/allayworld/copy/level.dat differ diff --git a/Data/unpacked/block_palette.snbt b/Data/unpacked/block_palette.snbt new file mode 100644 index 000000000..93f3ecfa8 --- /dev/null +++ b/Data/unpacked/block_palette.snbt @@ -0,0 +1,125501 @@ +{ + "blocks": [ + { + "name": "minecraft:blue_candle", + "states": { + "candles": 0, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blue_candle", + "states": { + "candles": 1, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blue_candle", + "states": { + "candles": 2, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blue_candle", + "states": { + "candles": 3, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blue_candle", + "states": { + "candles": 0, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blue_candle", + "states": { + "candles": 1, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blue_candle", + "states": { + "candles": 2, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blue_candle", + "states": { + "candles": 3, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_standing_sign", + "states": { + "ground_sign_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_standing_sign", + "states": { + "ground_sign_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_standing_sign", + "states": { + "ground_sign_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_standing_sign", + "states": { + "ground_sign_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_standing_sign", + "states": { + "ground_sign_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_standing_sign", + "states": { + "ground_sign_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_standing_sign", + "states": { + "ground_sign_direction": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_standing_sign", + "states": { + "ground_sign_direction": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_standing_sign", + "states": { + "ground_sign_direction": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_standing_sign", + "states": { + "ground_sign_direction": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_standing_sign", + "states": { + "ground_sign_direction": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_standing_sign", + "states": { + "ground_sign_direction": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_standing_sign", + "states": { + "ground_sign_direction": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_standing_sign", + "states": { + "ground_sign_direction": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_standing_sign", + "states": { + "ground_sign_direction": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_standing_sign", + "states": { + "ground_sign_direction": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_basalt", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_basalt", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_basalt", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:nether_gold_ore", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_block", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_block", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_block", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:piston_arm_collision", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:piston_arm_collision", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:piston_arm_collision", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:piston_arm_collision", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:piston_arm_collision", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:piston_arm_collision", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_dead", + "states": { + "coral_color": "blue", + "coral_fan_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_dead", + "states": { + "coral_color": "pink", + "coral_fan_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_dead", + "states": { + "coral_color": "purple", + "coral_fan_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_dead", + "states": { + "coral_color": "red", + "coral_fan_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_dead", + "states": { + "coral_color": "yellow", + "coral_fan_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_dead", + "states": { + "coral_color": "blue", + "coral_fan_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_dead", + "states": { + "coral_color": "pink", + "coral_fan_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_dead", + "states": { + "coral_color": "purple", + "coral_fan_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_dead", + "states": { + "coral_color": "red", + "coral_fan_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_dead", + "states": { + "coral_color": "yellow", + "coral_fan_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:powder_snow", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_copper_ore", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:nether_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:nether_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:nether_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:nether_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:nether_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:nether_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:nether_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:nether_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:yellow_shulker_box", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_double_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_double_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:red_wool", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:jungle_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:gray_candle_cake", + "states": { + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:gray_candle_cake", + "states": { + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_pressure_plate", + "states": { + "redstone_signal": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_pressure_plate", + "states": { + "redstone_signal": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_pressure_plate", + "states": { + "redstone_signal": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_pressure_plate", + "states": { + "redstone_signal": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_pressure_plate", + "states": { + "redstone_signal": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_pressure_plate", + "states": { + "redstone_signal": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_pressure_plate", + "states": { + "redstone_signal": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_pressure_plate", + "states": { + "redstone_signal": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_pressure_plate", + "states": { + "redstone_signal": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_pressure_plate", + "states": { + "redstone_signal": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_pressure_plate", + "states": { + "redstone_signal": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_pressure_plate", + "states": { + "redstone_signal": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_pressure_plate", + "states": { + "redstone_signal": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_pressure_plate", + "states": { + "redstone_signal": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_pressure_plate", + "states": { + "redstone_signal": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_pressure_plate", + "states": { + "redstone_signal": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:yellow_wool", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:crimson_wall_sign", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_wall_sign", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_wall_sign", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_wall_sign", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_wall_sign", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_wall_sign", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:end_gateway", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:beacon", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:red_nether_brick", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:snow_layer", + "states": { + "covered_bit": 0b, + "height": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:snow_layer", + "states": { + "covered_bit": 0b, + "height": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:snow_layer", + "states": { + "covered_bit": 0b, + "height": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:snow_layer", + "states": { + "covered_bit": 0b, + "height": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:snow_layer", + "states": { + "covered_bit": 0b, + "height": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:snow_layer", + "states": { + "covered_bit": 0b, + "height": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:snow_layer", + "states": { + "covered_bit": 0b, + "height": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:snow_layer", + "states": { + "covered_bit": 0b, + "height": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:snow_layer", + "states": { + "covered_bit": 1b, + "height": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:snow_layer", + "states": { + "covered_bit": 1b, + "height": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:snow_layer", + "states": { + "covered_bit": 1b, + "height": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:snow_layer", + "states": { + "covered_bit": 1b, + "height": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:snow_layer", + "states": { + "covered_bit": 1b, + "height": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:snow_layer", + "states": { + "covered_bit": 1b, + "height": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:snow_layer", + "states": { + "covered_bit": 1b, + "height": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:snow_layer", + "states": { + "covered_bit": 1b, + "height": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:black_candle", + "states": { + "candles": 0, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:black_candle", + "states": { + "candles": 1, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:black_candle", + "states": { + "candles": 2, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:black_candle", + "states": { + "candles": 3, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:black_candle", + "states": { + "candles": 0, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:black_candle", + "states": { + "candles": 1, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:black_candle", + "states": { + "candles": 2, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:black_candle", + "states": { + "candles": 3, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blue_carpet", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 0, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 1, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 2, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 3, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 4, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 5, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 0, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 1, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 2, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 3, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 4, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 5, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 0, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 1, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 2, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 3, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 4, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 5, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 0, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 1, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 2, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 3, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 4, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_frame", + "states": { + "facing_direction": 5, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_double_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_double_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:hanging_roots", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:prismarine_bricks_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:prismarine_bricks_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:prismarine_bricks_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:prismarine_bricks_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:prismarine_bricks_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:prismarine_bricks_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:prismarine_bricks_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:prismarine_bricks_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_oxidized_cut_copper", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:calcite", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:stripped_dark_oak_log", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_dark_oak_log", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_dark_oak_log", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_log", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_log", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_log", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_shrieker", + "states": { + "active": 0b, + "can_summon": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_shrieker", + "states": { + "active": 1b, + "can_summon": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_shrieker", + "states": { + "active": 0b, + "can_summon": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_shrieker", + "states": { + "active": 1b, + "can_summon": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:gray_wool", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:gray_carpet", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:lime_glazed_terracotta", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:lime_glazed_terracotta", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:lime_glazed_terracotta", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:lime_glazed_terracotta", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:lime_glazed_terracotta", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:lime_glazed_terracotta", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:info_update", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:seagrass", + "states": { + "sea_grass_type": "default" + }, + "version": 18090528 + }, + { + "name": "minecraft:seagrass", + "states": { + "sea_grass_type": "double_top" + }, + "version": 18090528 + }, + { + "name": "minecraft:seagrass", + "states": { + "sea_grass_type": "double_bot" + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_exposed_cut_copper_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_exposed_cut_copper_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:redstone_lamp", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:mossy_cobblestone", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:deepslate", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:magenta_carpet", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:pitcher_crop", + "states": { + "growth": 0, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:pitcher_crop", + "states": { + "growth": 0, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:pitcher_crop", + "states": { + "growth": 1, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:pitcher_crop", + "states": { + "growth": 1, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:pitcher_crop", + "states": { + "growth": 2, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:pitcher_crop", + "states": { + "growth": 2, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:pitcher_crop", + "states": { + "growth": 3, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:pitcher_crop", + "states": { + "growth": 3, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:pitcher_crop", + "states": { + "growth": 4, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:pitcher_crop", + "states": { + "growth": 4, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:pitcher_crop", + "states": { + "growth": 5, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:pitcher_crop", + "states": { + "growth": 5, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:pitcher_crop", + "states": { + "growth": 6, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:pitcher_crop", + "states": { + "growth": 6, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:pitcher_crop", + "states": { + "growth": 7, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:pitcher_crop", + "states": { + "growth": 7, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_wool", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:warped_pressure_plate", + "states": { + "redstone_signal": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_pressure_plate", + "states": { + "redstone_signal": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_pressure_plate", + "states": { + "redstone_signal": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_pressure_plate", + "states": { + "redstone_signal": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_pressure_plate", + "states": { + "redstone_signal": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_pressure_plate", + "states": { + "redstone_signal": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_pressure_plate", + "states": { + "redstone_signal": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_pressure_plate", + "states": { + "redstone_signal": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_pressure_plate", + "states": { + "redstone_signal": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_pressure_plate", + "states": { + "redstone_signal": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_pressure_plate", + "states": { + "redstone_signal": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_pressure_plate", + "states": { + "redstone_signal": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_pressure_plate", + "states": { + "redstone_signal": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_pressure_plate", + "states": { + "redstone_signal": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_pressure_plate", + "states": { + "redstone_signal": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_pressure_plate", + "states": { + "redstone_signal": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:diamond_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:oak_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_log", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_log", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_log", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:end_bricks", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:magenta_shulker_box", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:packed_ice", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:packed_mud", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:light_blue_candle_cake", + "states": { + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:light_blue_candle_cake", + "states": { + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:moss_carpet", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:warped_fungus", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:amethyst_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:gold_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:flower_pot", + "states": { + "update_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:flower_pot", + "states": { + "update_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 0, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 0, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 0, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 0, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 1, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 1, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 1, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 1, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 2, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 2, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 2, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 2, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 3, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 3, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 3, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 3, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 4, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 4, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 4, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 4, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 5, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 5, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 5, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 5, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 6, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 6, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 6, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 6, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 7, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 7, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 7, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 7, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 8, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 8, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 8, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 8, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 9, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 9, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 9, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 9, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 10, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 10, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 10, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 10, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 11, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 11, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 11, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 11, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 12, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 12, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 12, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 12, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 13, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 13, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 13, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 13, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 14, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 14, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 14, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 14, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 15, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 15, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 15, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 15, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 16, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 16, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 16, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 16, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 17, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 17, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 17, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 17, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 18, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 18, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 18, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 18, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 19, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 19, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 19, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 19, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 20, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 20, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 20, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 20, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 21, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 21, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 21, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 21, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 22, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 22, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 22, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 22, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 23, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 23, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 23, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 23, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 24, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 24, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 24, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 24, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 25, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 25, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 25, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 25, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 26, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 26, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 26, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 26, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 27, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 27, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 27, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 27, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 28, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 28, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 28, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 28, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 29, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 29, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 29, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 29, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 30, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 30, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 30, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 30, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 31, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 31, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 31, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 31, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 32, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 32, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 32, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 32, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 33, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 33, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 33, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 33, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 34, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 34, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 34, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 34, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 35, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 35, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 35, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 35, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 36, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 36, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 36, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 36, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 37, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 37, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 37, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 37, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 38, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 38, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 38, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 38, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 39, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 39, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 39, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 39, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 40, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 40, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 40, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 40, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 41, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 41, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 41, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 41, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 42, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 42, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 42, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 42, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 43, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 43, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 43, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 43, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 44, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 44, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 44, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 44, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 45, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 45, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 45, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 45, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 46, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 46, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 46, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 46, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 47, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 47, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 47, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 47, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 48, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 48, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 48, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 48, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 49, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 49, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 49, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 49, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 50, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 50, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 50, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 50, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 51, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 51, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 51, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 51, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 52, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 52, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 52, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 52, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 53, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 53, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 53, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 53, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 54, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 54, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 54, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 54, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 55, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 55, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 55, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 55, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 56, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 56, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 56, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 56, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 57, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 57, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 57, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 57, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 58, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 58, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 58, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 58, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 59, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 59, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 59, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 59, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 60, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 60, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 60, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 60, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 61, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 61, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 61, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 61, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 62, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 62, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 62, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 62, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 63, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 63, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 63, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_bookshelf", + "states": { + "books_stored": 63, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:yellow_flower", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:lime_shulker_box", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:small_amethyst_bud", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:small_amethyst_bud", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:small_amethyst_bud", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:small_amethyst_bud", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:small_amethyst_bud", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:small_amethyst_bud", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:activator_rail", + "states": { + "rail_data_bit": 0b, + "rail_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:activator_rail", + "states": { + "rail_data_bit": 0b, + "rail_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:activator_rail", + "states": { + "rail_data_bit": 0b, + "rail_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:activator_rail", + "states": { + "rail_data_bit": 0b, + "rail_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:activator_rail", + "states": { + "rail_data_bit": 0b, + "rail_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:activator_rail", + "states": { + "rail_data_bit": 0b, + "rail_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:activator_rail", + "states": { + "rail_data_bit": 1b, + "rail_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:activator_rail", + "states": { + "rail_data_bit": 1b, + "rail_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:activator_rail", + "states": { + "rail_data_bit": 1b, + "rail_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:activator_rail", + "states": { + "rail_data_bit": 1b, + "rail_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:activator_rail", + "states": { + "rail_data_bit": 1b, + "rail_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:activator_rail", + "states": { + "rail_data_bit": 1b, + "rail_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:potatoes", + "states": { + "growth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:potatoes", + "states": { + "growth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:potatoes", + "states": { + "growth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:potatoes", + "states": { + "growth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:potatoes", + "states": { + "growth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:potatoes", + "states": { + "growth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:potatoes", + "states": { + "growth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:potatoes", + "states": { + "growth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:muddy_mangrove_roots", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:muddy_mangrove_roots", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:muddy_mangrove_roots", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:noteblock", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:tuff", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_log", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_log", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_log", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_double_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_double_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:raw_gold_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:white_shulker_box", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:black_wool", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:orange_candle", + "states": { + "candles": 0, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:orange_candle", + "states": { + "candles": 1, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:orange_candle", + "states": { + "candles": 2, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:orange_candle", + "states": { + "candles": 3, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:orange_candle", + "states": { + "candles": 0, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:orange_candle", + "states": { + "candles": 1, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:orange_candle", + "states": { + "candles": 2, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:orange_candle", + "states": { + "candles": 3, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_comparator", + "states": { + "direction": 0, + "output_lit_bit": 0b, + "output_subtract_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_comparator", + "states": { + "direction": 1, + "output_lit_bit": 0b, + "output_subtract_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_comparator", + "states": { + "direction": 2, + "output_lit_bit": 0b, + "output_subtract_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_comparator", + "states": { + "direction": 3, + "output_lit_bit": 0b, + "output_subtract_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_comparator", + "states": { + "direction": 0, + "output_lit_bit": 0b, + "output_subtract_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_comparator", + "states": { + "direction": 1, + "output_lit_bit": 0b, + "output_subtract_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_comparator", + "states": { + "direction": 2, + "output_lit_bit": 0b, + "output_subtract_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_comparator", + "states": { + "direction": 3, + "output_lit_bit": 0b, + "output_subtract_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_comparator", + "states": { + "direction": 0, + "output_lit_bit": 1b, + "output_subtract_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_comparator", + "states": { + "direction": 1, + "output_lit_bit": 1b, + "output_subtract_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_comparator", + "states": { + "direction": 2, + "output_lit_bit": 1b, + "output_subtract_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_comparator", + "states": { + "direction": 3, + "output_lit_bit": 1b, + "output_subtract_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_comparator", + "states": { + "direction": 0, + "output_lit_bit": 1b, + "output_subtract_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_comparator", + "states": { + "direction": 1, + "output_lit_bit": 1b, + "output_subtract_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_comparator", + "states": { + "direction": 2, + "output_lit_bit": 1b, + "output_subtract_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_comparator", + "states": { + "direction": 3, + "output_lit_bit": 1b, + "output_subtract_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_fence", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:warped_wall_sign", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_wall_sign", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_wall_sign", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_wall_sign", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_wall_sign", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_wall_sign", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_fence", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:melon_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:waxed_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:mob_spawner", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:soul_fire", + "states": { + "age": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_fire", + "states": { + "age": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_fire", + "states": { + "age": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_fire", + "states": { + "age": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_fire", + "states": { + "age": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_fire", + "states": { + "age": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_fire", + "states": { + "age": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_fire", + "states": { + "age": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_fire", + "states": { + "age": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_fire", + "states": { + "age": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_fire", + "states": { + "age": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_fire", + "states": { + "age": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_fire", + "states": { + "age": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_fire", + "states": { + "age": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_fire", + "states": { + "age": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_fire", + "states": { + "age": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:magenta_candle", + "states": { + "candles": 0, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:magenta_candle", + "states": { + "candles": 1, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:magenta_candle", + "states": { + "candles": 2, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:magenta_candle", + "states": { + "candles": 3, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:magenta_candle", + "states": { + "candles": 0, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:magenta_candle", + "states": { + "candles": 1, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:magenta_candle", + "states": { + "candles": 2, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:magenta_candle", + "states": { + "candles": 3, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_double_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_double_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:obsidian", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oxidized_double_cut_copper_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oxidized_double_cut_copper_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:exposed_copper", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_double_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_double_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:sponge", + "states": { + "sponge_type": "dry" + }, + "version": 18090528 + }, + { + "name": "minecraft:sponge", + "states": { + "sponge_type": "wet" + }, + "version": 18090528 + }, + { + "name": "minecraft:exposed_double_cut_copper_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:exposed_double_cut_copper_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_fence", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:normal_stone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:normal_stone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:normal_stone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:normal_stone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:normal_stone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:normal_stone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:normal_stone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:normal_stone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:hardened_clay", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_jungle_log", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_jungle_log", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_jungle_log", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_double_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_double_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:smoker", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:smoker", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:smoker", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:smoker", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:smoker", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:smoker", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:fire_coral", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:stone", + "states": { + "stone_type": "stone" + }, + "version": 18090528 + }, + { + "name": "minecraft:stone", + "states": { + "stone_type": "granite" + }, + "version": 18090528 + }, + { + "name": "minecraft:stone", + "states": { + "stone_type": "granite_smooth" + }, + "version": 18090528 + }, + { + "name": "minecraft:stone", + "states": { + "stone_type": "diorite" + }, + "version": 18090528 + }, + { + "name": "minecraft:stone", + "states": { + "stone_type": "diorite_smooth" + }, + "version": 18090528 + }, + { + "name": "minecraft:stone", + "states": { + "stone_type": "andesite" + }, + "version": 18090528 + }, + { + "name": "minecraft:stone", + "states": { + "stone_type": "andesite_smooth" + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_log", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_log", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_log", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_glass_pane", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:brain_coral", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:orange_wool", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_double_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_double_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_double_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_double_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:respawn_anchor", + "states": { + "respawn_anchor_charge": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:respawn_anchor", + "states": { + "respawn_anchor_charge": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:respawn_anchor", + "states": { + "respawn_anchor_charge": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:respawn_anchor", + "states": { + "respawn_anchor_charge": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:respawn_anchor", + "states": { + "respawn_anchor_charge": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_gray_concrete", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:green_candle", + "states": { + "candles": 0, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:green_candle", + "states": { + "candles": 1, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:green_candle", + "states": { + "candles": 2, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:green_candle", + "states": { + "candles": 3, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:green_candle", + "states": { + "candles": 0, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:green_candle", + "states": { + "candles": 1, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:green_candle", + "states": { + "candles": 2, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:green_candle", + "states": { + "candles": 3, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_exposed_copper", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:hay_block", + "states": { + "deprecated": 0, + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:hay_block", + "states": { + "deprecated": 1, + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:hay_block", + "states": { + "deprecated": 2, + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:hay_block", + "states": { + "deprecated": 3, + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:hay_block", + "states": { + "deprecated": 0, + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:hay_block", + "states": { + "deprecated": 1, + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:hay_block", + "states": { + "deprecated": 2, + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:hay_block", + "states": { + "deprecated": 3, + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:hay_block", + "states": { + "deprecated": 0, + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:hay_block", + "states": { + "deprecated": 1, + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:hay_block", + "states": { + "deprecated": 2, + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:hay_block", + "states": { + "deprecated": 3, + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_weathered_copper", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:waxed_oxidized_cut_copper_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_oxidized_cut_copper_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cyan_candle_cake", + "states": { + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cyan_candle_cake", + "states": { + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:sapling", + "states": { + "age_bit": 0b, + "sapling_type": "oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:sapling", + "states": { + "age_bit": 0b, + "sapling_type": "spruce" + }, + "version": 18090528 + }, + { + "name": "minecraft:sapling", + "states": { + "age_bit": 0b, + "sapling_type": "birch" + }, + "version": 18090528 + }, + { + "name": "minecraft:sapling", + "states": { + "age_bit": 0b, + "sapling_type": "jungle" + }, + "version": 18090528 + }, + { + "name": "minecraft:sapling", + "states": { + "age_bit": 0b, + "sapling_type": "acacia" + }, + "version": 18090528 + }, + { + "name": "minecraft:sapling", + "states": { + "age_bit": 0b, + "sapling_type": "dark_oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:sapling", + "states": { + "age_bit": 1b, + "sapling_type": "oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:sapling", + "states": { + "age_bit": 1b, + "sapling_type": "spruce" + }, + "version": 18090528 + }, + { + "name": "minecraft:sapling", + "states": { + "age_bit": 1b, + "sapling_type": "birch" + }, + "version": 18090528 + }, + { + "name": "minecraft:sapling", + "states": { + "age_bit": 1b, + "sapling_type": "jungle" + }, + "version": 18090528 + }, + { + "name": "minecraft:sapling", + "states": { + "age_bit": 1b, + "sapling_type": "acacia" + }, + "version": 18090528 + }, + { + "name": "minecraft:sapling", + "states": { + "age_bit": 1b, + "sapling_type": "dark_oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:torch", + "states": { + "torch_facing_direction": "unknown" + }, + "version": 18090528 + }, + { + "name": "minecraft:torch", + "states": { + "torch_facing_direction": "west" + }, + "version": 18090528 + }, + { + "name": "minecraft:torch", + "states": { + "torch_facing_direction": "east" + }, + "version": 18090528 + }, + { + "name": "minecraft:torch", + "states": { + "torch_facing_direction": "north" + }, + "version": 18090528 + }, + { + "name": "minecraft:torch", + "states": { + "torch_facing_direction": "south" + }, + "version": 18090528 + }, + { + "name": "minecraft:torch", + "states": { + "torch_facing_direction": "top" + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:honey_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:dripstone_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:vine", + "states": { + "vine_direction_bits": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:vine", + "states": { + "vine_direction_bits": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:vine", + "states": { + "vine_direction_bits": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:vine", + "states": { + "vine_direction_bits": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:vine", + "states": { + "vine_direction_bits": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:vine", + "states": { + "vine_direction_bits": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:vine", + "states": { + "vine_direction_bits": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:vine", + "states": { + "vine_direction_bits": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:vine", + "states": { + "vine_direction_bits": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:vine", + "states": { + "vine_direction_bits": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:vine", + "states": { + "vine_direction_bits": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:vine", + "states": { + "vine_direction_bits": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:vine", + "states": { + "vine_direction_bits": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:vine", + "states": { + "vine_direction_bits": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:vine", + "states": { + "vine_direction_bits": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:vine", + "states": { + "vine_direction_bits": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:gold_ore", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:yellow_glazed_terracotta", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:yellow_glazed_terracotta", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:yellow_glazed_terracotta", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:yellow_glazed_terracotta", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:yellow_glazed_terracotta", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:yellow_glazed_terracotta", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:stonecutter", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:warped_planks", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:piston", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:piston", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:piston", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:piston", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:piston", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:piston", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_carpet", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:tallgrass", + "states": { + "tall_grass_type": "default" + }, + "version": 18090528 + }, + { + "name": "minecraft:tallgrass", + "states": { + "tall_grass_type": "tall" + }, + "version": 18090528 + }, + { + "name": "minecraft:tallgrass", + "states": { + "tall_grass_type": "fern" + }, + "version": 18090528 + }, + { + "name": "minecraft:tallgrass", + "states": { + "tall_grass_type": "snow" + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:gray_candle", + "states": { + "candles": 0, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:gray_candle", + "states": { + "candles": 1, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:gray_candle", + "states": { + "candles": 2, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:gray_candle", + "states": { + "candles": 3, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:gray_candle", + "states": { + "candles": 0, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:gray_candle", + "states": { + "candles": 1, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:gray_candle", + "states": { + "candles": 2, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:gray_candle", + "states": { + "candles": 3, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_fence", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_planks", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:invisible_bedrock", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:magenta_wool", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:magenta_glazed_terracotta", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:magenta_glazed_terracotta", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:magenta_glazed_terracotta", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:magenta_glazed_terracotta", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:magenta_glazed_terracotta", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:magenta_glazed_terracotta", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass", + "states": { + "color": "white" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass", + "states": { + "color": "orange" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass", + "states": { + "color": "magenta" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass", + "states": { + "color": "light_blue" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass", + "states": { + "color": "yellow" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass", + "states": { + "color": "lime" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass", + "states": { + "color": "pink" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass", + "states": { + "color": "gray" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass", + "states": { + "color": "silver" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass", + "states": { + "color": "cyan" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass", + "states": { + "color": "purple" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass", + "states": { + "color": "blue" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass", + "states": { + "color": "brown" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass", + "states": { + "color": "green" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass", + "states": { + "color": "red" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass", + "states": { + "color": "black" + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:orange_glazed_terracotta", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:orange_glazed_terracotta", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:orange_glazed_terracotta", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:orange_glazed_terracotta", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:orange_glazed_terracotta", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:orange_glazed_terracotta", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_basalt", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:waterlily", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:emerald_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:suspicious_sand", + "states": { + "brushed_progress": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:suspicious_sand", + "states": { + "brushed_progress": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:suspicious_sand", + "states": { + "brushed_progress": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:suspicious_sand", + "states": { + "brushed_progress": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:suspicious_sand", + "states": { + "brushed_progress": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:suspicious_sand", + "states": { + "brushed_progress": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:suspicious_sand", + "states": { + "brushed_progress": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:suspicious_sand", + "states": { + "brushed_progress": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:heavy_weighted_pressure_plate", + "states": { + "redstone_signal": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:heavy_weighted_pressure_plate", + "states": { + "redstone_signal": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:heavy_weighted_pressure_plate", + "states": { + "redstone_signal": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:heavy_weighted_pressure_plate", + "states": { + "redstone_signal": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:heavy_weighted_pressure_plate", + "states": { + "redstone_signal": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:heavy_weighted_pressure_plate", + "states": { + "redstone_signal": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:heavy_weighted_pressure_plate", + "states": { + "redstone_signal": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:heavy_weighted_pressure_plate", + "states": { + "redstone_signal": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:heavy_weighted_pressure_plate", + "states": { + "redstone_signal": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:heavy_weighted_pressure_plate", + "states": { + "redstone_signal": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:heavy_weighted_pressure_plate", + "states": { + "redstone_signal": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:heavy_weighted_pressure_plate", + "states": { + "redstone_signal": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:heavy_weighted_pressure_plate", + "states": { + "redstone_signal": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:heavy_weighted_pressure_plate", + "states": { + "redstone_signal": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:heavy_weighted_pressure_plate", + "states": { + "redstone_signal": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:heavy_weighted_pressure_plate", + "states": { + "redstone_signal": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:lightning_rod", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:lightning_rod", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:lightning_rod", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:lightning_rod", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:lightning_rod", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:lightning_rod", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "granite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "diorite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "andesite", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "end_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "prismarine", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_sandstone", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone_wall", + "states": { + "wall_block_type": "red_nether_brick", + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:underwater_torch", + "states": { + "torch_facing_direction": "unknown" + }, + "version": 18090528 + }, + { + "name": "minecraft:underwater_torch", + "states": { + "torch_facing_direction": "west" + }, + "version": 18090528 + }, + { + "name": "minecraft:underwater_torch", + "states": { + "torch_facing_direction": "east" + }, + "version": 18090528 + }, + { + "name": "minecraft:underwater_torch", + "states": { + "torch_facing_direction": "north" + }, + "version": 18090528 + }, + { + "name": "minecraft:underwater_torch", + "states": { + "torch_facing_direction": "south" + }, + "version": 18090528 + }, + { + "name": "minecraft:underwater_torch", + "states": { + "torch_facing_direction": "top" + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_double_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_double_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_mosaic_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_mosaic_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_log", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_log", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_log", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "y", + "stripped_bit": 0b, + "wood_type": "oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "y", + "stripped_bit": 0b, + "wood_type": "spruce" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "y", + "stripped_bit": 0b, + "wood_type": "birch" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "y", + "stripped_bit": 0b, + "wood_type": "jungle" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "y", + "stripped_bit": 0b, + "wood_type": "acacia" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "y", + "stripped_bit": 0b, + "wood_type": "dark_oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "y", + "stripped_bit": 1b, + "wood_type": "oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "y", + "stripped_bit": 1b, + "wood_type": "spruce" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "y", + "stripped_bit": 1b, + "wood_type": "birch" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "y", + "stripped_bit": 1b, + "wood_type": "jungle" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "y", + "stripped_bit": 1b, + "wood_type": "acacia" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "y", + "stripped_bit": 1b, + "wood_type": "dark_oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "x", + "stripped_bit": 0b, + "wood_type": "oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "x", + "stripped_bit": 0b, + "wood_type": "spruce" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "x", + "stripped_bit": 0b, + "wood_type": "birch" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "x", + "stripped_bit": 0b, + "wood_type": "jungle" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "x", + "stripped_bit": 0b, + "wood_type": "acacia" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "x", + "stripped_bit": 0b, + "wood_type": "dark_oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "x", + "stripped_bit": 1b, + "wood_type": "oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "x", + "stripped_bit": 1b, + "wood_type": "spruce" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "x", + "stripped_bit": 1b, + "wood_type": "birch" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "x", + "stripped_bit": 1b, + "wood_type": "jungle" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "x", + "stripped_bit": 1b, + "wood_type": "acacia" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "x", + "stripped_bit": 1b, + "wood_type": "dark_oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "z", + "stripped_bit": 0b, + "wood_type": "oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "z", + "stripped_bit": 0b, + "wood_type": "spruce" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "z", + "stripped_bit": 0b, + "wood_type": "birch" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "z", + "stripped_bit": 0b, + "wood_type": "jungle" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "z", + "stripped_bit": 0b, + "wood_type": "acacia" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "z", + "stripped_bit": 0b, + "wood_type": "dark_oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "z", + "stripped_bit": 1b, + "wood_type": "oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "z", + "stripped_bit": 1b, + "wood_type": "spruce" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "z", + "stripped_bit": 1b, + "wood_type": "birch" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "z", + "stripped_bit": 1b, + "wood_type": "jungle" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "z", + "stripped_bit": 1b, + "wood_type": "acacia" + }, + "version": 18090528 + }, + { + "name": "minecraft:wood", + "states": { + "pillar_axis": "z", + "stripped_bit": 1b, + "wood_type": "dark_oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:ochre_froglight", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:ochre_froglight", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:ochre_froglight", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:observer", + "states": { + "minecraft:facing_direction": "down", + "powered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:observer", + "states": { + "minecraft:facing_direction": "up", + "powered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:observer", + "states": { + "minecraft:facing_direction": "north", + "powered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:observer", + "states": { + "minecraft:facing_direction": "south", + "powered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:observer", + "states": { + "minecraft:facing_direction": "west", + "powered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:observer", + "states": { + "minecraft:facing_direction": "east", + "powered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:observer", + "states": { + "minecraft:facing_direction": "down", + "powered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:observer", + "states": { + "minecraft:facing_direction": "up", + "powered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:observer", + "states": { + "minecraft:facing_direction": "north", + "powered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:observer", + "states": { + "minecraft:facing_direction": "south", + "powered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:observer", + "states": { + "minecraft:facing_direction": "west", + "powered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:observer", + "states": { + "minecraft:facing_direction": "east", + "powered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:redstone_torch", + "states": { + "torch_facing_direction": "unknown" + }, + "version": 18090528 + }, + { + "name": "minecraft:redstone_torch", + "states": { + "torch_facing_direction": "west" + }, + "version": 18090528 + }, + { + "name": "minecraft:redstone_torch", + "states": { + "torch_facing_direction": "east" + }, + "version": 18090528 + }, + { + "name": "minecraft:redstone_torch", + "states": { + "torch_facing_direction": "north" + }, + "version": 18090528 + }, + { + "name": "minecraft:redstone_torch", + "states": { + "torch_facing_direction": "south" + }, + "version": 18090528 + }, + { + "name": "minecraft:redstone_torch", + "states": { + "torch_facing_direction": "top" + }, + "version": 18090528 + }, + { + "name": "minecraft:silver_glazed_terracotta", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:silver_glazed_terracotta", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:silver_glazed_terracotta", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:silver_glazed_terracotta", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:silver_glazed_terracotta", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:silver_glazed_terracotta", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:granite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:granite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:granite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:granite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:granite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:granite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:granite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:granite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_concrete", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:glowingobsidian", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:brown_mushroom", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:brown_glazed_terracotta", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_glazed_terracotta", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_glazed_terracotta", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_glazed_terracotta", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_glazed_terracotta", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_glazed_terracotta", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:oxidized_copper", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:copper_ore", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:birch_pressure_plate", + "states": { + "redstone_signal": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_pressure_plate", + "states": { + "redstone_signal": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_pressure_plate", + "states": { + "redstone_signal": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_pressure_plate", + "states": { + "redstone_signal": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_pressure_plate", + "states": { + "redstone_signal": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_pressure_plate", + "states": { + "redstone_signal": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_pressure_plate", + "states": { + "redstone_signal": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_pressure_plate", + "states": { + "redstone_signal": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_pressure_plate", + "states": { + "redstone_signal": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_pressure_plate", + "states": { + "redstone_signal": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_pressure_plate", + "states": { + "redstone_signal": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_pressure_plate", + "states": { + "redstone_signal": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_pressure_plate", + "states": { + "redstone_signal": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_pressure_plate", + "states": { + "redstone_signal": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_pressure_plate", + "states": { + "redstone_signal": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_pressure_plate", + "states": { + "redstone_signal": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:scaffolding", + "states": { + "stability": 0, + "stability_check": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:scaffolding", + "states": { + "stability": 1, + "stability_check": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:scaffolding", + "states": { + "stability": 2, + "stability_check": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:scaffolding", + "states": { + "stability": 3, + "stability_check": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:scaffolding", + "states": { + "stability": 4, + "stability_check": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:scaffolding", + "states": { + "stability": 5, + "stability_check": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:scaffolding", + "states": { + "stability": 6, + "stability_check": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:scaffolding", + "states": { + "stability": 7, + "stability_check": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:scaffolding", + "states": { + "stability": 0, + "stability_check": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:scaffolding", + "states": { + "stability": 1, + "stability_check": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:scaffolding", + "states": { + "stability": 2, + "stability_check": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:scaffolding", + "states": { + "stability": 3, + "stability_check": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:scaffolding", + "states": { + "stability": 4, + "stability_check": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:scaffolding", + "states": { + "stability": 5, + "stability_check": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:scaffolding", + "states": { + "stability": 6, + "stability_check": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:scaffolding", + "states": { + "stability": 7, + "stability_check": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:sandstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:sandstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:sandstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:sandstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:sandstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:sandstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:sandstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:sandstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:green_candle_cake", + "states": { + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:green_candle_cake", + "states": { + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_bamboo_block", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_bamboo_block", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_bamboo_block", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:red_mushroom_block", + "states": { + "huge_mushroom_bits": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_mushroom_block", + "states": { + "huge_mushroom_bits": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_mushroom_block", + "states": { + "huge_mushroom_bits": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_mushroom_block", + "states": { + "huge_mushroom_bits": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_mushroom_block", + "states": { + "huge_mushroom_bits": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_mushroom_block", + "states": { + "huge_mushroom_bits": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_mushroom_block", + "states": { + "huge_mushroom_bits": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_mushroom_block", + "states": { + "huge_mushroom_bits": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_mushroom_block", + "states": { + "huge_mushroom_bits": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_mushroom_block", + "states": { + "huge_mushroom_bits": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_mushroom_block", + "states": { + "huge_mushroom_bits": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_mushroom_block", + "states": { + "huge_mushroom_bits": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_mushroom_block", + "states": { + "huge_mushroom_bits": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_mushroom_block", + "states": { + "huge_mushroom_bits": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_mushroom_block", + "states": { + "huge_mushroom_bits": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_mushroom_block", + "states": { + "huge_mushroom_bits": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_catalyst", + "states": { + "bloom": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_catalyst", + "states": { + "bloom": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobblestone", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:horn_coral", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:yellow_concrete", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:cyan_carpet", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:red_flower", + "states": { + "flower_type": "poppy" + }, + "version": 18090528 + }, + { + "name": "minecraft:red_flower", + "states": { + "flower_type": "orchid" + }, + "version": 18090528 + }, + { + "name": "minecraft:red_flower", + "states": { + "flower_type": "allium" + }, + "version": 18090528 + }, + { + "name": "minecraft:red_flower", + "states": { + "flower_type": "houstonia" + }, + "version": 18090528 + }, + { + "name": "minecraft:red_flower", + "states": { + "flower_type": "tulip_red" + }, + "version": 18090528 + }, + { + "name": "minecraft:red_flower", + "states": { + "flower_type": "tulip_orange" + }, + "version": 18090528 + }, + { + "name": "minecraft:red_flower", + "states": { + "flower_type": "tulip_white" + }, + "version": 18090528 + }, + { + "name": "minecraft:red_flower", + "states": { + "flower_type": "tulip_pink" + }, + "version": 18090528 + }, + { + "name": "minecraft:red_flower", + "states": { + "flower_type": "oxeye" + }, + "version": 18090528 + }, + { + "name": "minecraft:red_flower", + "states": { + "flower_type": "cornflower" + }, + "version": 18090528 + }, + { + "name": "minecraft:red_flower", + "states": { + "flower_type": "lily_of_the_valley" + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_sandstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_sandstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_sandstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_sandstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_sandstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_sandstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_sandstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_sandstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_pressure_plate", + "states": { + "redstone_signal": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_pressure_plate", + "states": { + "redstone_signal": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_pressure_plate", + "states": { + "redstone_signal": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_pressure_plate", + "states": { + "redstone_signal": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_pressure_plate", + "states": { + "redstone_signal": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_pressure_plate", + "states": { + "redstone_signal": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_pressure_plate", + "states": { + "redstone_signal": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_pressure_plate", + "states": { + "redstone_signal": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_pressure_plate", + "states": { + "redstone_signal": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_pressure_plate", + "states": { + "redstone_signal": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_pressure_plate", + "states": { + "redstone_signal": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_pressure_plate", + "states": { + "redstone_signal": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_pressure_plate", + "states": { + "redstone_signal": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_pressure_plate", + "states": { + "redstone_signal": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_pressure_plate", + "states": { + "redstone_signal": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_pressure_plate", + "states": { + "redstone_signal": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:double_cut_copper_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_cut_copper_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:sandstone", + "states": { + "sand_stone_type": "default" + }, + "version": 18090528 + }, + { + "name": "minecraft:sandstone", + "states": { + "sand_stone_type": "heiroglyphs" + }, + "version": 18090528 + }, + { + "name": "minecraft:sandstone", + "states": { + "sand_stone_type": "cut" + }, + "version": 18090528 + }, + { + "name": "minecraft:sandstone", + "states": { + "sand_stone_type": "smooth" + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_candle_cake", + "states": { + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_candle_cake", + "states": { + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_wall_sign", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_wall_sign", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_wall_sign", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_wall_sign", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_wall_sign", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_wall_sign", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_weighted_pressure_plate", + "states": { + "redstone_signal": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_weighted_pressure_plate", + "states": { + "redstone_signal": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_weighted_pressure_plate", + "states": { + "redstone_signal": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_weighted_pressure_plate", + "states": { + "redstone_signal": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_weighted_pressure_plate", + "states": { + "redstone_signal": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_weighted_pressure_plate", + "states": { + "redstone_signal": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_weighted_pressure_plate", + "states": { + "redstone_signal": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_weighted_pressure_plate", + "states": { + "redstone_signal": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_weighted_pressure_plate", + "states": { + "redstone_signal": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_weighted_pressure_plate", + "states": { + "redstone_signal": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_weighted_pressure_plate", + "states": { + "redstone_signal": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_weighted_pressure_plate", + "states": { + "redstone_signal": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_weighted_pressure_plate", + "states": { + "redstone_signal": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_weighted_pressure_plate", + "states": { + "redstone_signal": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_weighted_pressure_plate", + "states": { + "redstone_signal": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_weighted_pressure_plate", + "states": { + "redstone_signal": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:undyed_shulker_box", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:mycelium", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:bamboo", + "states": { + "age_bit": 0b, + "bamboo_leaf_size": "no_leaves", + "bamboo_stalk_thickness": "thin" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo", + "states": { + "age_bit": 0b, + "bamboo_leaf_size": "no_leaves", + "bamboo_stalk_thickness": "thick" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo", + "states": { + "age_bit": 0b, + "bamboo_leaf_size": "small_leaves", + "bamboo_stalk_thickness": "thin" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo", + "states": { + "age_bit": 0b, + "bamboo_leaf_size": "small_leaves", + "bamboo_stalk_thickness": "thick" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo", + "states": { + "age_bit": 0b, + "bamboo_leaf_size": "large_leaves", + "bamboo_stalk_thickness": "thin" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo", + "states": { + "age_bit": 0b, + "bamboo_leaf_size": "large_leaves", + "bamboo_stalk_thickness": "thick" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo", + "states": { + "age_bit": 1b, + "bamboo_leaf_size": "no_leaves", + "bamboo_stalk_thickness": "thin" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo", + "states": { + "age_bit": 1b, + "bamboo_leaf_size": "no_leaves", + "bamboo_stalk_thickness": "thick" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo", + "states": { + "age_bit": 1b, + "bamboo_leaf_size": "small_leaves", + "bamboo_stalk_thickness": "thin" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo", + "states": { + "age_bit": 1b, + "bamboo_leaf_size": "small_leaves", + "bamboo_stalk_thickness": "thick" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo", + "states": { + "age_bit": 1b, + "bamboo_leaf_size": "large_leaves", + "bamboo_stalk_thickness": "thin" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo", + "states": { + "age_bit": 1b, + "bamboo_leaf_size": "large_leaves", + "bamboo_stalk_thickness": "thick" + }, + "version": 18090528 + }, + { + "name": "minecraft:quartz_block", + "states": { + "chisel_type": "default", + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:quartz_block", + "states": { + "chisel_type": "chiseled", + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:quartz_block", + "states": { + "chisel_type": "lines", + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:quartz_block", + "states": { + "chisel_type": "smooth", + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:quartz_block", + "states": { + "chisel_type": "default", + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:quartz_block", + "states": { + "chisel_type": "chiseled", + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:quartz_block", + "states": { + "chisel_type": "lines", + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:quartz_block", + "states": { + "chisel_type": "smooth", + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:quartz_block", + "states": { + "chisel_type": "default", + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:quartz_block", + "states": { + "chisel_type": "chiseled", + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:quartz_block", + "states": { + "chisel_type": "lines", + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:quartz_block", + "states": { + "chisel_type": "smooth", + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:smithing_table", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:green_wool", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:green_carpet", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:pitcher_plant", + "states": { + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:pitcher_plant", + "states": { + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_pressure_plate", + "states": { + "redstone_signal": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_pressure_plate", + "states": { + "redstone_signal": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_pressure_plate", + "states": { + "redstone_signal": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_pressure_plate", + "states": { + "redstone_signal": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_pressure_plate", + "states": { + "redstone_signal": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_pressure_plate", + "states": { + "redstone_signal": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_pressure_plate", + "states": { + "redstone_signal": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_pressure_plate", + "states": { + "redstone_signal": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_pressure_plate", + "states": { + "redstone_signal": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_pressure_plate", + "states": { + "redstone_signal": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_pressure_plate", + "states": { + "redstone_signal": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_pressure_plate", + "states": { + "redstone_signal": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_pressure_plate", + "states": { + "redstone_signal": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_pressure_plate", + "states": { + "redstone_signal": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_pressure_plate", + "states": { + "redstone_signal": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_pressure_plate", + "states": { + "redstone_signal": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:netherite_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:pink_wool", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:redstone_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:birch_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:redstone_wire", + "states": { + "redstone_signal": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:redstone_wire", + "states": { + "redstone_signal": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:redstone_wire", + "states": { + "redstone_signal": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:redstone_wire", + "states": { + "redstone_signal": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:redstone_wire", + "states": { + "redstone_signal": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:redstone_wire", + "states": { + "redstone_signal": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:redstone_wire", + "states": { + "redstone_signal": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:redstone_wire", + "states": { + "redstone_signal": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:redstone_wire", + "states": { + "redstone_signal": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:redstone_wire", + "states": { + "redstone_signal": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:redstone_wire", + "states": { + "redstone_signal": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:redstone_wire", + "states": { + "redstone_signal": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:redstone_wire", + "states": { + "redstone_signal": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:redstone_wire", + "states": { + "redstone_signal": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:redstone_wire", + "states": { + "redstone_signal": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:redstone_wire", + "states": { + "redstone_signal": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_exposed_cut_copper", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:lava", + "states": { + "liquid_depth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:lava", + "states": { + "liquid_depth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:lava", + "states": { + "liquid_depth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:lava", + "states": { + "liquid_depth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:lava", + "states": { + "liquid_depth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:lava", + "states": { + "liquid_depth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:lava", + "states": { + "liquid_depth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:lava", + "states": { + "liquid_depth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:lava", + "states": { + "liquid_depth": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:lava", + "states": { + "liquid_depth": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:lava", + "states": { + "liquid_depth": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:lava", + "states": { + "liquid_depth": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:lava", + "states": { + "liquid_depth": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:lava", + "states": { + "liquid_depth": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:lava", + "states": { + "liquid_depth": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:lava", + "states": { + "liquid_depth": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:loom", + "states": { + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:loom", + "states": { + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:loom", + "states": { + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:loom", + "states": { + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:end_stone", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_pressure_plate", + "states": { + "redstone_signal": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_pressure_plate", + "states": { + "redstone_signal": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_pressure_plate", + "states": { + "redstone_signal": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_pressure_plate", + "states": { + "redstone_signal": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_pressure_plate", + "states": { + "redstone_signal": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_pressure_plate", + "states": { + "redstone_signal": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_pressure_plate", + "states": { + "redstone_signal": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_pressure_plate", + "states": { + "redstone_signal": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_pressure_plate", + "states": { + "redstone_signal": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_pressure_plate", + "states": { + "redstone_signal": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_pressure_plate", + "states": { + "redstone_signal": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_pressure_plate", + "states": { + "redstone_signal": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_pressure_plate", + "states": { + "redstone_signal": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_pressure_plate", + "states": { + "redstone_signal": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_pressure_plate", + "states": { + "redstone_signal": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_pressure_plate", + "states": { + "redstone_signal": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:glowstone", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:stone_pressure_plate", + "states": { + "redstone_signal": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_pressure_plate", + "states": { + "redstone_signal": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_pressure_plate", + "states": { + "redstone_signal": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_pressure_plate", + "states": { + "redstone_signal": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_pressure_plate", + "states": { + "redstone_signal": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_pressure_plate", + "states": { + "redstone_signal": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_pressure_plate", + "states": { + "redstone_signal": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_pressure_plate", + "states": { + "redstone_signal": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_pressure_plate", + "states": { + "redstone_signal": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_pressure_plate", + "states": { + "redstone_signal": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_pressure_plate", + "states": { + "redstone_signal": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_pressure_plate", + "states": { + "redstone_signal": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_pressure_plate", + "states": { + "redstone_signal": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_pressure_plate", + "states": { + "redstone_signal": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_pressure_plate", + "states": { + "redstone_signal": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_pressure_plate", + "states": { + "redstone_signal": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_exposed_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_exposed_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_exposed_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_exposed_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_exposed_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_exposed_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_exposed_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_exposed_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:farmland", + "states": { + "moisturized_amount": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:farmland", + "states": { + "moisturized_amount": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:farmland", + "states": { + "moisturized_amount": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:farmland", + "states": { + "moisturized_amount": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:farmland", + "states": { + "moisturized_amount": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:farmland", + "states": { + "moisturized_amount": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:farmland", + "states": { + "moisturized_amount": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:farmland", + "states": { + "moisturized_amount": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:rail", + "states": { + "rail_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:rail", + "states": { + "rail_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:rail", + "states": { + "rail_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:rail", + "states": { + "rail_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:rail", + "states": { + "rail_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:rail", + "states": { + "rail_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:rail", + "states": { + "rail_direction": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:rail", + "states": { + "rail_direction": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:rail", + "states": { + "rail_direction": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:rail", + "states": { + "rail_direction": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mossy_cobblestone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:mossy_cobblestone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:mossy_cobblestone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:mossy_cobblestone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:mossy_cobblestone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:mossy_cobblestone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:mossy_cobblestone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:mossy_cobblestone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang2", + "states": { + "coral_direction": 0, + "coral_hang_type_bit": 0b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang2", + "states": { + "coral_direction": 0, + "coral_hang_type_bit": 1b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang2", + "states": { + "coral_direction": 0, + "coral_hang_type_bit": 0b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang2", + "states": { + "coral_direction": 0, + "coral_hang_type_bit": 1b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang2", + "states": { + "coral_direction": 1, + "coral_hang_type_bit": 0b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang2", + "states": { + "coral_direction": 1, + "coral_hang_type_bit": 1b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang2", + "states": { + "coral_direction": 1, + "coral_hang_type_bit": 0b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang2", + "states": { + "coral_direction": 1, + "coral_hang_type_bit": 1b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang2", + "states": { + "coral_direction": 2, + "coral_hang_type_bit": 0b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang2", + "states": { + "coral_direction": 2, + "coral_hang_type_bit": 1b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang2", + "states": { + "coral_direction": 2, + "coral_hang_type_bit": 0b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang2", + "states": { + "coral_direction": 2, + "coral_hang_type_bit": 1b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang2", + "states": { + "coral_direction": 3, + "coral_hang_type_bit": 0b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang2", + "states": { + "coral_direction": 3, + "coral_hang_type_bit": 1b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang2", + "states": { + "coral_direction": 3, + "coral_hang_type_bit": 0b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang2", + "states": { + "coral_direction": 3, + "coral_hang_type_bit": 1b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang3", + "states": { + "coral_direction": 0, + "coral_hang_type_bit": 0b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang3", + "states": { + "coral_direction": 0, + "coral_hang_type_bit": 1b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang3", + "states": { + "coral_direction": 0, + "coral_hang_type_bit": 0b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang3", + "states": { + "coral_direction": 0, + "coral_hang_type_bit": 1b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang3", + "states": { + "coral_direction": 1, + "coral_hang_type_bit": 0b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang3", + "states": { + "coral_direction": 1, + "coral_hang_type_bit": 1b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang3", + "states": { + "coral_direction": 1, + "coral_hang_type_bit": 0b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang3", + "states": { + "coral_direction": 1, + "coral_hang_type_bit": 1b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang3", + "states": { + "coral_direction": 2, + "coral_hang_type_bit": 0b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang3", + "states": { + "coral_direction": 2, + "coral_hang_type_bit": 1b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang3", + "states": { + "coral_direction": 2, + "coral_hang_type_bit": 0b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang3", + "states": { + "coral_direction": 2, + "coral_hang_type_bit": 1b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang3", + "states": { + "coral_direction": 3, + "coral_hang_type_bit": 0b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang3", + "states": { + "coral_direction": 3, + "coral_hang_type_bit": 1b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang3", + "states": { + "coral_direction": 3, + "coral_hang_type_bit": 0b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang3", + "states": { + "coral_direction": 3, + "coral_hang_type_bit": 1b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:detector_rail", + "states": { + "rail_data_bit": 0b, + "rail_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:detector_rail", + "states": { + "rail_data_bit": 0b, + "rail_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:detector_rail", + "states": { + "rail_data_bit": 0b, + "rail_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:detector_rail", + "states": { + "rail_data_bit": 0b, + "rail_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:detector_rail", + "states": { + "rail_data_bit": 0b, + "rail_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:detector_rail", + "states": { + "rail_data_bit": 0b, + "rail_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:detector_rail", + "states": { + "rail_data_bit": 1b, + "rail_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:detector_rail", + "states": { + "rail_data_bit": 1b, + "rail_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:detector_rail", + "states": { + "rail_data_bit": 1b, + "rail_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:detector_rail", + "states": { + "rail_data_bit": 1b, + "rail_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:detector_rail", + "states": { + "rail_data_bit": 1b, + "rail_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:detector_rail", + "states": { + "rail_data_bit": 1b, + "rail_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:monster_egg", + "states": { + "monster_egg_stone_type": "stone" + }, + "version": 18090528 + }, + { + "name": "minecraft:monster_egg", + "states": { + "monster_egg_stone_type": "cobblestone" + }, + "version": 18090528 + }, + { + "name": "minecraft:monster_egg", + "states": { + "monster_egg_stone_type": "stone_brick" + }, + "version": 18090528 + }, + { + "name": "minecraft:monster_egg", + "states": { + "monster_egg_stone_type": "mossy_stone_brick" + }, + "version": 18090528 + }, + { + "name": "minecraft:monster_egg", + "states": { + "monster_egg_stone_type": "cracked_stone_brick" + }, + "version": 18090528 + }, + { + "name": "minecraft:monster_egg", + "states": { + "monster_egg_stone_type": "chiseled_stone_brick" + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_granite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_granite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_granite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_granite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_granite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_granite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_granite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_granite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_candle_cake", + "states": { + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_candle_cake", + "states": { + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cracked_deepslate_tiles", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_wood", + "states": { + "pillar_axis": "y", + "stripped_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_wood", + "states": { + "pillar_axis": "y", + "stripped_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_wood", + "states": { + "pillar_axis": "x", + "stripped_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_wood", + "states": { + "pillar_axis": "x", + "stripped_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_wood", + "states": { + "pillar_axis": "z", + "stripped_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_wood", + "states": { + "pillar_axis": "z", + "stripped_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:red_glazed_terracotta", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_glazed_terracotta", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_glazed_terracotta", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_glazed_terracotta", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_glazed_terracotta", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_glazed_terracotta", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_mosaic_double_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_mosaic_double_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_nylium", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:structure_void", + "states": { + "structure_void_type": "void" + }, + "version": 18090528 + }, + { + "name": "minecraft:structure_void", + "states": { + "structure_void_type": "air" + }, + "version": 18090528 + }, + { + "name": "minecraft:purple_concrete", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:snow", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:sand", + "states": { + "sand_type": "normal" + }, + "version": 18090528 + }, + { + "name": "minecraft:sand", + "states": { + "sand_type": "red" + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector", + "states": { + "redstone_signal": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector", + "states": { + "redstone_signal": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector", + "states": { + "redstone_signal": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector", + "states": { + "redstone_signal": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector", + "states": { + "redstone_signal": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector", + "states": { + "redstone_signal": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector", + "states": { + "redstone_signal": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector", + "states": { + "redstone_signal": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector", + "states": { + "redstone_signal": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector", + "states": { + "redstone_signal": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector", + "states": { + "redstone_signal": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector", + "states": { + "redstone_signal": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector", + "states": { + "redstone_signal": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector", + "states": { + "redstone_signal": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector", + "states": { + "redstone_signal": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector", + "states": { + "redstone_signal": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_standing_sign", + "states": { + "ground_sign_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_standing_sign", + "states": { + "ground_sign_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_standing_sign", + "states": { + "ground_sign_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_standing_sign", + "states": { + "ground_sign_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_standing_sign", + "states": { + "ground_sign_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_standing_sign", + "states": { + "ground_sign_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_standing_sign", + "states": { + "ground_sign_direction": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_standing_sign", + "states": { + "ground_sign_direction": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_standing_sign", + "states": { + "ground_sign_direction": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_standing_sign", + "states": { + "ground_sign_direction": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_standing_sign", + "states": { + "ground_sign_direction": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_standing_sign", + "states": { + "ground_sign_direction": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_standing_sign", + "states": { + "ground_sign_direction": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_standing_sign", + "states": { + "ground_sign_direction": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_standing_sign", + "states": { + "ground_sign_direction": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_standing_sign", + "states": { + "ground_sign_direction": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_mangrove_wood", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_mangrove_wood", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_mangrove_wood", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:conduit", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:slime", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:bone_block", + "states": { + "deprecated": 0, + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:bone_block", + "states": { + "deprecated": 1, + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:bone_block", + "states": { + "deprecated": 2, + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:bone_block", + "states": { + "deprecated": 3, + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:bone_block", + "states": { + "deprecated": 0, + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:bone_block", + "states": { + "deprecated": 1, + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:bone_block", + "states": { + "deprecated": 2, + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:bone_block", + "states": { + "deprecated": 3, + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:bone_block", + "states": { + "deprecated": 0, + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:bone_block", + "states": { + "deprecated": 1, + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:bone_block", + "states": { + "deprecated": 2, + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:bone_block", + "states": { + "deprecated": 3, + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 0, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 1, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 2, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 3, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 4, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 5, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 0, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 1, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 2, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 3, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 4, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 5, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 0, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 1, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 2, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 3, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 4, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 5, + "item_frame_map_bit": 0b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 0, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 1, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 2, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 3, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 4, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:frame", + "states": { + "facing_direction": 5, + "item_frame_map_bit": 1b, + "item_frame_photo_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_log", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_log", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_log", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab", + "states": { + "stone_slab_type": "smooth_stone", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab", + "states": { + "stone_slab_type": "sandstone", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab", + "states": { + "stone_slab_type": "wood", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab", + "states": { + "stone_slab_type": "cobblestone", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab", + "states": { + "stone_slab_type": "brick", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab", + "states": { + "stone_slab_type": "stone_brick", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab", + "states": { + "stone_slab_type": "quartz", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab", + "states": { + "stone_slab_type": "nether_brick", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab", + "states": { + "stone_slab_type": "smooth_stone", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab", + "states": { + "stone_slab_type": "sandstone", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab", + "states": { + "stone_slab_type": "wood", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab", + "states": { + "stone_slab_type": "cobblestone", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab", + "states": { + "stone_slab_type": "brick", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab", + "states": { + "stone_slab_type": "stone_brick", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab", + "states": { + "stone_slab_type": "quartz", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab", + "states": { + "stone_slab_type": "nether_brick", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:lapis_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:coal_ore", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:client_request_placeholder_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:redstone_ore", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_double_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_double_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:nether_brick_fence", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dead_tube_coral", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:nether_wart_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hyphae", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hyphae", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hyphae", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:weathered_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:weathered_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:weathered_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:weathered_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:weathered_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:weathered_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:weathered_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:weathered_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:small_dripleaf_block", + "states": { + "direction": 0, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:small_dripleaf_block", + "states": { + "direction": 0, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:small_dripleaf_block", + "states": { + "direction": 1, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:small_dripleaf_block", + "states": { + "direction": 1, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:small_dripleaf_block", + "states": { + "direction": 2, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:small_dripleaf_block", + "states": { + "direction": 2, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:small_dripleaf_block", + "states": { + "direction": 3, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:small_dripleaf_block", + "states": { + "direction": 3, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_log", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_log", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_log", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:basalt", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:basalt", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:basalt", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:lit_redstone_lamp", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:leaves2", + "states": { + "new_leaf_type": "acacia", + "persistent_bit": 0b, + "update_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:leaves2", + "states": { + "new_leaf_type": "dark_oak", + "persistent_bit": 0b, + "update_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:leaves2", + "states": { + "new_leaf_type": "acacia", + "persistent_bit": 0b, + "update_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:leaves2", + "states": { + "new_leaf_type": "dark_oak", + "persistent_bit": 0b, + "update_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:leaves2", + "states": { + "new_leaf_type": "acacia", + "persistent_bit": 1b, + "update_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:leaves2", + "states": { + "new_leaf_type": "dark_oak", + "persistent_bit": 1b, + "update_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:leaves2", + "states": { + "new_leaf_type": "acacia", + "persistent_bit": 1b, + "update_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:leaves2", + "states": { + "new_leaf_type": "dark_oak", + "persistent_bit": 1b, + "update_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:diamond_ore", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:warped_roots", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:magenta_concrete", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:sticky_piston", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:sticky_piston", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:sticky_piston", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:sticky_piston", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:sticky_piston", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:sticky_piston", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:ender_chest", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:ender_chest", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:ender_chest", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:ender_chest", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:ender_chest", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:ender_chest", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:medium_amethyst_bud", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:medium_amethyst_bud", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:medium_amethyst_bud", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:medium_amethyst_bud", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:medium_amethyst_bud", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:medium_amethyst_bud", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_shulker_box", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:warped_double_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_double_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_wall_sign", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_wall_sign", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_wall_sign", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_wall_sign", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_wall_sign", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_wall_sign", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_sensor", + "states": { + "sculk_sensor_phase": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_sensor", + "states": { + "sculk_sensor_phase": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_sensor", + "states": { + "sculk_sensor_phase": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:diorite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:diorite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:diorite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:diorite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:diorite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:diorite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:diorite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:diorite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:frog_spawn", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:red_shulker_box", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:stripped_cherry_log", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_cherry_log", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_cherry_log", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:honeycomb_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:quartz_ore", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector_inverted", + "states": { + "redstone_signal": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector_inverted", + "states": { + "redstone_signal": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector_inverted", + "states": { + "redstone_signal": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector_inverted", + "states": { + "redstone_signal": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector_inverted", + "states": { + "redstone_signal": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector_inverted", + "states": { + "redstone_signal": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector_inverted", + "states": { + "redstone_signal": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector_inverted", + "states": { + "redstone_signal": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector_inverted", + "states": { + "redstone_signal": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector_inverted", + "states": { + "redstone_signal": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector_inverted", + "states": { + "redstone_signal": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector_inverted", + "states": { + "redstone_signal": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector_inverted", + "states": { + "redstone_signal": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector_inverted", + "states": { + "redstone_signal": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector_inverted", + "states": { + "redstone_signal": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:daylight_detector_inverted", + "states": { + "redstone_signal": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:barrel", + "states": { + "facing_direction": 0, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:barrel", + "states": { + "facing_direction": 1, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:barrel", + "states": { + "facing_direction": 2, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:barrel", + "states": { + "facing_direction": 3, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:barrel", + "states": { + "facing_direction": 4, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:barrel", + "states": { + "facing_direction": 5, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:barrel", + "states": { + "facing_direction": 0, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:barrel", + "states": { + "facing_direction": 1, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:barrel", + "states": { + "facing_direction": 2, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:barrel", + "states": { + "facing_direction": 3, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:barrel", + "states": { + "facing_direction": 4, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:barrel", + "states": { + "facing_direction": 5, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:chorus_flower", + "states": { + "age": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chorus_flower", + "states": { + "age": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chorus_flower", + "states": { + "age": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chorus_flower", + "states": { + "age": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chorus_flower", + "states": { + "age": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:chorus_flower", + "states": { + "age": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang", + "states": { + "coral_direction": 0, + "coral_hang_type_bit": 0b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang", + "states": { + "coral_direction": 0, + "coral_hang_type_bit": 1b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang", + "states": { + "coral_direction": 0, + "coral_hang_type_bit": 0b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang", + "states": { + "coral_direction": 0, + "coral_hang_type_bit": 1b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang", + "states": { + "coral_direction": 1, + "coral_hang_type_bit": 0b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang", + "states": { + "coral_direction": 1, + "coral_hang_type_bit": 1b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang", + "states": { + "coral_direction": 1, + "coral_hang_type_bit": 0b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang", + "states": { + "coral_direction": 1, + "coral_hang_type_bit": 1b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang", + "states": { + "coral_direction": 2, + "coral_hang_type_bit": 0b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang", + "states": { + "coral_direction": 2, + "coral_hang_type_bit": 1b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang", + "states": { + "coral_direction": 2, + "coral_hang_type_bit": 0b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang", + "states": { + "coral_direction": 2, + "coral_hang_type_bit": 1b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang", + "states": { + "coral_direction": 3, + "coral_hang_type_bit": 0b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang", + "states": { + "coral_direction": 3, + "coral_hang_type_bit": 1b, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang", + "states": { + "coral_direction": 3, + "coral_hang_type_bit": 0b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan_hang", + "states": { + "coral_direction": 3, + "coral_hang_type_bit": 1b, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cracked_nether_bricks", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:powered_repeater", + "states": { + "direction": 0, + "repeater_delay": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_repeater", + "states": { + "direction": 1, + "repeater_delay": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_repeater", + "states": { + "direction": 2, + "repeater_delay": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_repeater", + "states": { + "direction": 3, + "repeater_delay": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_repeater", + "states": { + "direction": 0, + "repeater_delay": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_repeater", + "states": { + "direction": 1, + "repeater_delay": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_repeater", + "states": { + "direction": 2, + "repeater_delay": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_repeater", + "states": { + "direction": 3, + "repeater_delay": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_repeater", + "states": { + "direction": 0, + "repeater_delay": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_repeater", + "states": { + "direction": 1, + "repeater_delay": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_repeater", + "states": { + "direction": 2, + "repeater_delay": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_repeater", + "states": { + "direction": 3, + "repeater_delay": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_repeater", + "states": { + "direction": 0, + "repeater_delay": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_repeater", + "states": { + "direction": 1, + "repeater_delay": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_repeater", + "states": { + "direction": 2, + "repeater_delay": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:powered_repeater", + "states": { + "direction": 3, + "repeater_delay": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_blue_candle", + "states": { + "candles": 0, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:light_blue_candle", + "states": { + "candles": 1, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:light_blue_candle", + "states": { + "candles": 2, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:light_blue_candle", + "states": { + "candles": 3, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:light_blue_candle", + "states": { + "candles": 0, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:light_blue_candle", + "states": { + "candles": 1, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:light_blue_candle", + "states": { + "candles": 2, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:light_blue_candle", + "states": { + "candles": 3, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin", + "states": { + "minecraft:cardinal_direction": "south" + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin", + "states": { + "minecraft:cardinal_direction": "west" + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin", + "states": { + "minecraft:cardinal_direction": "north" + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin", + "states": { + "minecraft:cardinal_direction": "east" + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tiles", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:smooth_stone", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:lime_concrete", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:black_candle_cake", + "states": { + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:black_candle_cake", + "states": { + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:red_mushroom", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:gilded_blackstone", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:exposed_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:exposed_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:exposed_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:exposed_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:exposed_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:exposed_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:exposed_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:exposed_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:reserved6", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:unknown", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan", + "states": { + "coral_color": "blue", + "coral_fan_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan", + "states": { + "coral_color": "pink", + "coral_fan_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan", + "states": { + "coral_color": "purple", + "coral_fan_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan", + "states": { + "coral_color": "red", + "coral_fan_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan", + "states": { + "coral_color": "yellow", + "coral_fan_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan", + "states": { + "coral_color": "blue", + "coral_fan_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan", + "states": { + "coral_color": "pink", + "coral_fan_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan", + "states": { + "coral_color": "purple", + "coral_fan_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan", + "states": { + "coral_color": "red", + "coral_fan_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_fan", + "states": { + "coral_color": "yellow", + "coral_fan_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:yellow_candle_cake", + "states": { + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:yellow_candle_cake", + "states": { + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 0, + "growth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 0, + "growth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 0, + "growth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 0, + "growth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 0, + "growth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 0, + "growth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 0, + "growth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 0, + "growth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 1, + "growth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 1, + "growth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 1, + "growth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 1, + "growth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 1, + "growth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 1, + "growth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 1, + "growth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 1, + "growth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 2, + "growth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 2, + "growth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 2, + "growth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 2, + "growth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 2, + "growth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 2, + "growth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 2, + "growth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 2, + "growth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 3, + "growth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 3, + "growth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 3, + "growth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 3, + "growth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 3, + "growth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 3, + "growth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 3, + "growth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_petals", + "states": { + "direction": 3, + "growth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:infested_deepslate", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:infested_deepslate", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:infested_deepslate", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_torch", + "states": { + "torch_facing_direction": "unknown" + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_torch", + "states": { + "torch_facing_direction": "west" + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_torch", + "states": { + "torch_facing_direction": "east" + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_torch", + "states": { + "torch_facing_direction": "north" + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_torch", + "states": { + "torch_facing_direction": "south" + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_torch", + "states": { + "torch_facing_direction": "top" + }, + "version": 18090528 + }, + { + "name": "minecraft:podzol", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:copper_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:lit_redstone_ore", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deadbush", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:waxed_weathered_double_cut_copper_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_weathered_double_cut_copper_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_bricks", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:red_candle", + "states": { + "candles": 0, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:red_candle", + "states": { + "candles": 1, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:red_candle", + "states": { + "candles": 2, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:red_candle", + "states": { + "candles": 3, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:red_candle", + "states": { + "candles": 0, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:red_candle", + "states": { + "candles": 1, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:red_candle", + "states": { + "candles": 2, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:red_candle", + "states": { + "candles": 3, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cut_copper", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:iron_ore", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:frosted_ice", + "states": { + "age": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:frosted_ice", + "states": { + "age": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:frosted_ice", + "states": { + "age": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:frosted_ice", + "states": { + "age": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:large_amethyst_bud", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:large_amethyst_bud", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:large_amethyst_bud", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:large_amethyst_bud", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:large_amethyst_bud", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:large_amethyst_bud", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:suspicious_gravel", + "states": { + "brushed_progress": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:suspicious_gravel", + "states": { + "brushed_progress": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:suspicious_gravel", + "states": { + "brushed_progress": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:suspicious_gravel", + "states": { + "brushed_progress": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:suspicious_gravel", + "states": { + "brushed_progress": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:suspicious_gravel", + "states": { + "brushed_progress": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:suspicious_gravel", + "states": { + "brushed_progress": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:suspicious_gravel", + "states": { + "brushed_progress": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_water", + "states": { + "liquid_depth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_water", + "states": { + "liquid_depth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_water", + "states": { + "liquid_depth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_water", + "states": { + "liquid_depth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_water", + "states": { + "liquid_depth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_water", + "states": { + "liquid_depth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_water", + "states": { + "liquid_depth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_water", + "states": { + "liquid_depth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_water", + "states": { + "liquid_depth": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_water", + "states": { + "liquid_depth": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_water", + "states": { + "liquid_depth": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_water", + "states": { + "liquid_depth": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_water", + "states": { + "liquid_depth": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_water", + "states": { + "liquid_depth": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_water", + "states": { + "liquid_depth": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_water", + "states": { + "liquid_depth": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:brick_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:hard_glass", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:quartz_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:quartz_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:quartz_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:quartz_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:quartz_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:quartz_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:quartz_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:quartz_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 16 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 17 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 18 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 19 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 20 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 21 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 22 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 23 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 24 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines", + "states": { + "growing_plant_age": 25 + }, + "version": 18090528 + }, + { + "name": "minecraft:iron_bars", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:light_blue_carpet", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 0, + "growth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 0, + "growth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 0, + "growth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 0, + "growth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 0, + "growth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 0, + "growth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 0, + "growth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 0, + "growth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 1, + "growth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 1, + "growth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 1, + "growth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 1, + "growth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 1, + "growth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 1, + "growth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 1, + "growth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 1, + "growth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 2, + "growth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 2, + "growth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 2, + "growth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 2, + "growth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 2, + "growth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 2, + "growth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 2, + "growth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 2, + "growth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 3, + "growth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 3, + "growth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 3, + "growth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 3, + "growth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 3, + "growth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 3, + "growth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 3, + "growth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 3, + "growth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 4, + "growth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 4, + "growth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 4, + "growth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 4, + "growth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 4, + "growth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 4, + "growth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 4, + "growth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 4, + "growth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 5, + "growth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 5, + "growth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 5, + "growth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 5, + "growth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 5, + "growth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 5, + "growth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 5, + "growth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:melon_stem", + "states": { + "facing_direction": 5, + "growth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_planks", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:waxed_weathered_cut_copper", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass_pane", + "states": { + "color": "white" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass_pane", + "states": { + "color": "orange" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass_pane", + "states": { + "color": "magenta" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass_pane", + "states": { + "color": "light_blue" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass_pane", + "states": { + "color": "yellow" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass_pane", + "states": { + "color": "lime" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass_pane", + "states": { + "color": "pink" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass_pane", + "states": { + "color": "gray" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass_pane", + "states": { + "color": "silver" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass_pane", + "states": { + "color": "cyan" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass_pane", + "states": { + "color": "purple" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass_pane", + "states": { + "color": "blue" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass_pane", + "states": { + "color": "brown" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass_pane", + "states": { + "color": "green" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass_pane", + "states": { + "color": "red" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_glass_pane", + "states": { + "color": "black" + }, + "version": 18090528 + }, + { + "name": "minecraft:wall_sign", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:wall_sign", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:wall_sign", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:wall_sign", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:wall_sign", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:wall_sign", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:jukebox", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:stripped_cherry_wood", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_cherry_wood", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_cherry_wood", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 0, + "rotation": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 1, + "rotation": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 2, + "rotation": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 3, + "rotation": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 4, + "rotation": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 5, + "rotation": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 0, + "rotation": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 1, + "rotation": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 2, + "rotation": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 3, + "rotation": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 4, + "rotation": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 5, + "rotation": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 0, + "rotation": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 1, + "rotation": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 2, + "rotation": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 3, + "rotation": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 4, + "rotation": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 5, + "rotation": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 0, + "rotation": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 1, + "rotation": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 2, + "rotation": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 3, + "rotation": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 4, + "rotation": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:jigsaw", + "states": { + "facing_direction": 5, + "rotation": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:border_block", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:shroomlight", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_polished_blackstone", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_tile_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:glass_pane", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_deepslate", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:cut_copper_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cut_copper_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_block", + "states": { + "coral_color": "blue", + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_block", + "states": { + "coral_color": "pink", + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_block", + "states": { + "coral_color": "purple", + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_block", + "states": { + "coral_color": "red", + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_block", + "states": { + "coral_color": "yellow", + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_block", + "states": { + "coral_color": "blue", + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_block", + "states": { + "coral_color": "pink", + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_block", + "states": { + "coral_color": "purple", + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_block", + "states": { + "coral_color": "red", + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:coral_block", + "states": { + "coral_color": "yellow", + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_pressure_plate", + "states": { + "redstone_signal": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_pressure_plate", + "states": { + "redstone_signal": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_pressure_plate", + "states": { + "redstone_signal": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_pressure_plate", + "states": { + "redstone_signal": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_pressure_plate", + "states": { + "redstone_signal": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_pressure_plate", + "states": { + "redstone_signal": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_pressure_plate", + "states": { + "redstone_signal": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_pressure_plate", + "states": { + "redstone_signal": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_pressure_plate", + "states": { + "redstone_signal": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_pressure_plate", + "states": { + "redstone_signal": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_pressure_plate", + "states": { + "redstone_signal": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_pressure_plate", + "states": { + "redstone_signal": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_pressure_plate", + "states": { + "redstone_signal": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_pressure_plate", + "states": { + "redstone_signal": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_pressure_plate", + "states": { + "redstone_signal": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_pressure_plate", + "states": { + "redstone_signal": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_wall_sign", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_wall_sign", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_wall_sign", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_wall_sign", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_wall_sign", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_wall_sign", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:raw_copper_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:wooden_slab", + "states": { + "top_slot_bit": 0b, + "wood_type": "oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_slab", + "states": { + "top_slot_bit": 0b, + "wood_type": "spruce" + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_slab", + "states": { + "top_slot_bit": 0b, + "wood_type": "birch" + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_slab", + "states": { + "top_slot_bit": 0b, + "wood_type": "jungle" + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_slab", + "states": { + "top_slot_bit": 0b, + "wood_type": "acacia" + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_slab", + "states": { + "top_slot_bit": 0b, + "wood_type": "dark_oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_slab", + "states": { + "top_slot_bit": 1b, + "wood_type": "oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_slab", + "states": { + "top_slot_bit": 1b, + "wood_type": "spruce" + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_slab", + "states": { + "top_slot_bit": 1b, + "wood_type": "birch" + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_slab", + "states": { + "top_slot_bit": 1b, + "wood_type": "jungle" + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_slab", + "states": { + "top_slot_bit": 1b, + "wood_type": "acacia" + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_slab", + "states": { + "top_slot_bit": 1b, + "wood_type": "dark_oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:oxidized_cut_copper_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:oxidized_cut_copper_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:beetroot", + "states": { + "growth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:beetroot", + "states": { + "growth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:beetroot", + "states": { + "growth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:beetroot", + "states": { + "growth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:beetroot", + "states": { + "growth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:beetroot", + "states": { + "growth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:beetroot", + "states": { + "growth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:beetroot", + "states": { + "growth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:skull", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:skull", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:skull", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:skull", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:skull", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:skull", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_gray_candle_cake", + "states": { + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:light_gray_candle_cake", + "states": { + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:white_candle", + "states": { + "candles": 0, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:white_candle", + "states": { + "candles": 1, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:white_candle", + "states": { + "candles": 2, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:white_candle", + "states": { + "candles": 3, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:white_candle", + "states": { + "candles": 0, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:white_candle", + "states": { + "candles": 1, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:white_candle", + "states": { + "candles": 2, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:white_candle", + "states": { + "candles": 3, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:andesite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:andesite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:andesite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:andesite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:andesite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:andesite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:andesite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:andesite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:golden_rail", + "states": { + "rail_data_bit": 0b, + "rail_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:golden_rail", + "states": { + "rail_data_bit": 0b, + "rail_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:golden_rail", + "states": { + "rail_data_bit": 0b, + "rail_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:golden_rail", + "states": { + "rail_data_bit": 0b, + "rail_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:golden_rail", + "states": { + "rail_data_bit": 0b, + "rail_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:golden_rail", + "states": { + "rail_data_bit": 0b, + "rail_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:golden_rail", + "states": { + "rail_data_bit": 1b, + "rail_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:golden_rail", + "states": { + "rail_data_bit": 1b, + "rail_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:golden_rail", + "states": { + "rail_data_bit": 1b, + "rail_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:golden_rail", + "states": { + "rail_data_bit": 1b, + "rail_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:golden_rail", + "states": { + "rail_data_bit": 1b, + "rail_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:golden_rail", + "states": { + "rail_data_bit": 1b, + "rail_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:cyan_wool", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:darkoak_wall_sign", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:darkoak_wall_sign", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:darkoak_wall_sign", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:darkoak_wall_sign", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:darkoak_wall_sign", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:darkoak_wall_sign", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:gray_shulker_box", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:red_sandstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_sandstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_sandstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_sandstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_sandstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_sandstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_sandstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_sandstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:cyan_glazed_terracotta", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:cyan_glazed_terracotta", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cyan_glazed_terracotta", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:cyan_glazed_terracotta", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:cyan_glazed_terracotta", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:cyan_glazed_terracotta", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:cracked_deepslate_bricks", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:jungle_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dirt_with_roots", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:coal_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:white_wool", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:warped_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:composter", + "states": { + "composter_fill_level": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:composter", + "states": { + "composter_fill_level": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:composter", + "states": { + "composter_fill_level": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:composter", + "states": { + "composter_fill_level": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:composter", + "states": { + "composter_fill_level": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:composter", + "states": { + "composter_fill_level": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:composter", + "states": { + "composter_fill_level": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:composter", + "states": { + "composter_fill_level": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:composter", + "states": { + "composter_fill_level": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_double_cut_copper_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_double_cut_copper_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 16 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 17 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 18 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 19 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 20 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 21 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 22 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 23 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 24 + }, + "version": 18090528 + }, + { + "name": "minecraft:kelp", + "states": { + "kelp_age": 25 + }, + "version": 18090528 + }, + { + "name": "minecraft:double_plant", + "states": { + "double_plant_type": "sunflower", + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_plant", + "states": { + "double_plant_type": "syringa", + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_plant", + "states": { + "double_plant_type": "grass", + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_plant", + "states": { + "double_plant_type": "fern", + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_plant", + "states": { + "double_plant_type": "rose", + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_plant", + "states": { + "double_plant_type": "paeonia", + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_plant", + "states": { + "double_plant_type": "sunflower", + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_plant", + "states": { + "double_plant_type": "syringa", + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_plant", + "states": { + "double_plant_type": "grass", + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_plant", + "states": { + "double_plant_type": "fern", + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_plant", + "states": { + "double_plant_type": "rose", + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_plant", + "states": { + "double_plant_type": "paeonia", + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_bricks", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:blue_glazed_terracotta", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:blue_glazed_terracotta", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:blue_glazed_terracotta", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:blue_glazed_terracotta", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:blue_glazed_terracotta", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:blue_glazed_terracotta", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_blue_glazed_terracotta", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_blue_glazed_terracotta", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_blue_glazed_terracotta", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_blue_glazed_terracotta", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_blue_glazed_terracotta", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_blue_glazed_terracotta", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowering_azalea", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:oxidized_cut_copper", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:blue_wool", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 16 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 17 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 18 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 19 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 20 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 21 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 22 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 23 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 24 + }, + "version": 18090528 + }, + { + "name": "minecraft:weeping_vines", + "states": { + "weeping_vines_age": 25 + }, + "version": 18090528 + }, + { + "name": "minecraft:chorus_plant", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:water", + "states": { + "liquid_depth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:water", + "states": { + "liquid_depth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:water", + "states": { + "liquid_depth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:water", + "states": { + "liquid_depth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:water", + "states": { + "liquid_depth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:water", + "states": { + "liquid_depth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:water", + "states": { + "liquid_depth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:water", + "states": { + "liquid_depth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:water", + "states": { + "liquid_depth": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:water", + "states": { + "liquid_depth": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:water", + "states": { + "liquid_depth": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:water", + "states": { + "liquid_depth": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:water", + "states": { + "liquid_depth": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:water", + "states": { + "liquid_depth": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:water", + "states": { + "liquid_depth": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:water", + "states": { + "liquid_depth": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:mud_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_repeater", + "states": { + "direction": 0, + "repeater_delay": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_repeater", + "states": { + "direction": 1, + "repeater_delay": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_repeater", + "states": { + "direction": 2, + "repeater_delay": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_repeater", + "states": { + "direction": 3, + "repeater_delay": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_repeater", + "states": { + "direction": 0, + "repeater_delay": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_repeater", + "states": { + "direction": 1, + "repeater_delay": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_repeater", + "states": { + "direction": 2, + "repeater_delay": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_repeater", + "states": { + "direction": 3, + "repeater_delay": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_repeater", + "states": { + "direction": 0, + "repeater_delay": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_repeater", + "states": { + "direction": 1, + "repeater_delay": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_repeater", + "states": { + "direction": 2, + "repeater_delay": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_repeater", + "states": { + "direction": 3, + "repeater_delay": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_repeater", + "states": { + "direction": 0, + "repeater_delay": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_repeater", + "states": { + "direction": 1, + "repeater_delay": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_repeater", + "states": { + "direction": 2, + "repeater_delay": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_repeater", + "states": { + "direction": 3, + "repeater_delay": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_red_sandstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_red_sandstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_red_sandstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_red_sandstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_red_sandstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_red_sandstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_red_sandstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_red_sandstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:element_100", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_101", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_102", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_103", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_104", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_105", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_106", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_107", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_108", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_109", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_113", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_112", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_111", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_110", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_117", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_116", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_115", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_114", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_118", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:white_glazed_terracotta", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:white_glazed_terracotta", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:white_glazed_terracotta", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:white_glazed_terracotta", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:white_glazed_terracotta", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:white_glazed_terracotta", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_warped_hyphae", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_warped_hyphae", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_warped_hyphae", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:moving_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:trapped_chest", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:trapped_chest", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:trapped_chest", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:trapped_chest", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:trapped_chest", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:trapped_chest", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_sign", + "states": { + "ground_sign_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_sign", + "states": { + "ground_sign_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_sign", + "states": { + "ground_sign_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_sign", + "states": { + "ground_sign_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_sign", + "states": { + "ground_sign_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_sign", + "states": { + "ground_sign_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_sign", + "states": { + "ground_sign_direction": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_sign", + "states": { + "ground_sign_direction": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_sign", + "states": { + "ground_sign_direction": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_sign", + "states": { + "ground_sign_direction": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_sign", + "states": { + "ground_sign_direction": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_sign", + "states": { + "ground_sign_direction": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_sign", + "states": { + "ground_sign_direction": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_sign", + "states": { + "ground_sign_direction": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_sign", + "states": { + "ground_sign_direction": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_sign", + "states": { + "ground_sign_direction": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_planks", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 16 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 17 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 18 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 19 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 20 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 21 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 22 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 23 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 24 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 25 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 26 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 27 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 28 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 29 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 30 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 31 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 32 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 33 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 34 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 35 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 36 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 37 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 38 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 39 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 40 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 41 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 42 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 43 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 44 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 45 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 46 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 47 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 48 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 49 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 50 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 51 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 52 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 53 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 54 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 55 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 56 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 57 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 58 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 59 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 60 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 61 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 62 + }, + "version": 18090528 + }, + { + "name": "minecraft:glow_lichen", + "states": { + "multi_face_direction_bits": 63 + }, + "version": 18090528 + }, + { + "name": "minecraft:wall_banner", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:wall_banner", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:wall_banner", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:wall_banner", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:wall_banner", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:wall_banner", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 16 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 17 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 18 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 19 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 20 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 21 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 22 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 23 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 24 + }, + "version": 18090528 + }, + { + "name": "minecraft:twisting_vines", + "states": { + "twisting_vines_age": 25 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:oak_fence", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:soul_lantern", + "states": { + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_lantern", + "states": { + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dirt", + "states": { + "dirt_type": "normal" + }, + "version": 18090528 + }, + { + "name": "minecraft:dirt", + "states": { + "dirt_type": "coarse" + }, + "version": 18090528 + }, + { + "name": "minecraft:deny", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 0, + "honey_level": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 1, + "honey_level": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 2, + "honey_level": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 3, + "honey_level": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 0, + "honey_level": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 1, + "honey_level": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 2, + "honey_level": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 3, + "honey_level": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 0, + "honey_level": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 1, + "honey_level": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 2, + "honey_level": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 3, + "honey_level": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 0, + "honey_level": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 1, + "honey_level": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 2, + "honey_level": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 3, + "honey_level": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 0, + "honey_level": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 1, + "honey_level": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 2, + "honey_level": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 3, + "honey_level": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 0, + "honey_level": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 1, + "honey_level": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 2, + "honey_level": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:bee_nest", + "states": { + "direction": 3, + "honey_level": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:bubble_column", + "states": { + "drag_down": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bubble_column", + "states": { + "drag_down": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:campfire", + "states": { + "direction": 0, + "extinguished": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:campfire", + "states": { + "direction": 1, + "extinguished": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:campfire", + "states": { + "direction": 2, + "extinguished": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:campfire", + "states": { + "direction": 3, + "extinguished": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:campfire", + "states": { + "direction": 0, + "extinguished": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:campfire", + "states": { + "direction": 1, + "extinguished": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:campfire", + "states": { + "direction": 2, + "extinguished": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:campfire", + "states": { + "direction": 3, + "extinguished": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab2", + "states": { + "stone_slab_type_2": "red_sandstone", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab2", + "states": { + "stone_slab_type_2": "purpur", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab2", + "states": { + "stone_slab_type_2": "prismarine_rough", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab2", + "states": { + "stone_slab_type_2": "prismarine_dark", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab2", + "states": { + "stone_slab_type_2": "prismarine_brick", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab2", + "states": { + "stone_slab_type_2": "mossy_cobblestone", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab2", + "states": { + "stone_slab_type_2": "smooth_sandstone", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab2", + "states": { + "stone_slab_type_2": "red_nether_brick", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab2", + "states": { + "stone_slab_type_2": "red_sandstone", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab2", + "states": { + "stone_slab_type_2": "purpur", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab2", + "states": { + "stone_slab_type_2": "prismarine_rough", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab2", + "states": { + "stone_slab_type_2": "prismarine_dark", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab2", + "states": { + "stone_slab_type_2": "prismarine_brick", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab2", + "states": { + "stone_slab_type_2": "mossy_cobblestone", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab2", + "states": { + "stone_slab_type_2": "smooth_sandstone", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab2", + "states": { + "stone_slab_type_2": "red_nether_brick", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab3", + "states": { + "stone_slab_type_3": "end_stone_brick", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab3", + "states": { + "stone_slab_type_3": "smooth_red_sandstone", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab3", + "states": { + "stone_slab_type_3": "polished_andesite", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab3", + "states": { + "stone_slab_type_3": "andesite", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab3", + "states": { + "stone_slab_type_3": "diorite", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab3", + "states": { + "stone_slab_type_3": "polished_diorite", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab3", + "states": { + "stone_slab_type_3": "granite", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab3", + "states": { + "stone_slab_type_3": "polished_granite", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab3", + "states": { + "stone_slab_type_3": "end_stone_brick", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab3", + "states": { + "stone_slab_type_3": "smooth_red_sandstone", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab3", + "states": { + "stone_slab_type_3": "polished_andesite", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab3", + "states": { + "stone_slab_type_3": "andesite", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab3", + "states": { + "stone_slab_type_3": "diorite", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab3", + "states": { + "stone_slab_type_3": "polished_diorite", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab3", + "states": { + "stone_slab_type_3": "granite", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab3", + "states": { + "stone_slab_type_3": "polished_granite", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab4", + "states": { + "stone_slab_type_4": "mossy_stone_brick", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab4", + "states": { + "stone_slab_type_4": "smooth_quartz", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab4", + "states": { + "stone_slab_type_4": "stone", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab4", + "states": { + "stone_slab_type_4": "cut_sandstone", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab4", + "states": { + "stone_slab_type_4": "cut_red_sandstone", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab4", + "states": { + "stone_slab_type_4": "mossy_stone_brick", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab4", + "states": { + "stone_slab_type_4": "smooth_quartz", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab4", + "states": { + "stone_slab_type_4": "stone", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab4", + "states": { + "stone_slab_type_4": "cut_sandstone", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stone_block_slab4", + "states": { + "stone_slab_type_4": "cut_red_sandstone", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_soil", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:soul_sand", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:reinforced_deepslate", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:fletching_table", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:cherry_leaves", + "states": { + "persistent_bit": 0b, + "update_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_leaves", + "states": { + "persistent_bit": 0b, + "update_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_leaves", + "states": { + "persistent_bit": 1b, + "update_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_leaves", + "states": { + "persistent_bit": 1b, + "update_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:black_glazed_terracotta", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:black_glazed_terracotta", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:black_glazed_terracotta", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:black_glazed_terracotta", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:black_glazed_terracotta", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:black_glazed_terracotta", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:calibrated_sculk_sensor", + "states": { + "direction": 0, + "sculk_sensor_phase": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:calibrated_sculk_sensor", + "states": { + "direction": 0, + "sculk_sensor_phase": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:calibrated_sculk_sensor", + "states": { + "direction": 0, + "sculk_sensor_phase": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:calibrated_sculk_sensor", + "states": { + "direction": 1, + "sculk_sensor_phase": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:calibrated_sculk_sensor", + "states": { + "direction": 1, + "sculk_sensor_phase": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:calibrated_sculk_sensor", + "states": { + "direction": 1, + "sculk_sensor_phase": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:calibrated_sculk_sensor", + "states": { + "direction": 2, + "sculk_sensor_phase": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:calibrated_sculk_sensor", + "states": { + "direction": 2, + "sculk_sensor_phase": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:calibrated_sculk_sensor", + "states": { + "direction": 2, + "sculk_sensor_phase": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:calibrated_sculk_sensor", + "states": { + "direction": 3, + "sculk_sensor_phase": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:calibrated_sculk_sensor", + "states": { + "direction": 3, + "sculk_sensor_phase": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:calibrated_sculk_sensor", + "states": { + "direction": 3, + "sculk_sensor_phase": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_acacia_log", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_acacia_log", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_acacia_log", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_double_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_double_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_fence", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:crafting_table", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:sea_pickle", + "states": { + "cluster_count": 0, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:sea_pickle", + "states": { + "cluster_count": 1, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:sea_pickle", + "states": { + "cluster_count": 2, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:sea_pickle", + "states": { + "cluster_count": 3, + "dead_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:sea_pickle", + "states": { + "cluster_count": 0, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:sea_pickle", + "states": { + "cluster_count": 1, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:sea_pickle", + "states": { + "cluster_count": 2, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:sea_pickle", + "states": { + "cluster_count": 3, + "dead_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_standing_sign", + "states": { + "ground_sign_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_standing_sign", + "states": { + "ground_sign_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_standing_sign", + "states": { + "ground_sign_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_standing_sign", + "states": { + "ground_sign_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_standing_sign", + "states": { + "ground_sign_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_standing_sign", + "states": { + "ground_sign_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_standing_sign", + "states": { + "ground_sign_direction": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_standing_sign", + "states": { + "ground_sign_direction": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_standing_sign", + "states": { + "ground_sign_direction": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_standing_sign", + "states": { + "ground_sign_direction": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_standing_sign", + "states": { + "ground_sign_direction": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_standing_sign", + "states": { + "ground_sign_direction": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_standing_sign", + "states": { + "ground_sign_direction": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_standing_sign", + "states": { + "ground_sign_direction": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_standing_sign", + "states": { + "ground_sign_direction": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_standing_sign", + "states": { + "ground_sign_direction": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:double_wooden_slab", + "states": { + "top_slot_bit": 0b, + "wood_type": "oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:double_wooden_slab", + "states": { + "top_slot_bit": 0b, + "wood_type": "spruce" + }, + "version": 18090528 + }, + { + "name": "minecraft:double_wooden_slab", + "states": { + "top_slot_bit": 0b, + "wood_type": "birch" + }, + "version": 18090528 + }, + { + "name": "minecraft:double_wooden_slab", + "states": { + "top_slot_bit": 0b, + "wood_type": "jungle" + }, + "version": 18090528 + }, + { + "name": "minecraft:double_wooden_slab", + "states": { + "top_slot_bit": 0b, + "wood_type": "acacia" + }, + "version": 18090528 + }, + { + "name": "minecraft:double_wooden_slab", + "states": { + "top_slot_bit": 0b, + "wood_type": "dark_oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:double_wooden_slab", + "states": { + "top_slot_bit": 1b, + "wood_type": "oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:double_wooden_slab", + "states": { + "top_slot_bit": 1b, + "wood_type": "spruce" + }, + "version": 18090528 + }, + { + "name": "minecraft:double_wooden_slab", + "states": { + "top_slot_bit": 1b, + "wood_type": "birch" + }, + "version": 18090528 + }, + { + "name": "minecraft:double_wooden_slab", + "states": { + "top_slot_bit": 1b, + "wood_type": "jungle" + }, + "version": 18090528 + }, + { + "name": "minecraft:double_wooden_slab", + "states": { + "top_slot_bit": 1b, + "wood_type": "acacia" + }, + "version": 18090528 + }, + { + "name": "minecraft:double_wooden_slab", + "states": { + "top_slot_bit": 1b, + "wood_type": "dark_oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_candle", + "states": { + "candles": 0, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_candle", + "states": { + "candles": 1, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_candle", + "states": { + "candles": 2, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_candle", + "states": { + "candles": 3, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_candle", + "states": { + "candles": 0, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_candle", + "states": { + "candles": 1, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_candle", + "states": { + "candles": 2, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_candle", + "states": { + "candles": 3, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mossy_stone_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:mossy_stone_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:mossy_stone_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:mossy_stone_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:mossy_stone_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:mossy_stone_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:mossy_stone_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:mossy_stone_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:end_rod", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:end_rod", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:end_rod", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:end_rod", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:end_rod", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:end_rod", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_stem", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_stem", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_stem", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:green_concrete", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:crimson_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hyphae", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hyphae", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hyphae", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_wart_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:light_gray_shulker_box", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:carrots", + "states": { + "growth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:carrots", + "states": { + "growth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:carrots", + "states": { + "growth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:carrots", + "states": { + "growth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:carrots", + "states": { + "growth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:carrots", + "states": { + "growth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:carrots", + "states": { + "growth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:carrots", + "states": { + "growth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:yellow_carpet", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:dead_horn_coral", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:tripwire_hook", + "states": { + "attached_bit": 0b, + "direction": 0, + "powered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:tripwire_hook", + "states": { + "attached_bit": 0b, + "direction": 1, + "powered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:tripwire_hook", + "states": { + "attached_bit": 0b, + "direction": 2, + "powered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:tripwire_hook", + "states": { + "attached_bit": 0b, + "direction": 3, + "powered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:tripwire_hook", + "states": { + "attached_bit": 1b, + "direction": 0, + "powered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:tripwire_hook", + "states": { + "attached_bit": 1b, + "direction": 1, + "powered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:tripwire_hook", + "states": { + "attached_bit": 1b, + "direction": 2, + "powered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:tripwire_hook", + "states": { + "attached_bit": 1b, + "direction": 3, + "powered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:tripwire_hook", + "states": { + "attached_bit": 0b, + "direction": 0, + "powered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:tripwire_hook", + "states": { + "attached_bit": 0b, + "direction": 1, + "powered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:tripwire_hook", + "states": { + "attached_bit": 0b, + "direction": 2, + "powered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:tripwire_hook", + "states": { + "attached_bit": 0b, + "direction": 3, + "powered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:tripwire_hook", + "states": { + "attached_bit": 1b, + "direction": 0, + "powered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:tripwire_hook", + "states": { + "attached_bit": 1b, + "direction": 1, + "powered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:tripwire_hook", + "states": { + "attached_bit": 1b, + "direction": 2, + "powered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:tripwire_hook", + "states": { + "attached_bit": 1b, + "direction": 3, + "powered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 16 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 17 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 18 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 19 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 20 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 21 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 22 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 23 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 24 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "states": { + "growing_plant_age": 25 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_pressure_plate", + "states": { + "redstone_signal": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_pressure_plate", + "states": { + "redstone_signal": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_pressure_plate", + "states": { + "redstone_signal": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_pressure_plate", + "states": { + "redstone_signal": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_pressure_plate", + "states": { + "redstone_signal": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_pressure_plate", + "states": { + "redstone_signal": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_pressure_plate", + "states": { + "redstone_signal": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_pressure_plate", + "states": { + "redstone_signal": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_pressure_plate", + "states": { + "redstone_signal": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_pressure_plate", + "states": { + "redstone_signal": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_pressure_plate", + "states": { + "redstone_signal": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_pressure_plate", + "states": { + "redstone_signal": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_pressure_plate", + "states": { + "redstone_signal": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_pressure_plate", + "states": { + "redstone_signal": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_pressure_plate", + "states": { + "redstone_signal": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_pressure_plate", + "states": { + "redstone_signal": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_birch_log", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_birch_log", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_birch_log", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:tinted_glass", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 0b, + "big_dripleaf_tilt": "none", + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 0b, + "big_dripleaf_tilt": "unstable", + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 0b, + "big_dripleaf_tilt": "partial_tilt", + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 0b, + "big_dripleaf_tilt": "full_tilt", + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 1b, + "big_dripleaf_tilt": "none", + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 1b, + "big_dripleaf_tilt": "unstable", + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 1b, + "big_dripleaf_tilt": "partial_tilt", + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 1b, + "big_dripleaf_tilt": "full_tilt", + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 0b, + "big_dripleaf_tilt": "none", + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 0b, + "big_dripleaf_tilt": "unstable", + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 0b, + "big_dripleaf_tilt": "partial_tilt", + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 0b, + "big_dripleaf_tilt": "full_tilt", + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 1b, + "big_dripleaf_tilt": "none", + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 1b, + "big_dripleaf_tilt": "unstable", + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 1b, + "big_dripleaf_tilt": "partial_tilt", + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 1b, + "big_dripleaf_tilt": "full_tilt", + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 0b, + "big_dripleaf_tilt": "none", + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 0b, + "big_dripleaf_tilt": "unstable", + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 0b, + "big_dripleaf_tilt": "partial_tilt", + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 0b, + "big_dripleaf_tilt": "full_tilt", + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 1b, + "big_dripleaf_tilt": "none", + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 1b, + "big_dripleaf_tilt": "unstable", + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 1b, + "big_dripleaf_tilt": "partial_tilt", + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 1b, + "big_dripleaf_tilt": "full_tilt", + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 0b, + "big_dripleaf_tilt": "none", + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 0b, + "big_dripleaf_tilt": "unstable", + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 0b, + "big_dripleaf_tilt": "partial_tilt", + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 0b, + "big_dripleaf_tilt": "full_tilt", + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 1b, + "big_dripleaf_tilt": "none", + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 1b, + "big_dripleaf_tilt": "unstable", + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 1b, + "big_dripleaf_tilt": "partial_tilt", + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:big_dripleaf", + "states": { + "big_dripleaf_head": 1b, + "big_dripleaf_tilt": "full_tilt", + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:lime_wool", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:blue_candle_cake", + "states": { + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:blue_candle_cake", + "states": { + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:sweet_berry_bush", + "states": { + "growth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:sweet_berry_bush", + "states": { + "growth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:sweet_berry_bush", + "states": { + "growth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:sweet_berry_bush", + "states": { + "growth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:sweet_berry_bush", + "states": { + "growth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:sweet_berry_bush", + "states": { + "growth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:sweet_berry_bush", + "states": { + "growth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:sweet_berry_bush", + "states": { + "growth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:reeds", + "states": { + "age": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:reeds", + "states": { + "age": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:reeds", + "states": { + "age": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:reeds", + "states": { + "age": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:reeds", + "states": { + "age": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:reeds", + "states": { + "age": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:reeds", + "states": { + "age": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:reeds", + "states": { + "age": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:reeds", + "states": { + "age": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:reeds", + "states": { + "age": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:reeds", + "states": { + "age": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:reeds", + "states": { + "age": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:reeds", + "states": { + "age": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:reeds", + "states": { + "age": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:reeds", + "states": { + "age": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:reeds", + "states": { + "age": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:black_shulker_box", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:barrier", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:torchflower_crop", + "states": { + "growth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:torchflower_crop", + "states": { + "growth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:torchflower_crop", + "states": { + "growth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:torchflower_crop", + "states": { + "growth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:torchflower_crop", + "states": { + "growth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:torchflower_crop", + "states": { + "growth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:torchflower_crop", + "states": { + "growth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:torchflower_crop", + "states": { + "growth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:black_carpet", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:jungle_standing_sign", + "states": { + "ground_sign_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_standing_sign", + "states": { + "ground_sign_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_standing_sign", + "states": { + "ground_sign_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_standing_sign", + "states": { + "ground_sign_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_standing_sign", + "states": { + "ground_sign_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_standing_sign", + "states": { + "ground_sign_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_standing_sign", + "states": { + "ground_sign_direction": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_standing_sign", + "states": { + "ground_sign_direction": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_standing_sign", + "states": { + "ground_sign_direction": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_standing_sign", + "states": { + "ground_sign_direction": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_standing_sign", + "states": { + "ground_sign_direction": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_standing_sign", + "states": { + "ground_sign_direction": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_standing_sign", + "states": { + "ground_sign_direction": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_standing_sign", + "states": { + "ground_sign_direction": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_standing_sign", + "states": { + "ground_sign_direction": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_standing_sign", + "states": { + "ground_sign_direction": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_double_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_double_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:weathered_cut_copper_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:weathered_cut_copper_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:fire", + "states": { + "age": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:fire", + "states": { + "age": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:fire", + "states": { + "age": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:fire", + "states": { + "age": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:fire", + "states": { + "age": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:fire", + "states": { + "age": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:fire", + "states": { + "age": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:fire", + "states": { + "age": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:fire", + "states": { + "age": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:fire", + "states": { + "age": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:fire", + "states": { + "age": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:fire", + "states": { + "age": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:fire", + "states": { + "age": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:fire", + "states": { + "age": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:fire", + "states": { + "age": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:fire", + "states": { + "age": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:torchflower", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:planks", + "states": { + "wood_type": "oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:planks", + "states": { + "wood_type": "spruce" + }, + "version": 18090528 + }, + { + "name": "minecraft:planks", + "states": { + "wood_type": "birch" + }, + "version": 18090528 + }, + { + "name": "minecraft:planks", + "states": { + "wood_type": "jungle" + }, + "version": 18090528 + }, + { + "name": "minecraft:planks", + "states": { + "wood_type": "acacia" + }, + "version": 18090528 + }, + { + "name": "minecraft:planks", + "states": { + "wood_type": "dark_oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:end_portal_frame", + "states": { + "direction": 0, + "end_portal_eye_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:end_portal_frame", + "states": { + "direction": 1, + "end_portal_eye_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:end_portal_frame", + "states": { + "direction": 2, + "end_portal_eye_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:end_portal_frame", + "states": { + "direction": 3, + "end_portal_eye_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:end_portal_frame", + "states": { + "direction": 0, + "end_portal_eye_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:end_portal_frame", + "states": { + "direction": 1, + "end_portal_eye_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:end_portal_frame", + "states": { + "direction": 2, + "end_portal_eye_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:end_portal_frame", + "states": { + "direction": 3, + "end_portal_eye_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_pressure_plate", + "states": { + "redstone_signal": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_pressure_plate", + "states": { + "redstone_signal": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_pressure_plate", + "states": { + "redstone_signal": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_pressure_plate", + "states": { + "redstone_signal": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_pressure_plate", + "states": { + "redstone_signal": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_pressure_plate", + "states": { + "redstone_signal": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_pressure_plate", + "states": { + "redstone_signal": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_pressure_plate", + "states": { + "redstone_signal": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_pressure_plate", + "states": { + "redstone_signal": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_pressure_plate", + "states": { + "redstone_signal": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_pressure_plate", + "states": { + "redstone_signal": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_pressure_plate", + "states": { + "redstone_signal": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_pressure_plate", + "states": { + "redstone_signal": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_pressure_plate", + "states": { + "redstone_signal": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_pressure_plate", + "states": { + "redstone_signal": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_pressure_plate", + "states": { + "redstone_signal": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:prismarine", + "states": { + "prismarine_block_type": "default" + }, + "version": 18090528 + }, + { + "name": "minecraft:prismarine", + "states": { + "prismarine_block_type": "dark" + }, + "version": 18090528 + }, + { + "name": "minecraft:prismarine", + "states": { + "prismarine_block_type": "bricks" + }, + "version": 18090528 + }, + { + "name": "minecraft:magenta_candle_cake", + "states": { + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:magenta_candle_cake", + "states": { + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:leaves", + "states": { + "old_leaf_type": "oak", + "persistent_bit": 0b, + "update_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:leaves", + "states": { + "old_leaf_type": "spruce", + "persistent_bit": 0b, + "update_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:leaves", + "states": { + "old_leaf_type": "birch", + "persistent_bit": 0b, + "update_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:leaves", + "states": { + "old_leaf_type": "jungle", + "persistent_bit": 0b, + "update_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:leaves", + "states": { + "old_leaf_type": "oak", + "persistent_bit": 0b, + "update_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:leaves", + "states": { + "old_leaf_type": "spruce", + "persistent_bit": 0b, + "update_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:leaves", + "states": { + "old_leaf_type": "birch", + "persistent_bit": 0b, + "update_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:leaves", + "states": { + "old_leaf_type": "jungle", + "persistent_bit": 0b, + "update_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:leaves", + "states": { + "old_leaf_type": "oak", + "persistent_bit": 1b, + "update_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:leaves", + "states": { + "old_leaf_type": "spruce", + "persistent_bit": 1b, + "update_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:leaves", + "states": { + "old_leaf_type": "birch", + "persistent_bit": 1b, + "update_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:leaves", + "states": { + "old_leaf_type": "jungle", + "persistent_bit": 1b, + "update_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:leaves", + "states": { + "old_leaf_type": "oak", + "persistent_bit": 1b, + "update_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:leaves", + "states": { + "old_leaf_type": "spruce", + "persistent_bit": 1b, + "update_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:leaves", + "states": { + "old_leaf_type": "birch", + "persistent_bit": 1b, + "update_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:leaves", + "states": { + "old_leaf_type": "jungle", + "persistent_bit": 1b, + "update_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_gold_ore", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:ancient_debris", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 0, + "honey_level": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 1, + "honey_level": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 2, + "honey_level": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 3, + "honey_level": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 0, + "honey_level": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 1, + "honey_level": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 2, + "honey_level": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 3, + "honey_level": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 0, + "honey_level": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 1, + "honey_level": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 2, + "honey_level": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 3, + "honey_level": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 0, + "honey_level": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 1, + "honey_level": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 2, + "honey_level": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 3, + "honey_level": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 0, + "honey_level": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 1, + "honey_level": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 2, + "honey_level": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 3, + "honey_level": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 0, + "honey_level": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 1, + "honey_level": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 2, + "honey_level": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:beehive", + "states": { + "direction": 3, + "honey_level": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:glass", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:wither_rose", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:exposed_cut_copper", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:waxed_weathered_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_weathered_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_weathered_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_weathered_cut_copper_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_weathered_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_weathered_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_weathered_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_weathered_cut_copper_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_roots", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:stained_hardened_clay", + "states": { + "color": "white" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_hardened_clay", + "states": { + "color": "orange" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_hardened_clay", + "states": { + "color": "magenta" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_hardened_clay", + "states": { + "color": "light_blue" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_hardened_clay", + "states": { + "color": "yellow" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_hardened_clay", + "states": { + "color": "lime" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_hardened_clay", + "states": { + "color": "pink" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_hardened_clay", + "states": { + "color": "gray" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_hardened_clay", + "states": { + "color": "silver" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_hardened_clay", + "states": { + "color": "cyan" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_hardened_clay", + "states": { + "color": "purple" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_hardened_clay", + "states": { + "color": "blue" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_hardened_clay", + "states": { + "color": "brown" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_hardened_clay", + "states": { + "color": "green" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_hardened_clay", + "states": { + "color": "red" + }, + "version": 18090528 + }, + { + "name": "minecraft:stained_hardened_clay", + "states": { + "color": "black" + }, + "version": 18090528 + }, + { + "name": "minecraft:yellow_candle", + "states": { + "candles": 0, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:yellow_candle", + "states": { + "candles": 1, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:yellow_candle", + "states": { + "candles": 2, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:yellow_candle", + "states": { + "candles": 3, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:yellow_candle", + "states": { + "candles": 0, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:yellow_candle", + "states": { + "candles": 1, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:yellow_candle", + "states": { + "candles": 2, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:yellow_candle", + "states": { + "candles": 3, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_mosaic_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_mosaic_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_mosaic_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_mosaic_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_mosaic_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_mosaic_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_mosaic_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_mosaic_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_concrete", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass", + "states": { + "color": "white" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass", + "states": { + "color": "orange" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass", + "states": { + "color": "magenta" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass", + "states": { + "color": "light_blue" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass", + "states": { + "color": "yellow" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass", + "states": { + "color": "lime" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass", + "states": { + "color": "pink" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass", + "states": { + "color": "gray" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass", + "states": { + "color": "silver" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass", + "states": { + "color": "cyan" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass", + "states": { + "color": "purple" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass", + "states": { + "color": "blue" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass", + "states": { + "color": "brown" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass", + "states": { + "color": "green" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass", + "states": { + "color": "red" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass", + "states": { + "color": "black" + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bubble_coral", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:orange_shulker_box", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:light_gray_candle", + "states": { + "candles": 0, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:light_gray_candle", + "states": { + "candles": 1, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:light_gray_candle", + "states": { + "candles": 2, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:light_gray_candle", + "states": { + "candles": 3, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:light_gray_candle", + "states": { + "candles": 0, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:light_gray_candle", + "states": { + "candles": 1, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:light_gray_candle", + "states": { + "candles": 2, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:light_gray_candle", + "states": { + "candles": 3, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_pressure_plate", + "states": { + "redstone_signal": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_pressure_plate", + "states": { + "redstone_signal": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_pressure_plate", + "states": { + "redstone_signal": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_pressure_plate", + "states": { + "redstone_signal": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_pressure_plate", + "states": { + "redstone_signal": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_pressure_plate", + "states": { + "redstone_signal": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_pressure_plate", + "states": { + "redstone_signal": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_pressure_plate", + "states": { + "redstone_signal": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_pressure_plate", + "states": { + "redstone_signal": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_pressure_plate", + "states": { + "redstone_signal": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_pressure_plate", + "states": { + "redstone_signal": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_pressure_plate", + "states": { + "redstone_signal": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_pressure_plate", + "states": { + "redstone_signal": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_pressure_plate", + "states": { + "redstone_signal": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_pressure_plate", + "states": { + "redstone_signal": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_pressure_plate", + "states": { + "redstone_signal": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_standing_sign", + "states": { + "ground_sign_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_standing_sign", + "states": { + "ground_sign_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_standing_sign", + "states": { + "ground_sign_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_standing_sign", + "states": { + "ground_sign_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_standing_sign", + "states": { + "ground_sign_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_standing_sign", + "states": { + "ground_sign_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_standing_sign", + "states": { + "ground_sign_direction": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_standing_sign", + "states": { + "ground_sign_direction": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_standing_sign", + "states": { + "ground_sign_direction": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_standing_sign", + "states": { + "ground_sign_direction": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_standing_sign", + "states": { + "ground_sign_direction": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_standing_sign", + "states": { + "ground_sign_direction": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_standing_sign", + "states": { + "ground_sign_direction": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_standing_sign", + "states": { + "ground_sign_direction": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_standing_sign", + "states": { + "ground_sign_direction": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_standing_sign", + "states": { + "ground_sign_direction": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:blue_shulker_box", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:concrete_powder", + "states": { + "color": "white" + }, + "version": 18090528 + }, + { + "name": "minecraft:concrete_powder", + "states": { + "color": "orange" + }, + "version": 18090528 + }, + { + "name": "minecraft:concrete_powder", + "states": { + "color": "magenta" + }, + "version": 18090528 + }, + { + "name": "minecraft:concrete_powder", + "states": { + "color": "light_blue" + }, + "version": 18090528 + }, + { + "name": "minecraft:concrete_powder", + "states": { + "color": "yellow" + }, + "version": 18090528 + }, + { + "name": "minecraft:concrete_powder", + "states": { + "color": "lime" + }, + "version": 18090528 + }, + { + "name": "minecraft:concrete_powder", + "states": { + "color": "pink" + }, + "version": 18090528 + }, + { + "name": "minecraft:concrete_powder", + "states": { + "color": "gray" + }, + "version": 18090528 + }, + { + "name": "minecraft:concrete_powder", + "states": { + "color": "silver" + }, + "version": 18090528 + }, + { + "name": "minecraft:concrete_powder", + "states": { + "color": "cyan" + }, + "version": 18090528 + }, + { + "name": "minecraft:concrete_powder", + "states": { + "color": "purple" + }, + "version": 18090528 + }, + { + "name": "minecraft:concrete_powder", + "states": { + "color": "blue" + }, + "version": 18090528 + }, + { + "name": "minecraft:concrete_powder", + "states": { + "color": "brown" + }, + "version": 18090528 + }, + { + "name": "minecraft:concrete_powder", + "states": { + "color": "green" + }, + "version": 18090528 + }, + { + "name": "minecraft:concrete_powder", + "states": { + "color": "red" + }, + "version": 18090528 + }, + { + "name": "minecraft:concrete_powder", + "states": { + "color": "black" + }, + "version": 18090528 + }, + { + "name": "minecraft:dead_fire_coral", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:crimson_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_spruce_log", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_spruce_log", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_spruce_log", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 0, + "growth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 0, + "growth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 0, + "growth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 0, + "growth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 0, + "growth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 0, + "growth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 0, + "growth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 0, + "growth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 1, + "growth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 1, + "growth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 1, + "growth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 1, + "growth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 1, + "growth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 1, + "growth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 1, + "growth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 1, + "growth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 2, + "growth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 2, + "growth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 2, + "growth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 2, + "growth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 2, + "growth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 2, + "growth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 2, + "growth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 2, + "growth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 3, + "growth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 3, + "growth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 3, + "growth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 3, + "growth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 3, + "growth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 3, + "growth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 3, + "growth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 3, + "growth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 4, + "growth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 4, + "growth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 4, + "growth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 4, + "growth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 4, + "growth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 4, + "growth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 4, + "growth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 4, + "growth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 5, + "growth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 5, + "growth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 5, + "growth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 5, + "growth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 5, + "growth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 5, + "growth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 5, + "growth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:pumpkin_stem", + "states": { + "facing_direction": 5, + "growth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:azalea_leaves_flowered", + "states": { + "persistent_bit": 0b, + "update_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:azalea_leaves_flowered", + "states": { + "persistent_bit": 0b, + "update_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:azalea_leaves_flowered", + "states": { + "persistent_bit": 1b, + "update_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:azalea_leaves_flowered", + "states": { + "persistent_bit": 1b, + "update_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:sticky_piston_arm_collision", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:sticky_piston_arm_collision", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:sticky_piston_arm_collision", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:sticky_piston_arm_collision", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:sticky_piston_arm_collision", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:sticky_piston_arm_collision", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_nylium", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_emerald_ore", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:quartz_bricks", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_comparator", + "states": { + "direction": 0, + "output_lit_bit": 0b, + "output_subtract_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_comparator", + "states": { + "direction": 1, + "output_lit_bit": 0b, + "output_subtract_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_comparator", + "states": { + "direction": 2, + "output_lit_bit": 0b, + "output_subtract_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_comparator", + "states": { + "direction": 3, + "output_lit_bit": 0b, + "output_subtract_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_comparator", + "states": { + "direction": 0, + "output_lit_bit": 0b, + "output_subtract_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_comparator", + "states": { + "direction": 1, + "output_lit_bit": 0b, + "output_subtract_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_comparator", + "states": { + "direction": 2, + "output_lit_bit": 0b, + "output_subtract_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_comparator", + "states": { + "direction": 3, + "output_lit_bit": 0b, + "output_subtract_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_comparator", + "states": { + "direction": 0, + "output_lit_bit": 1b, + "output_subtract_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_comparator", + "states": { + "direction": 1, + "output_lit_bit": 1b, + "output_subtract_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_comparator", + "states": { + "direction": 2, + "output_lit_bit": 1b, + "output_subtract_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_comparator", + "states": { + "direction": 3, + "output_lit_bit": 1b, + "output_subtract_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_comparator", + "states": { + "direction": 0, + "output_lit_bit": 1b, + "output_subtract_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_comparator", + "states": { + "direction": 1, + "output_lit_bit": 1b, + "output_subtract_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_comparator", + "states": { + "direction": 2, + "output_lit_bit": 1b, + "output_subtract_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:unpowered_comparator", + "states": { + "direction": 3, + "output_lit_bit": 1b, + "output_subtract_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:lime_candle", + "states": { + "candles": 0, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:lime_candle", + "states": { + "candles": 1, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:lime_candle", + "states": { + "candles": 2, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:lime_candle", + "states": { + "candles": 3, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:lime_candle", + "states": { + "candles": 0, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:lime_candle", + "states": { + "candles": 1, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:lime_candle", + "states": { + "candles": 2, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:lime_candle", + "states": { + "candles": 3, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:structure_block", + "states": { + "structure_block_type": "data" + }, + "version": 18090528 + }, + { + "name": "minecraft:structure_block", + "states": { + "structure_block_type": "save" + }, + "version": 18090528 + }, + { + "name": "minecraft:structure_block", + "states": { + "structure_block_type": "load" + }, + "version": 18090528 + }, + { + "name": "minecraft:structure_block", + "states": { + "structure_block_type": "corner" + }, + "version": 18090528 + }, + { + "name": "minecraft:structure_block", + "states": { + "structure_block_type": "invalid" + }, + "version": 18090528 + }, + { + "name": "minecraft:structure_block", + "states": { + "structure_block_type": "export" + }, + "version": 18090528 + }, + { + "name": "minecraft:end_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:end_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:end_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:end_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:end_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:end_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:end_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:end_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:target", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:wooden_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:pearlescent_froglight", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:pearlescent_froglight", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:pearlescent_froglight", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab2", + "states": { + "stone_slab_type_2": "red_sandstone", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab2", + "states": { + "stone_slab_type_2": "purpur", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab2", + "states": { + "stone_slab_type_2": "prismarine_rough", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab2", + "states": { + "stone_slab_type_2": "prismarine_dark", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab2", + "states": { + "stone_slab_type_2": "prismarine_brick", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab2", + "states": { + "stone_slab_type_2": "mossy_cobblestone", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab2", + "states": { + "stone_slab_type_2": "smooth_sandstone", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab2", + "states": { + "stone_slab_type_2": "red_nether_brick", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab2", + "states": { + "stone_slab_type_2": "red_sandstone", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab2", + "states": { + "stone_slab_type_2": "purpur", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab2", + "states": { + "stone_slab_type_2": "prismarine_rough", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab2", + "states": { + "stone_slab_type_2": "prismarine_dark", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab2", + "states": { + "stone_slab_type_2": "prismarine_brick", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab2", + "states": { + "stone_slab_type_2": "mossy_cobblestone", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab2", + "states": { + "stone_slab_type_2": "smooth_sandstone", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab2", + "states": { + "stone_slab_type_2": "red_nether_brick", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab3", + "states": { + "stone_slab_type_3": "end_stone_brick", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab3", + "states": { + "stone_slab_type_3": "smooth_red_sandstone", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab3", + "states": { + "stone_slab_type_3": "polished_andesite", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab3", + "states": { + "stone_slab_type_3": "andesite", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab3", + "states": { + "stone_slab_type_3": "diorite", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab3", + "states": { + "stone_slab_type_3": "polished_diorite", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab3", + "states": { + "stone_slab_type_3": "granite", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab3", + "states": { + "stone_slab_type_3": "polished_granite", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab3", + "states": { + "stone_slab_type_3": "end_stone_brick", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab3", + "states": { + "stone_slab_type_3": "smooth_red_sandstone", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab3", + "states": { + "stone_slab_type_3": "polished_andesite", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab3", + "states": { + "stone_slab_type_3": "andesite", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab3", + "states": { + "stone_slab_type_3": "diorite", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab3", + "states": { + "stone_slab_type_3": "polished_diorite", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab3", + "states": { + "stone_slab_type_3": "granite", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab3", + "states": { + "stone_slab_type_3": "polished_granite", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab4", + "states": { + "stone_slab_type_4": "mossy_stone_brick", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab4", + "states": { + "stone_slab_type_4": "smooth_quartz", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab4", + "states": { + "stone_slab_type_4": "stone", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab4", + "states": { + "stone_slab_type_4": "cut_sandstone", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab4", + "states": { + "stone_slab_type_4": "cut_red_sandstone", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab4", + "states": { + "stone_slab_type_4": "mossy_stone_brick", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab4", + "states": { + "stone_slab_type_4": "smooth_quartz", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab4", + "states": { + "stone_slab_type_4": "stone", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab4", + "states": { + "stone_slab_type_4": "cut_sandstone", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab4", + "states": { + "stone_slab_type_4": "cut_red_sandstone", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:nether_sprouts", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:verdant_froglight", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:verdant_froglight", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:verdant_froglight", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_stem", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_stem", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_stem", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:green_shulker_box", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:stripped_crimson_hyphae", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_crimson_hyphae", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_crimson_hyphae", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:cocoa", + "states": { + "age": 0, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:cocoa", + "states": { + "age": 0, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cocoa", + "states": { + "age": 0, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:cocoa", + "states": { + "age": 0, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:cocoa", + "states": { + "age": 1, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:cocoa", + "states": { + "age": 1, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cocoa", + "states": { + "age": 1, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:cocoa", + "states": { + "age": 1, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:cocoa", + "states": { + "age": 2, + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:cocoa", + "states": { + "age": 2, + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cocoa", + "states": { + "age": 2, + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:cocoa", + "states": { + "age": 2, + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:lever", + "states": { + "lever_direction": "down_east_west", + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:lever", + "states": { + "lever_direction": "east", + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:lever", + "states": { + "lever_direction": "west", + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:lever", + "states": { + "lever_direction": "south", + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:lever", + "states": { + "lever_direction": "north", + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:lever", + "states": { + "lever_direction": "up_north_south", + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:lever", + "states": { + "lever_direction": "up_east_west", + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:lever", + "states": { + "lever_direction": "down_north_south", + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:lever", + "states": { + "lever_direction": "down_east_west", + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:lever", + "states": { + "lever_direction": "east", + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:lever", + "states": { + "lever_direction": "west", + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:lever", + "states": { + "lever_direction": "south", + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:lever", + "states": { + "lever_direction": "north", + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:lever", + "states": { + "lever_direction": "up_north_south", + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:lever", + "states": { + "lever_direction": "up_east_west", + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:lever", + "states": { + "lever_direction": "down_north_south", + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:moss_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:pink_glazed_terracotta", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_glazed_terracotta", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_glazed_terracotta", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_glazed_terracotta", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_glazed_terracotta", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_glazed_terracotta", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_weathered_cut_copper_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_weathered_cut_copper_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stonebrick", + "states": { + "stone_brick_type": "default" + }, + "version": 18090528 + }, + { + "name": "minecraft:stonebrick", + "states": { + "stone_brick_type": "mossy" + }, + "version": 18090528 + }, + { + "name": "minecraft:stonebrick", + "states": { + "stone_brick_type": "cracked" + }, + "version": 18090528 + }, + { + "name": "minecraft:stonebrick", + "states": { + "stone_brick_type": "chiseled" + }, + "version": 18090528 + }, + { + "name": "minecraft:stonebrick", + "states": { + "stone_brick_type": "smooth" + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:chain_command_block", + "states": { + "conditional_bit": 0b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chain_command_block", + "states": { + "conditional_bit": 0b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chain_command_block", + "states": { + "conditional_bit": 0b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chain_command_block", + "states": { + "conditional_bit": 0b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chain_command_block", + "states": { + "conditional_bit": 0b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:chain_command_block", + "states": { + "conditional_bit": 0b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:chain_command_block", + "states": { + "conditional_bit": 1b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chain_command_block", + "states": { + "conditional_bit": 1b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chain_command_block", + "states": { + "conditional_bit": 1b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chain_command_block", + "states": { + "conditional_bit": 1b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chain_command_block", + "states": { + "conditional_bit": 1b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:chain_command_block", + "states": { + "conditional_bit": 1b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_sandstone", + "states": { + "sand_stone_type": "default" + }, + "version": 18090528 + }, + { + "name": "minecraft:red_sandstone", + "states": { + "sand_stone_type": "heiroglyphs" + }, + "version": 18090528 + }, + { + "name": "minecraft:red_sandstone", + "states": { + "sand_stone_type": "cut" + }, + "version": 18090528 + }, + { + "name": "minecraft:red_sandstone", + "states": { + "sand_stone_type": "smooth" + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:exposed_cut_copper_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:exposed_cut_copper_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:red_nether_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_nether_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_nether_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_nether_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_nether_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_nether_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_nether_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_nether_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:green_glazed_terracotta", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:green_glazed_terracotta", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:green_glazed_terracotta", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:green_glazed_terracotta", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:green_glazed_terracotta", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:green_glazed_terracotta", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_redstone_ore", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab", + "states": { + "stone_slab_type": "smooth_stone", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab", + "states": { + "stone_slab_type": "sandstone", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab", + "states": { + "stone_slab_type": "wood", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab", + "states": { + "stone_slab_type": "cobblestone", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab", + "states": { + "stone_slab_type": "brick", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab", + "states": { + "stone_slab_type": "stone_brick", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab", + "states": { + "stone_slab_type": "quartz", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab", + "states": { + "stone_slab_type": "nether_brick", + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab", + "states": { + "stone_slab_type": "smooth_stone", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab", + "states": { + "stone_slab_type": "sandstone", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab", + "states": { + "stone_slab_type": "wood", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab", + "states": { + "stone_slab_type": "cobblestone", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab", + "states": { + "stone_slab_type": "brick", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab", + "states": { + "stone_slab_type": "stone_brick", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab", + "states": { + "stone_slab_type": "quartz", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:double_stone_block_slab", + "states": { + "stone_slab_type": "nether_brick", + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_fence", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:anvil", + "states": { + "damage": "undamaged", + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:anvil", + "states": { + "damage": "undamaged", + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:anvil", + "states": { + "damage": "undamaged", + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:anvil", + "states": { + "damage": "undamaged", + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:anvil", + "states": { + "damage": "slightly_damaged", + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:anvil", + "states": { + "damage": "slightly_damaged", + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:anvil", + "states": { + "damage": "slightly_damaged", + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:anvil", + "states": { + "damage": "slightly_damaged", + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:anvil", + "states": { + "damage": "very_damaged", + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:anvil", + "states": { + "damage": "very_damaged", + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:anvil", + "states": { + "damage": "very_damaged", + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:anvil", + "states": { + "damage": "very_damaged", + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:anvil", + "states": { + "damage": "broken", + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:anvil", + "states": { + "damage": "broken", + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:anvil", + "states": { + "damage": "broken", + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:anvil", + "states": { + "damage": "broken", + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_leaves", + "states": { + "persistent_bit": 0b, + "update_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_leaves", + "states": { + "persistent_bit": 0b, + "update_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_leaves", + "states": { + "persistent_bit": 1b, + "update_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_leaves", + "states": { + "persistent_bit": 1b, + "update_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:bookshelf", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:mud", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:lit_pumpkin", + "states": { + "minecraft:cardinal_direction": "south" + }, + "version": 18090528 + }, + { + "name": "minecraft:lit_pumpkin", + "states": { + "minecraft:cardinal_direction": "west" + }, + "version": 18090528 + }, + { + "name": "minecraft:lit_pumpkin", + "states": { + "minecraft:cardinal_direction": "north" + }, + "version": 18090528 + }, + { + "name": "minecraft:lit_pumpkin", + "states": { + "minecraft:cardinal_direction": "east" + }, + "version": 18090528 + }, + { + "name": "minecraft:ice", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:air", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:bed", + "states": { + "direction": 0, + "head_piece_bit": 0b, + "occupied_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bed", + "states": { + "direction": 1, + "head_piece_bit": 0b, + "occupied_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bed", + "states": { + "direction": 2, + "head_piece_bit": 0b, + "occupied_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bed", + "states": { + "direction": 3, + "head_piece_bit": 0b, + "occupied_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bed", + "states": { + "direction": 0, + "head_piece_bit": 0b, + "occupied_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bed", + "states": { + "direction": 1, + "head_piece_bit": 0b, + "occupied_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bed", + "states": { + "direction": 2, + "head_piece_bit": 0b, + "occupied_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bed", + "states": { + "direction": 3, + "head_piece_bit": 0b, + "occupied_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bed", + "states": { + "direction": 0, + "head_piece_bit": 1b, + "occupied_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bed", + "states": { + "direction": 1, + "head_piece_bit": 1b, + "occupied_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bed", + "states": { + "direction": 2, + "head_piece_bit": 1b, + "occupied_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bed", + "states": { + "direction": 3, + "head_piece_bit": 1b, + "occupied_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bed", + "states": { + "direction": 0, + "head_piece_bit": 1b, + "occupied_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bed", + "states": { + "direction": 1, + "head_piece_bit": 1b, + "occupied_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bed", + "states": { + "direction": 2, + "head_piece_bit": 1b, + "occupied_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bed", + "states": { + "direction": 3, + "head_piece_bit": 1b, + "occupied_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:black_concrete", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:tnt", + "states": { + "allow_underwater_bit": 0b, + "explode_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:tnt", + "states": { + "allow_underwater_bit": 0b, + "explode_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:tnt", + "states": { + "allow_underwater_bit": 1b, + "explode_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:tnt", + "states": { + "allow_underwater_bit": 1b, + "explode_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:purple_candle_cake", + "states": { + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:purple_candle_cake", + "states": { + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:web", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:polished_diorite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_diorite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_diorite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_diorite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_diorite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_diorite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_diorite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_diorite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:orange_concrete", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:crying_obsidian", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:lime_carpet", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:decorated_pot", + "states": { + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:decorated_pot", + "states": { + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:decorated_pot", + "states": { + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:decorated_pot", + "states": { + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:enchanting_table", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_exposed_double_cut_copper_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_exposed_double_cut_copper_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_shulker_box", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:azalea", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:mud_bricks", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:birch_wall_sign", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_wall_sign", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_wall_sign", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_wall_sign", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_wall_sign", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_wall_sign", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_wall_sign", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_wall_sign", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_wall_sign", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_wall_sign", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_wall_sign", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_wall_sign", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:hopper", + "states": { + "facing_direction": 0, + "toggle_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:hopper", + "states": { + "facing_direction": 1, + "toggle_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:hopper", + "states": { + "facing_direction": 2, + "toggle_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:hopper", + "states": { + "facing_direction": 3, + "toggle_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:hopper", + "states": { + "facing_direction": 4, + "toggle_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:hopper", + "states": { + "facing_direction": 5, + "toggle_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:hopper", + "states": { + "facing_direction": 0, + "toggle_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:hopper", + "states": { + "facing_direction": 1, + "toggle_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:hopper", + "states": { + "facing_direction": 2, + "toggle_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:hopper", + "states": { + "facing_direction": 3, + "toggle_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:hopper", + "states": { + "facing_direction": 4, + "toggle_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:hopper", + "states": { + "facing_direction": 5, + "toggle_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "standing", + "direction": 0, + "toggle_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "standing", + "direction": 1, + "toggle_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "standing", + "direction": 2, + "toggle_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "standing", + "direction": 3, + "toggle_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "hanging", + "direction": 0, + "toggle_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "hanging", + "direction": 1, + "toggle_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "hanging", + "direction": 2, + "toggle_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "hanging", + "direction": 3, + "toggle_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "side", + "direction": 0, + "toggle_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "side", + "direction": 1, + "toggle_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "side", + "direction": 2, + "toggle_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "side", + "direction": 3, + "toggle_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "multiple", + "direction": 0, + "toggle_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "multiple", + "direction": 1, + "toggle_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "multiple", + "direction": 2, + "toggle_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "multiple", + "direction": 3, + "toggle_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "standing", + "direction": 0, + "toggle_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "standing", + "direction": 1, + "toggle_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "standing", + "direction": 2, + "toggle_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "standing", + "direction": 3, + "toggle_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "hanging", + "direction": 0, + "toggle_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "hanging", + "direction": 1, + "toggle_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "hanging", + "direction": 2, + "toggle_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "hanging", + "direction": 3, + "toggle_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "side", + "direction": 0, + "toggle_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "side", + "direction": 1, + "toggle_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "side", + "direction": 2, + "toggle_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "side", + "direction": 3, + "toggle_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "multiple", + "direction": 0, + "toggle_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "multiple", + "direction": 1, + "toggle_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "multiple", + "direction": 2, + "toggle_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bell", + "states": { + "attachment": "multiple", + "direction": 3, + "toggle_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:lectern", + "states": { + "direction": 0, + "powered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:lectern", + "states": { + "direction": 1, + "powered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:lectern", + "states": { + "direction": 2, + "powered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:lectern", + "states": { + "direction": 3, + "powered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:lectern", + "states": { + "direction": 0, + "powered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:lectern", + "states": { + "direction": 1, + "powered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:lectern", + "states": { + "direction": 2, + "powered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:lectern", + "states": { + "direction": 3, + "powered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_crimson_stem", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_crimson_stem", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_crimson_stem", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_banner", + "states": { + "ground_sign_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_banner", + "states": { + "ground_sign_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_banner", + "states": { + "ground_sign_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_banner", + "states": { + "ground_sign_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_banner", + "states": { + "ground_sign_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_banner", + "states": { + "ground_sign_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_banner", + "states": { + "ground_sign_direction": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_banner", + "states": { + "ground_sign_direction": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_banner", + "states": { + "ground_sign_direction": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_banner", + "states": { + "ground_sign_direction": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_banner", + "states": { + "ground_sign_direction": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_banner", + "states": { + "ground_sign_direction": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_banner", + "states": { + "ground_sign_direction": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_banner", + "states": { + "ground_sign_direction": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_banner", + "states": { + "ground_sign_direction": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:standing_banner", + "states": { + "ground_sign_direction": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_blue_shulker_box", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:jungle_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:jungle_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:grass", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_propagule", + "states": { + "hanging": 0b, + "propagule_stage": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_propagule", + "states": { + "hanging": 0b, + "propagule_stage": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_propagule", + "states": { + "hanging": 0b, + "propagule_stage": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_propagule", + "states": { + "hanging": 0b, + "propagule_stage": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_propagule", + "states": { + "hanging": 0b, + "propagule_stage": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_propagule", + "states": { + "hanging": 1b, + "propagule_stage": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_propagule", + "states": { + "hanging": 1b, + "propagule_stage": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_propagule", + "states": { + "hanging": 1b, + "propagule_stage": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_propagule", + "states": { + "hanging": 1b, + "propagule_stage": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_propagule", + "states": { + "hanging": 1b, + "propagule_stage": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:cactus", + "states": { + "age": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:cactus", + "states": { + "age": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cactus", + "states": { + "age": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:cactus", + "states": { + "age": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:cactus", + "states": { + "age": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:cactus", + "states": { + "age": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:cactus", + "states": { + "age": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:cactus", + "states": { + "age": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:cactus", + "states": { + "age": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:cactus", + "states": { + "age": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:cactus", + "states": { + "age": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:cactus", + "states": { + "age": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:cactus", + "states": { + "age": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:cactus", + "states": { + "age": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:cactus", + "states": { + "age": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:cactus", + "states": { + "age": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:budding_amethyst", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:sniffer_egg", + "states": { + "cracked_state": "no_cracks" + }, + "version": 18090528 + }, + { + "name": "minecraft:sniffer_egg", + "states": { + "cracked_state": "cracked" + }, + "version": 18090528 + }, + { + "name": "minecraft:sniffer_egg", + "states": { + "cracked_state": "max_cracked" + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:purple_glazed_terracotta", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:purple_glazed_terracotta", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:purple_glazed_terracotta", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:purple_glazed_terracotta", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:purple_glazed_terracotta", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:purple_glazed_terracotta", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:bedrock", + "states": { + "infiniburn_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:bedrock", + "states": { + "infiniburn_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:blackstone_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:blue_ice", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:cyan_shulker_box", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:polished_andesite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_andesite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_andesite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_andesite_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_andesite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_andesite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_andesite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_andesite_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:netherrack", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:purple_candle", + "states": { + "candles": 0, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:purple_candle", + "states": { + "candles": 1, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:purple_candle", + "states": { + "candles": 2, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:purple_candle", + "states": { + "candles": 3, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:purple_candle", + "states": { + "candles": 0, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:purple_candle", + "states": { + "candles": 1, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:purple_candle", + "states": { + "candles": 2, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:purple_candle", + "states": { + "candles": 3, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_standing_sign", + "states": { + "ground_sign_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_standing_sign", + "states": { + "ground_sign_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_standing_sign", + "states": { + "ground_sign_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_standing_sign", + "states": { + "ground_sign_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_standing_sign", + "states": { + "ground_sign_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_standing_sign", + "states": { + "ground_sign_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_standing_sign", + "states": { + "ground_sign_direction": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_standing_sign", + "states": { + "ground_sign_direction": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_standing_sign", + "states": { + "ground_sign_direction": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_standing_sign", + "states": { + "ground_sign_direction": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_standing_sign", + "states": { + "ground_sign_direction": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_standing_sign", + "states": { + "ground_sign_direction": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_standing_sign", + "states": { + "ground_sign_direction": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_standing_sign", + "states": { + "ground_sign_direction": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_standing_sign", + "states": { + "ground_sign_direction": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_standing_sign", + "states": { + "ground_sign_direction": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:mangrove_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:orange_carpet", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:lantern", + "states": { + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:lantern", + "states": { + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:lit_blast_furnace", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:lit_blast_furnace", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:lit_blast_furnace", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:lit_blast_furnace", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:lit_blast_furnace", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:lit_blast_furnace", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_blue_wool", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:allow", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_fence", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 0, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 1, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 2, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 3, + "door_hinge_bit": 0b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 0b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 0, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 1, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 2, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_door", + "states": { + "direction": 3, + "door_hinge_bit": 1b, + "open_bit": 1b, + "upper_block_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:chest", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chest", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chest", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chest", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chest", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:chest", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_wood", + "states": { + "pillar_axis": "y", + "stripped_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_wood", + "states": { + "pillar_axis": "y", + "stripped_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_wood", + "states": { + "pillar_axis": "x", + "stripped_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_wood", + "states": { + "pillar_axis": "x", + "stripped_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_wood", + "states": { + "pillar_axis": "z", + "stripped_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_wood", + "states": { + "pillar_axis": "z", + "stripped_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:chain", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:chain", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:chain", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:clay", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:cherry_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:cake", + "states": { + "bite_counter": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:cake", + "states": { + "bite_counter": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cake", + "states": { + "bite_counter": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:cake", + "states": { + "bite_counter": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:cake", + "states": { + "bite_counter": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:cake", + "states": { + "bite_counter": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:cake", + "states": { + "bite_counter": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 0b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 0, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 1, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 2, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 3, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 4, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 5, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 6, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 7, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 8, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 9, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 10, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 11, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 12, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 13, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 14, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 0, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 1, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 2, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 3, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 4, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_hanging_sign", + "states": { + "attached_bit": 1b, + "facing_direction": 5, + "ground_sign_direction": 15, + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 16 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 17 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 18 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 19 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 20 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 21 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 22 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 23 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 24 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 25 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 26 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 27 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 28 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 29 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 30 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 31 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 32 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 33 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 34 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 35 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 36 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 37 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 38 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 39 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 40 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 41 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 42 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 43 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 44 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 45 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 46 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 47 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 48 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 49 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 50 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 51 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 52 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 53 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 54 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 55 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 56 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 57 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 58 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 59 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 60 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 61 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 62 + }, + "version": 18090528 + }, + { + "name": "minecraft:sculk_vein", + "states": { + "multi_face_direction_bits": 63 + }, + "version": 18090528 + }, + { + "name": "minecraft:dead_brain_coral", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_coal_ore", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:weathered_cut_copper", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:warped_standing_sign", + "states": { + "ground_sign_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_standing_sign", + "states": { + "ground_sign_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_standing_sign", + "states": { + "ground_sign_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_standing_sign", + "states": { + "ground_sign_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_standing_sign", + "states": { + "ground_sign_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_standing_sign", + "states": { + "ground_sign_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_standing_sign", + "states": { + "ground_sign_direction": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_standing_sign", + "states": { + "ground_sign_direction": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_standing_sign", + "states": { + "ground_sign_direction": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_standing_sign", + "states": { + "ground_sign_direction": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_standing_sign", + "states": { + "ground_sign_direction": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_standing_sign", + "states": { + "ground_sign_direction": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_standing_sign", + "states": { + "ground_sign_direction": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_standing_sign", + "states": { + "ground_sign_direction": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_standing_sign", + "states": { + "ground_sign_direction": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_standing_sign", + "states": { + "ground_sign_direction": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:cracked_polished_blackstone_bricks", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_standing_sign", + "states": { + "ground_sign_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_standing_sign", + "states": { + "ground_sign_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_standing_sign", + "states": { + "ground_sign_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_standing_sign", + "states": { + "ground_sign_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_standing_sign", + "states": { + "ground_sign_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_standing_sign", + "states": { + "ground_sign_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_standing_sign", + "states": { + "ground_sign_direction": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_standing_sign", + "states": { + "ground_sign_direction": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_standing_sign", + "states": { + "ground_sign_direction": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_standing_sign", + "states": { + "ground_sign_direction": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_standing_sign", + "states": { + "ground_sign_direction": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_standing_sign", + "states": { + "ground_sign_direction": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_standing_sign", + "states": { + "ground_sign_direction": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_standing_sign", + "states": { + "ground_sign_direction": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_standing_sign", + "states": { + "ground_sign_direction": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_standing_sign", + "states": { + "ground_sign_direction": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_lava", + "states": { + "liquid_depth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_lava", + "states": { + "liquid_depth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_lava", + "states": { + "liquid_depth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_lava", + "states": { + "liquid_depth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_lava", + "states": { + "liquid_depth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_lava", + "states": { + "liquid_depth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_lava", + "states": { + "liquid_depth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_lava", + "states": { + "liquid_depth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_lava", + "states": { + "liquid_depth": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_lava", + "states": { + "liquid_depth": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_lava", + "states": { + "liquid_depth": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_lava", + "states": { + "liquid_depth": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_lava", + "states": { + "liquid_depth": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_lava", + "states": { + "liquid_depth": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_lava", + "states": { + "liquid_depth": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:flowing_lava", + "states": { + "liquid_depth": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:lit_furnace", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:lit_furnace", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:lit_furnace", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:lit_furnace", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:lit_furnace", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:lit_furnace", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:chiseled_nether_bricks", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:warped_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:warped_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_lapis_ore", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:dead_bubble_coral", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:cherry_sapling", + "states": { + "age_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_sapling", + "states": { + "age_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_log", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_log", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_log", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:prismarine_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:prismarine_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:prismarine_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:prismarine_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:prismarine_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:prismarine_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:prismarine_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:prismarine_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:white_carpet", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:cyan_concrete", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:dragon_egg", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:blue_concrete", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:nether_brick", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_iron_ore", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_1", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_0", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_3", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_2", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_5", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_4", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_7", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_6", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_9", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_8", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:camera", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:wheat", + "states": { + "growth": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:wheat", + "states": { + "growth": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:wheat", + "states": { + "growth": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:wheat", + "states": { + "growth": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:wheat", + "states": { + "growth": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:wheat", + "states": { + "growth": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:wheat", + "states": { + "growth": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:wheat", + "states": { + "growth": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_cut_copper", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:chemistry_table", + "states": { + "chemistry_table_type": "compound_creator", + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chemistry_table", + "states": { + "chemistry_table_type": "compound_creator", + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chemistry_table", + "states": { + "chemistry_table_type": "compound_creator", + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chemistry_table", + "states": { + "chemistry_table_type": "compound_creator", + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chemistry_table", + "states": { + "chemistry_table_type": "material_reducer", + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chemistry_table", + "states": { + "chemistry_table_type": "material_reducer", + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chemistry_table", + "states": { + "chemistry_table_type": "material_reducer", + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chemistry_table", + "states": { + "chemistry_table_type": "material_reducer", + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chemistry_table", + "states": { + "chemistry_table_type": "element_constructor", + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chemistry_table", + "states": { + "chemistry_table_type": "element_constructor", + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chemistry_table", + "states": { + "chemistry_table_type": "element_constructor", + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chemistry_table", + "states": { + "chemistry_table_type": "element_constructor", + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:chemistry_table", + "states": { + "chemistry_table_type": "lab_table", + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:chemistry_table", + "states": { + "chemistry_table_type": "lab_table", + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:chemistry_table", + "states": { + "chemistry_table_type": "lab_table", + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:chemistry_table", + "states": { + "chemistry_table_type": "lab_table", + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spore_blossom", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:crimson_standing_sign", + "states": { + "ground_sign_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_standing_sign", + "states": { + "ground_sign_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_standing_sign", + "states": { + "ground_sign_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_standing_sign", + "states": { + "ground_sign_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_standing_sign", + "states": { + "ground_sign_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_standing_sign", + "states": { + "ground_sign_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_standing_sign", + "states": { + "ground_sign_direction": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_standing_sign", + "states": { + "ground_sign_direction": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_standing_sign", + "states": { + "ground_sign_direction": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_standing_sign", + "states": { + "ground_sign_direction": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_standing_sign", + "states": { + "ground_sign_direction": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_standing_sign", + "states": { + "ground_sign_direction": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_standing_sign", + "states": { + "ground_sign_direction": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_standing_sign", + "states": { + "ground_sign_direction": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_standing_sign", + "states": { + "ground_sign_direction": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_standing_sign", + "states": { + "ground_sign_direction": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:darkoak_standing_sign", + "states": { + "ground_sign_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:darkoak_standing_sign", + "states": { + "ground_sign_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:darkoak_standing_sign", + "states": { + "ground_sign_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:darkoak_standing_sign", + "states": { + "ground_sign_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:darkoak_standing_sign", + "states": { + "ground_sign_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:darkoak_standing_sign", + "states": { + "ground_sign_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:darkoak_standing_sign", + "states": { + "ground_sign_direction": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:darkoak_standing_sign", + "states": { + "ground_sign_direction": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:darkoak_standing_sign", + "states": { + "ground_sign_direction": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:darkoak_standing_sign", + "states": { + "ground_sign_direction": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:darkoak_standing_sign", + "states": { + "ground_sign_direction": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:darkoak_standing_sign", + "states": { + "ground_sign_direction": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:darkoak_standing_sign", + "states": { + "ground_sign_direction": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:darkoak_standing_sign", + "states": { + "ground_sign_direction": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:darkoak_standing_sign", + "states": { + "ground_sign_direction": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:darkoak_standing_sign", + "states": { + "ground_sign_direction": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:weathered_double_cut_copper_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:weathered_double_cut_copper_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:emerald_ore", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:brown_mushroom_block", + "states": { + "huge_mushroom_bits": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_mushroom_block", + "states": { + "huge_mushroom_bits": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_mushroom_block", + "states": { + "huge_mushroom_bits": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_mushroom_block", + "states": { + "huge_mushroom_bits": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_mushroom_block", + "states": { + "huge_mushroom_bits": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_mushroom_block", + "states": { + "huge_mushroom_bits": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_mushroom_block", + "states": { + "huge_mushroom_bits": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_mushroom_block", + "states": { + "huge_mushroom_bits": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_mushroom_block", + "states": { + "huge_mushroom_bits": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_mushroom_block", + "states": { + "huge_mushroom_bits": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_mushroom_block", + "states": { + "huge_mushroom_bits": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_mushroom_block", + "states": { + "huge_mushroom_bits": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_mushroom_block", + "states": { + "huge_mushroom_bits": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_mushroom_block", + "states": { + "huge_mushroom_bits": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_mushroom_block", + "states": { + "huge_mushroom_bits": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:brown_mushroom_block", + "states": { + "huge_mushroom_bits": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:gray_concrete", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:pink_candle", + "states": { + "candles": 0, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_candle", + "states": { + "candles": 1, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_candle", + "states": { + "candles": 2, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_candle", + "states": { + "candles": 3, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_candle", + "states": { + "candles": 0, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_candle", + "states": { + "candles": 1, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_candle", + "states": { + "candles": 2, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:pink_candle", + "states": { + "candles": 3, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:purple_shulker_box", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:carved_pumpkin", + "states": { + "minecraft:cardinal_direction": "south" + }, + "version": 18090528 + }, + { + "name": "minecraft:carved_pumpkin", + "states": { + "minecraft:cardinal_direction": "west" + }, + "version": 18090528 + }, + { + "name": "minecraft:carved_pumpkin", + "states": { + "minecraft:cardinal_direction": "north" + }, + "version": 18090528 + }, + { + "name": "minecraft:carved_pumpkin", + "states": { + "minecraft:cardinal_direction": "east" + }, + "version": 18090528 + }, + { + "name": "minecraft:dropper", + "states": { + "facing_direction": 0, + "triggered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dropper", + "states": { + "facing_direction": 1, + "triggered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dropper", + "states": { + "facing_direction": 2, + "triggered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dropper", + "states": { + "facing_direction": 3, + "triggered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dropper", + "states": { + "facing_direction": 4, + "triggered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dropper", + "states": { + "facing_direction": 5, + "triggered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dropper", + "states": { + "facing_direction": 0, + "triggered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dropper", + "states": { + "facing_direction": 1, + "triggered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dropper", + "states": { + "facing_direction": 2, + "triggered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dropper", + "states": { + "facing_direction": 3, + "triggered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dropper", + "states": { + "facing_direction": 4, + "triggered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dropper", + "states": { + "facing_direction": 5, + "triggered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_wall_sign", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_wall_sign", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_wall_sign", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_wall_sign", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_wall_sign", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:spruce_wall_sign", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_warped_stem", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_warped_stem", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_warped_stem", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:candle", + "states": { + "candles": 0, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:candle", + "states": { + "candles": 1, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:candle", + "states": { + "candles": 2, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:candle", + "states": { + "candles": 3, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:candle", + "states": { + "candles": 0, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:candle", + "states": { + "candles": 1, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:candle", + "states": { + "candles": 2, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:candle", + "states": { + "candles": 3, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:pointed_dripstone", + "states": { + "dripstone_thickness": "tip", + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:pointed_dripstone", + "states": { + "dripstone_thickness": "frustum", + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:pointed_dripstone", + "states": { + "dripstone_thickness": "middle", + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:pointed_dripstone", + "states": { + "dripstone_thickness": "base", + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:pointed_dripstone", + "states": { + "dripstone_thickness": "merge", + "hanging": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:pointed_dripstone", + "states": { + "dripstone_thickness": "tip", + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:pointed_dripstone", + "states": { + "dripstone_thickness": "frustum", + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:pointed_dripstone", + "states": { + "dripstone_thickness": "middle", + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:pointed_dripstone", + "states": { + "dripstone_thickness": "base", + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:pointed_dripstone", + "states": { + "dripstone_thickness": "merge", + "hanging": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:red_carpet", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:netherreactor", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_brick_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_prismarine_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_prismarine_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_prismarine_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_prismarine_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_prismarine_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_prismarine_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_prismarine_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_prismarine_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_blue_concrete", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:chemical_heat", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:trip_wire", + "states": { + "attached_bit": 0b, + "disarmed_bit": 0b, + "powered_bit": 0b, + "suspended_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:trip_wire", + "states": { + "attached_bit": 0b, + "disarmed_bit": 0b, + "powered_bit": 1b, + "suspended_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:trip_wire", + "states": { + "attached_bit": 0b, + "disarmed_bit": 0b, + "powered_bit": 0b, + "suspended_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:trip_wire", + "states": { + "attached_bit": 0b, + "disarmed_bit": 0b, + "powered_bit": 1b, + "suspended_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:trip_wire", + "states": { + "attached_bit": 1b, + "disarmed_bit": 0b, + "powered_bit": 0b, + "suspended_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:trip_wire", + "states": { + "attached_bit": 1b, + "disarmed_bit": 0b, + "powered_bit": 1b, + "suspended_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:trip_wire", + "states": { + "attached_bit": 1b, + "disarmed_bit": 0b, + "powered_bit": 0b, + "suspended_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:trip_wire", + "states": { + "attached_bit": 1b, + "disarmed_bit": 0b, + "powered_bit": 1b, + "suspended_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:trip_wire", + "states": { + "attached_bit": 0b, + "disarmed_bit": 1b, + "powered_bit": 0b, + "suspended_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:trip_wire", + "states": { + "attached_bit": 0b, + "disarmed_bit": 1b, + "powered_bit": 1b, + "suspended_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:trip_wire", + "states": { + "attached_bit": 0b, + "disarmed_bit": 1b, + "powered_bit": 0b, + "suspended_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:trip_wire", + "states": { + "attached_bit": 0b, + "disarmed_bit": 1b, + "powered_bit": 1b, + "suspended_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:trip_wire", + "states": { + "attached_bit": 1b, + "disarmed_bit": 1b, + "powered_bit": 0b, + "suspended_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:trip_wire", + "states": { + "attached_bit": 1b, + "disarmed_bit": 1b, + "powered_bit": 1b, + "suspended_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:trip_wire", + "states": { + "attached_bit": 1b, + "disarmed_bit": 1b, + "powered_bit": 0b, + "suspended_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:trip_wire", + "states": { + "attached_bit": 1b, + "disarmed_bit": 1b, + "powered_bit": 1b, + "suspended_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cauldron", + "states": { + "cauldron_liquid": "water", + "fill_level": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:cauldron", + "states": { + "cauldron_liquid": "water", + "fill_level": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cauldron", + "states": { + "cauldron_liquid": "water", + "fill_level": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:cauldron", + "states": { + "cauldron_liquid": "water", + "fill_level": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:cauldron", + "states": { + "cauldron_liquid": "water", + "fill_level": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:cauldron", + "states": { + "cauldron_liquid": "water", + "fill_level": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:cauldron", + "states": { + "cauldron_liquid": "water", + "fill_level": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:cauldron", + "states": { + "cauldron_liquid": "lava", + "fill_level": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:cauldron", + "states": { + "cauldron_liquid": "lava", + "fill_level": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cauldron", + "states": { + "cauldron_liquid": "lava", + "fill_level": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:cauldron", + "states": { + "cauldron_liquid": "lava", + "fill_level": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:cauldron", + "states": { + "cauldron_liquid": "lava", + "fill_level": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:cauldron", + "states": { + "cauldron_liquid": "lava", + "fill_level": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:cauldron", + "states": { + "cauldron_liquid": "lava", + "fill_level": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:cauldron", + "states": { + "cauldron_liquid": "powder_snow", + "fill_level": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:cauldron", + "states": { + "cauldron_liquid": "powder_snow", + "fill_level": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cauldron", + "states": { + "cauldron_liquid": "powder_snow", + "fill_level": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:cauldron", + "states": { + "cauldron_liquid": "powder_snow", + "fill_level": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:cauldron", + "states": { + "cauldron_liquid": "powder_snow", + "fill_level": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:cauldron", + "states": { + "cauldron_liquid": "powder_snow", + "fill_level": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:cauldron", + "states": { + "cauldron_liquid": "powder_snow", + "fill_level": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 16 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 17 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 18 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 19 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 20 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 21 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 22 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 23 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 24 + }, + "version": 18090528 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "states": { + "growing_plant_age": 25 + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_trapdoor", + "states": { + "direction": 0, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_trapdoor", + "states": { + "direction": 1, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_trapdoor", + "states": { + "direction": 2, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_trapdoor", + "states": { + "direction": 3, + "open_bit": 0b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_trapdoor", + "states": { + "direction": 0, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_trapdoor", + "states": { + "direction": 1, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_trapdoor", + "states": { + "direction": 2, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dark_oak_trapdoor", + "states": { + "direction": 3, + "open_bit": 1b, + "upside_down_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_bp", + "states": { + "color_bit": 0b, + "torch_facing_direction": "unknown" + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_bp", + "states": { + "color_bit": 0b, + "torch_facing_direction": "west" + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_bp", + "states": { + "color_bit": 0b, + "torch_facing_direction": "east" + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_bp", + "states": { + "color_bit": 0b, + "torch_facing_direction": "north" + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_bp", + "states": { + "color_bit": 0b, + "torch_facing_direction": "south" + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_bp", + "states": { + "color_bit": 0b, + "torch_facing_direction": "top" + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_bp", + "states": { + "color_bit": 1b, + "torch_facing_direction": "unknown" + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_bp", + "states": { + "color_bit": 1b, + "torch_facing_direction": "west" + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_bp", + "states": { + "color_bit": 1b, + "torch_facing_direction": "east" + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_bp", + "states": { + "color_bit": 1b, + "torch_facing_direction": "north" + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_bp", + "states": { + "color_bit": 1b, + "torch_facing_direction": "south" + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_bp", + "states": { + "color_bit": 1b, + "torch_facing_direction": "top" + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_rg", + "states": { + "color_bit": 0b, + "torch_facing_direction": "unknown" + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_rg", + "states": { + "color_bit": 0b, + "torch_facing_direction": "west" + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_rg", + "states": { + "color_bit": 0b, + "torch_facing_direction": "east" + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_rg", + "states": { + "color_bit": 0b, + "torch_facing_direction": "north" + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_rg", + "states": { + "color_bit": 0b, + "torch_facing_direction": "south" + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_rg", + "states": { + "color_bit": 0b, + "torch_facing_direction": "top" + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_rg", + "states": { + "color_bit": 1b, + "torch_facing_direction": "unknown" + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_rg", + "states": { + "color_bit": 1b, + "torch_facing_direction": "west" + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_rg", + "states": { + "color_bit": 1b, + "torch_facing_direction": "east" + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_rg", + "states": { + "color_bit": 1b, + "torch_facing_direction": "north" + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_rg", + "states": { + "color_bit": 1b, + "torch_facing_direction": "south" + }, + "version": 18090528 + }, + { + "name": "minecraft:colored_torch_rg", + "states": { + "color_bit": 1b, + "torch_facing_direction": "top" + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_oxidized_copper", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:stripped_oak_log", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_oak_log", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_oak_log", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:sea_lantern", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:brewing_stand", + "states": { + "brewing_stand_slot_a_bit": 0b, + "brewing_stand_slot_b_bit": 0b, + "brewing_stand_slot_c_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:brewing_stand", + "states": { + "brewing_stand_slot_a_bit": 1b, + "brewing_stand_slot_b_bit": 0b, + "brewing_stand_slot_c_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:brewing_stand", + "states": { + "brewing_stand_slot_a_bit": 0b, + "brewing_stand_slot_b_bit": 1b, + "brewing_stand_slot_c_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:brewing_stand", + "states": { + "brewing_stand_slot_a_bit": 1b, + "brewing_stand_slot_b_bit": 1b, + "brewing_stand_slot_c_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:brewing_stand", + "states": { + "brewing_stand_slot_a_bit": 0b, + "brewing_stand_slot_b_bit": 0b, + "brewing_stand_slot_c_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:brewing_stand", + "states": { + "brewing_stand_slot_a_bit": 1b, + "brewing_stand_slot_b_bit": 0b, + "brewing_stand_slot_c_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:brewing_stand", + "states": { + "brewing_stand_slot_a_bit": 0b, + "brewing_stand_slot_b_bit": 1b, + "brewing_stand_slot_c_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:brewing_stand", + "states": { + "brewing_stand_slot_a_bit": 1b, + "brewing_stand_slot_b_bit": 1b, + "brewing_stand_slot_c_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_sapling", + "states": { + "age_bit": 0b, + "sapling_type": "oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_sapling", + "states": { + "age_bit": 1b, + "sapling_type": "oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_sapling", + "states": { + "age_bit": 0b, + "sapling_type": "spruce" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_sapling", + "states": { + "age_bit": 1b, + "sapling_type": "spruce" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_sapling", + "states": { + "age_bit": 0b, + "sapling_type": "birch" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_sapling", + "states": { + "age_bit": 1b, + "sapling_type": "birch" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_sapling", + "states": { + "age_bit": 0b, + "sapling_type": "jungle" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_sapling", + "states": { + "age_bit": 1b, + "sapling_type": "jungle" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_sapling", + "states": { + "age_bit": 0b, + "sapling_type": "acacia" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_sapling", + "states": { + "age_bit": 1b, + "sapling_type": "acacia" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_sapling", + "states": { + "age_bit": 0b, + "sapling_type": "dark_oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_sapling", + "states": { + "age_bit": 1b, + "sapling_type": "dark_oak" + }, + "version": 18090528 + }, + { + "name": "minecraft:blast_furnace", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:blast_furnace", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:blast_furnace", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:blast_furnace", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:blast_furnace", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:blast_furnace", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_roots", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:stonecutter_block", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:stonecutter_block", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:stonecutter_block", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:stonecutter_block", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:stonecutter_block", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:stonecutter_block", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:white_candle_cake", + "states": { + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:white_candle_cake", + "states": { + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:candle_cake", + "states": { + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:candle_cake", + "states": { + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:end_portal", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:blackstone", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:acacia_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:acacia_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:lit_deepslate_redstone_ore", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_10", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_11", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_12", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_13", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_14", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_15", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_16", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_17", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_18", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_19", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_36", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_37", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_34", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_35", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_32", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_33", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_30", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_31", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_38", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_39", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_29", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_28", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_21", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_20", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_23", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_22", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_25", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_24", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_27", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_26", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_58", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_59", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_54", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_55", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_56", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_57", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_50", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_51", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_52", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_53", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_49", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_48", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_47", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_46", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_45", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_44", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_43", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_42", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_41", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_40", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_72", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_73", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_70", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_71", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_76", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_77", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_74", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_75", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_78", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_79", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_65", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_64", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_67", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_66", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_61", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_60", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_63", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_62", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_69", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_68", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_98", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_99", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_90", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_91", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_92", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_93", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_94", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_95", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_96", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_97", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_89", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_88", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_83", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_82", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_81", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_80", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_87", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_86", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_85", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:element_84", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:lit_smoker", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:lit_smoker", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:lit_smoker", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:lit_smoker", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:lit_smoker", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:lit_smoker", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:lapis_ore", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:red_concrete", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:pink_carpet", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:smooth_quartz_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_quartz_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_quartz_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_quartz_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_quartz_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_quartz_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_quartz_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:smooth_quartz_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:red_candle_cake", + "states": { + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:red_candle_cake", + "states": { + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:azalea_leaves", + "states": { + "persistent_bit": 0b, + "update_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:azalea_leaves", + "states": { + "persistent_bit": 0b, + "update_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:azalea_leaves", + "states": { + "persistent_bit": 1b, + "update_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:azalea_leaves", + "states": { + "persistent_bit": 1b, + "update_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:purpur_block", + "states": { + "chisel_type": "default", + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:purpur_block", + "states": { + "chisel_type": "chiseled", + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:purpur_block", + "states": { + "chisel_type": "lines", + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:purpur_block", + "states": { + "chisel_type": "smooth", + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:purpur_block", + "states": { + "chisel_type": "default", + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:purpur_block", + "states": { + "chisel_type": "chiseled", + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:purpur_block", + "states": { + "chisel_type": "lines", + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:purpur_block", + "states": { + "chisel_type": "smooth", + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:purpur_block", + "states": { + "chisel_type": "default", + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:purpur_block", + "states": { + "chisel_type": "chiseled", + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:purpur_block", + "states": { + "chisel_type": "lines", + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:purpur_block", + "states": { + "chisel_type": "smooth", + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_wall_sign", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_wall_sign", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_wall_sign", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_wall_sign", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_wall_sign", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_wall_sign", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:cyan_candle", + "states": { + "candles": 0, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cyan_candle", + "states": { + "candles": 1, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cyan_candle", + "states": { + "candles": 2, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cyan_candle", + "states": { + "candles": 3, + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cyan_candle", + "states": { + "candles": 0, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cyan_candle", + "states": { + "candles": 1, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cyan_candle", + "states": { + "candles": 2, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cyan_candle", + "states": { + "candles": 3, + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_copper", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:repeating_command_block", + "states": { + "conditional_bit": 0b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:repeating_command_block", + "states": { + "conditional_bit": 0b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:repeating_command_block", + "states": { + "conditional_bit": 0b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:repeating_command_block", + "states": { + "conditional_bit": 0b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:repeating_command_block", + "states": { + "conditional_bit": 0b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:repeating_command_block", + "states": { + "conditional_bit": 0b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:repeating_command_block", + "states": { + "conditional_bit": 1b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:repeating_command_block", + "states": { + "conditional_bit": 1b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:repeating_command_block", + "states": { + "conditional_bit": 1b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:repeating_command_block", + "states": { + "conditional_bit": 1b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:repeating_command_block", + "states": { + "conditional_bit": 1b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:repeating_command_block", + "states": { + "conditional_bit": 1b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:nether_wart", + "states": { + "age": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:nether_wart", + "states": { + "age": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:nether_wart", + "states": { + "age": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:nether_wart", + "states": { + "age": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:purple_carpet", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:waxed_oxidized_double_cut_copper_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_oxidized_double_cut_copper_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_fungus", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:cherry_planks", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:purpur_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:purpur_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:purpur_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:purpur_stairs", + "states": { + "upside_down_bit": 0b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:purpur_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:purpur_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:purpur_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:purpur_stairs", + "states": { + "upside_down_bit": 1b, + "weirdo_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:tube_coral", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:portal", + "states": { + "portal_axis": "unknown" + }, + "version": 18090528 + }, + { + "name": "minecraft:portal", + "states": { + "portal_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:portal", + "states": { + "portal_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:command_block", + "states": { + "conditional_bit": 0b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:command_block", + "states": { + "conditional_bit": 0b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:command_block", + "states": { + "conditional_bit": 0b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:command_block", + "states": { + "conditional_bit": 0b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:command_block", + "states": { + "conditional_bit": 0b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:command_block", + "states": { + "conditional_bit": 0b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:command_block", + "states": { + "conditional_bit": 1b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:command_block", + "states": { + "conditional_bit": 1b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:command_block", + "states": { + "conditional_bit": 1b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:command_block", + "states": { + "conditional_bit": 1b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:command_block", + "states": { + "conditional_bit": 1b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:command_block", + "states": { + "conditional_bit": 1b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_button", + "states": { + "button_pressed_bit": 0b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_blackstone_button", + "states": { + "button_pressed_bit": 1b, + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:furnace", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:furnace", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:furnace", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:furnace", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:furnace", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:furnace", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:info_update2", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:amethyst_cluster", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:amethyst_cluster", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:amethyst_cluster", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:amethyst_cluster", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:amethyst_cluster", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:amethyst_cluster", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_cut_copper_slab", + "states": { + "top_slot_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:waxed_cut_copper_slab", + "states": { + "top_slot_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:polished_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dried_kelp_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:light_block", + "states": { + "block_light_level": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_block", + "states": { + "block_light_level": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_block", + "states": { + "block_light_level": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_block", + "states": { + "block_light_level": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_block", + "states": { + "block_light_level": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_block", + "states": { + "block_light_level": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_block", + "states": { + "block_light_level": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_block", + "states": { + "block_light_level": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_block", + "states": { + "block_light_level": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_block", + "states": { + "block_light_level": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_block", + "states": { + "block_light_level": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_block", + "states": { + "block_light_level": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_block", + "states": { + "block_light_level": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_block", + "states": { + "block_light_level": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_block", + "states": { + "block_light_level": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_block", + "states": { + "block_light_level": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_fence", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:turtle_egg", + "states": { + "cracked_state": "no_cracks", + "turtle_egg_count": "one_egg" + }, + "version": 18090528 + }, + { + "name": "minecraft:turtle_egg", + "states": { + "cracked_state": "no_cracks", + "turtle_egg_count": "two_egg" + }, + "version": 18090528 + }, + { + "name": "minecraft:turtle_egg", + "states": { + "cracked_state": "no_cracks", + "turtle_egg_count": "three_egg" + }, + "version": 18090528 + }, + { + "name": "minecraft:turtle_egg", + "states": { + "cracked_state": "no_cracks", + "turtle_egg_count": "four_egg" + }, + "version": 18090528 + }, + { + "name": "minecraft:turtle_egg", + "states": { + "cracked_state": "cracked", + "turtle_egg_count": "one_egg" + }, + "version": 18090528 + }, + { + "name": "minecraft:turtle_egg", + "states": { + "cracked_state": "cracked", + "turtle_egg_count": "two_egg" + }, + "version": 18090528 + }, + { + "name": "minecraft:turtle_egg", + "states": { + "cracked_state": "cracked", + "turtle_egg_count": "three_egg" + }, + "version": 18090528 + }, + { + "name": "minecraft:turtle_egg", + "states": { + "cracked_state": "cracked", + "turtle_egg_count": "four_egg" + }, + "version": 18090528 + }, + { + "name": "minecraft:turtle_egg", + "states": { + "cracked_state": "max_cracked", + "turtle_egg_count": "one_egg" + }, + "version": 18090528 + }, + { + "name": "minecraft:turtle_egg", + "states": { + "cracked_state": "max_cracked", + "turtle_egg_count": "two_egg" + }, + "version": 18090528 + }, + { + "name": "minecraft:turtle_egg", + "states": { + "cracked_state": "max_cracked", + "turtle_egg_count": "three_egg" + }, + "version": 18090528 + }, + { + "name": "minecraft:turtle_egg", + "states": { + "cracked_state": "max_cracked", + "turtle_egg_count": "four_egg" + }, + "version": 18090528 + }, + { + "name": "minecraft:magma", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:dispenser", + "states": { + "facing_direction": 0, + "triggered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dispenser", + "states": { + "facing_direction": 1, + "triggered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dispenser", + "states": { + "facing_direction": 2, + "triggered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dispenser", + "states": { + "facing_direction": 3, + "triggered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dispenser", + "states": { + "facing_direction": 4, + "triggered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dispenser", + "states": { + "facing_direction": 5, + "triggered_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:dispenser", + "states": { + "facing_direction": 0, + "triggered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dispenser", + "states": { + "facing_direction": 1, + "triggered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dispenser", + "states": { + "facing_direction": 2, + "triggered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dispenser", + "states": { + "facing_direction": 3, + "triggered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dispenser", + "states": { + "facing_direction": 4, + "triggered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:dispenser", + "states": { + "facing_direction": 5, + "triggered_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass_pane", + "states": { + "color": "white" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass_pane", + "states": { + "color": "orange" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass_pane", + "states": { + "color": "magenta" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass_pane", + "states": { + "color": "light_blue" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass_pane", + "states": { + "color": "yellow" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass_pane", + "states": { + "color": "lime" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass_pane", + "states": { + "color": "pink" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass_pane", + "states": { + "color": "gray" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass_pane", + "states": { + "color": "silver" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass_pane", + "states": { + "color": "cyan" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass_pane", + "states": { + "color": "purple" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass_pane", + "states": { + "color": "blue" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass_pane", + "states": { + "color": "brown" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass_pane", + "states": { + "color": "green" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass_pane", + "states": { + "color": "red" + }, + "version": 18090528 + }, + { + "name": "minecraft:hard_stained_glass_pane", + "states": { + "color": "black" + }, + "version": 18090528 + }, + { + "name": "minecraft:deepslate_diamond_ore", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:grindstone", + "states": { + "attachment": "standing", + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:grindstone", + "states": { + "attachment": "standing", + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:grindstone", + "states": { + "attachment": "standing", + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:grindstone", + "states": { + "attachment": "standing", + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:grindstone", + "states": { + "attachment": "hanging", + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:grindstone", + "states": { + "attachment": "hanging", + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:grindstone", + "states": { + "attachment": "hanging", + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:grindstone", + "states": { + "attachment": "hanging", + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:grindstone", + "states": { + "attachment": "side", + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:grindstone", + "states": { + "attachment": "side", + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:grindstone", + "states": { + "attachment": "side", + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:grindstone", + "states": { + "attachment": "side", + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:grindstone", + "states": { + "attachment": "multiple", + "direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:grindstone", + "states": { + "attachment": "multiple", + "direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:grindstone", + "states": { + "attachment": "multiple", + "direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:grindstone", + "states": { + "attachment": "multiple", + "direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:light_gray_wool", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:soul_campfire", + "states": { + "direction": 0, + "extinguished": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_campfire", + "states": { + "direction": 1, + "extinguished": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_campfire", + "states": { + "direction": 2, + "extinguished": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_campfire", + "states": { + "direction": 3, + "extinguished": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_campfire", + "states": { + "direction": 0, + "extinguished": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_campfire", + "states": { + "direction": 1, + "extinguished": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_campfire", + "states": { + "direction": 2, + "extinguished": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:soul_campfire", + "states": { + "direction": 3, + "extinguished": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_pressure_plate", + "states": { + "redstone_signal": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_pressure_plate", + "states": { + "redstone_signal": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_pressure_plate", + "states": { + "redstone_signal": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_pressure_plate", + "states": { + "redstone_signal": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_pressure_plate", + "states": { + "redstone_signal": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_pressure_plate", + "states": { + "redstone_signal": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_pressure_plate", + "states": { + "redstone_signal": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_pressure_plate", + "states": { + "redstone_signal": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_pressure_plate", + "states": { + "redstone_signal": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_pressure_plate", + "states": { + "redstone_signal": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_pressure_plate", + "states": { + "redstone_signal": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_pressure_plate", + "states": { + "redstone_signal": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_pressure_plate", + "states": { + "redstone_signal": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_pressure_plate", + "states": { + "redstone_signal": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_pressure_plate", + "states": { + "redstone_signal": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:wooden_pressure_plate", + "states": { + "redstone_signal": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:birch_fence", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:lime_candle_cake", + "states": { + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:lime_candle_cake", + "states": { + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:white_concrete", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:acacia_fence", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:grass_path", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:orange_candle_cake", + "states": { + "lit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:orange_candle_cake", + "states": { + "lit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:weathered_copper", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:unlit_redstone_torch", + "states": { + "torch_facing_direction": "unknown" + }, + "version": 18090528 + }, + { + "name": "minecraft:unlit_redstone_torch", + "states": { + "torch_facing_direction": "west" + }, + "version": 18090528 + }, + { + "name": "minecraft:unlit_redstone_torch", + "states": { + "torch_facing_direction": "east" + }, + "version": 18090528 + }, + { + "name": "minecraft:unlit_redstone_torch", + "states": { + "torch_facing_direction": "north" + }, + "version": 18090528 + }, + { + "name": "minecraft:unlit_redstone_torch", + "states": { + "torch_facing_direction": "south" + }, + "version": 18090528 + }, + { + "name": "minecraft:unlit_redstone_torch", + "states": { + "torch_facing_direction": "top" + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 0b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 0b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 1b, + "open_bit": 0b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_fence_gate", + "states": { + "direction": 0, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_fence_gate", + "states": { + "direction": 1, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_fence_gate", + "states": { + "direction": 2, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:cherry_fence_gate", + "states": { + "direction": 3, + "in_wall_bit": 1b, + "open_bit": 1b + }, + "version": 18090528 + }, + { + "name": "minecraft:gray_glazed_terracotta", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:gray_glazed_terracotta", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:gray_glazed_terracotta", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:gray_glazed_terracotta", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:gray_glazed_terracotta", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:gray_glazed_terracotta", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:lodestone", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:bamboo_mosaic", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:raw_iron_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:light_gray_carpet", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:purple_wool", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:iron_block", + "states": {}, + "version": 18090528 + }, + { + "name": "minecraft:ladder", + "states": { + "facing_direction": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:ladder", + "states": { + "facing_direction": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:ladder", + "states": { + "facing_direction": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:ladder", + "states": { + "facing_direction": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:ladder", + "states": { + "facing_direction": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:ladder", + "states": { + "facing_direction": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_pressure_plate", + "states": { + "redstone_signal": 0 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_pressure_plate", + "states": { + "redstone_signal": 1 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_pressure_plate", + "states": { + "redstone_signal": 2 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_pressure_plate", + "states": { + "redstone_signal": 3 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_pressure_plate", + "states": { + "redstone_signal": 4 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_pressure_plate", + "states": { + "redstone_signal": 5 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_pressure_plate", + "states": { + "redstone_signal": 6 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_pressure_plate", + "states": { + "redstone_signal": 7 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_pressure_plate", + "states": { + "redstone_signal": 8 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_pressure_plate", + "states": { + "redstone_signal": 9 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_pressure_plate", + "states": { + "redstone_signal": 10 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_pressure_plate", + "states": { + "redstone_signal": 11 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_pressure_plate", + "states": { + "redstone_signal": 12 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_pressure_plate", + "states": { + "redstone_signal": 13 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_pressure_plate", + "states": { + "redstone_signal": 14 + }, + "version": 18090528 + }, + { + "name": "minecraft:crimson_pressure_plate", + "states": { + "redstone_signal": 15 + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_mangrove_log", + "states": { + "pillar_axis": "y" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_mangrove_log", + "states": { + "pillar_axis": "x" + }, + "version": 18090528 + }, + { + "name": "minecraft:stripped_mangrove_log", + "states": { + "pillar_axis": "z" + }, + "version": 18090528 + }, + { + "name": "minecraft:gravel", + "states": {}, + "version": 18090528 + } + ] +} \ No newline at end of file