diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 000000000..0090e64ab
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,3 @@
+[submodule "connector/src/main/resources/mappings"]
+	path = connector/src/main/resources/mappings
+	url = https://github.com/GeyserMC/mappings.git
diff --git a/Jenkinsfile b/Jenkinsfile
index 3055316c7..abe22b6f3 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -10,6 +10,7 @@ pipeline {
     stages {
         stage ('Build') {
             steps {
+                sh 'git submodule update --init --recursive'
                 sh 'mvn clean package'
             }
             post {
@@ -49,4 +50,4 @@ pipeline {
             }
         }
     }
-}
\ No newline at end of file
+}
diff --git a/connector/src/main/java/org/geysermc/connector/entity/Entity.java b/connector/src/main/java/org/geysermc/connector/entity/Entity.java
index ba9fe4ab3..15100f13b 100644
--- a/connector/src/main/java/org/geysermc/connector/entity/Entity.java
+++ b/connector/src/main/java/org/geysermc/connector/entity/Entity.java
@@ -34,6 +34,8 @@ import com.nukkitx.protocol.bedrock.data.EntityDataDictionary;
 import com.nukkitx.protocol.bedrock.data.EntityFlag;
 import com.nukkitx.protocol.bedrock.data.EntityFlags;
 import com.nukkitx.protocol.bedrock.packet.*;
+import it.unimi.dsi.fastutil.longs.LongOpenHashSet;
+import it.unimi.dsi.fastutil.longs.LongSet;
 import lombok.Getter;
 import lombok.Setter;
 import org.geysermc.connector.console.GeyserLogger;
@@ -69,7 +71,7 @@ public class Entity {
 
     protected boolean valid;
 
-    protected Set<Long> passengers = new HashSet<>();
+    protected LongSet passengers = new LongOpenHashSet();
     protected Map<AttributeType, Attribute> attributes = new HashMap<>();
     protected EntityDataDictionary metadata = new EntityDataDictionary();
 
diff --git a/connector/src/main/java/org/geysermc/connector/network/session/cache/EntityCache.java b/connector/src/main/java/org/geysermc/connector/network/session/cache/EntityCache.java
index 80b965007..fd0bd7c5a 100644
--- a/connector/src/main/java/org/geysermc/connector/network/session/cache/EntityCache.java
+++ b/connector/src/main/java/org/geysermc/connector/network/session/cache/EntityCache.java
@@ -25,6 +25,10 @@
 
 package org.geysermc.connector.network.session.cache;
 
+import it.unimi.dsi.fastutil.longs.Long2LongMap;
+import it.unimi.dsi.fastutil.longs.Long2LongOpenHashMap;
+import it.unimi.dsi.fastutil.longs.Long2ObjectMap;
+import it.unimi.dsi.fastutil.longs.Long2ObjectOpenHashMap;
 import lombok.Getter;
 import org.geysermc.connector.entity.Entity;
 import org.geysermc.connector.entity.PlayerEntity;
@@ -41,8 +45,8 @@ public class EntityCache {
     private GeyserSession session;
 
     @Getter
-    private Map<Long, Entity> entities = new HashMap<>();
-    private Map<Long, Long> entityIdTranslations = new HashMap<>();
+    private Long2ObjectMap<Entity> entities = new Long2ObjectOpenHashMap<>();
+    private Long2LongMap entityIdTranslations = new Long2LongOpenHashMap();
     private Map<UUID, PlayerEntity> playerEntities = new HashMap<>();
     private Map<UUID, Long> bossbars = new HashMap<>();
 
@@ -62,12 +66,10 @@ public class EntityCache {
 
     public boolean removeEntity(Entity entity, boolean force) {
         if (entity != null && entity.isValid() && (force || entity.despawnEntity(session))) {
-            Long geyserId = entityIdTranslations.remove(entity.getEntityId());
-            if (geyserId != null) {
-                entities.remove(geyserId);
-                if (entity.is(PlayerEntity.class)) {
-                    playerEntities.remove(entity.as(PlayerEntity.class).getUuid());
-                }
+            long geyserId = entityIdTranslations.remove(entity.getEntityId());
+            entities.remove(geyserId);
+            if (entity.is(PlayerEntity.class)) {
+                playerEntities.remove(entity.as(PlayerEntity.class).getUuid());
             }
             return true;
         }
diff --git a/connector/src/main/java/org/geysermc/connector/network/session/cache/WindowCache.java b/connector/src/main/java/org/geysermc/connector/network/session/cache/WindowCache.java
index fc7de6144..5d21c55ca 100644
--- a/connector/src/main/java/org/geysermc/connector/network/session/cache/WindowCache.java
+++ b/connector/src/main/java/org/geysermc/connector/network/session/cache/WindowCache.java
@@ -26,6 +26,8 @@
 package org.geysermc.connector.network.session.cache;
 
 import com.nukkitx.protocol.bedrock.packet.ModalFormRequestPacket;
+import it.unimi.dsi.fastutil.ints.Int2ObjectMap;
+import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap;
 import lombok.Getter;
 import org.geysermc.connector.network.session.GeyserSession;
 import org.geysermc.api.window.FormWindow;
@@ -38,7 +40,7 @@ public class WindowCache {
     private GeyserSession session;
 
     @Getter
-    private Map<Integer, FormWindow> windows = new HashMap<Integer, FormWindow>();
+    private Int2ObjectMap<FormWindow> windows = new Int2ObjectOpenHashMap<>();
 
     public WindowCache(GeyserSession session) {
         this.session = session;
diff --git a/connector/src/main/java/org/geysermc/connector/network/translators/item/ItemTranslator.java b/connector/src/main/java/org/geysermc/connector/network/translators/item/ItemTranslator.java
index 97a9c2931..472287b78 100644
--- a/connector/src/main/java/org/geysermc/connector/network/translators/item/ItemTranslator.java
+++ b/connector/src/main/java/org/geysermc/connector/network/translators/item/ItemTranslator.java
@@ -79,7 +79,7 @@ public class ItemTranslator {
     }
 
     public ItemEntry getItem(ItemData data) {
-        for (ItemEntry itemEntry : Toolbox.ITEM_ENTRIES.valueCollection()) {
+        for (ItemEntry itemEntry : Toolbox.ITEM_ENTRIES.values()) {
             if (itemEntry.getBedrockId() == data.getId() && itemEntry.getBedrockData() == data.getDamage()) {
                 return itemEntry;
             }
diff --git a/connector/src/main/java/org/geysermc/connector/network/translators/java/entity/spawn/JavaSpawnObjectTranslator.java b/connector/src/main/java/org/geysermc/connector/network/translators/java/entity/spawn/JavaSpawnObjectTranslator.java
index 7f7b470c7..57571bed4 100644
--- a/connector/src/main/java/org/geysermc/connector/network/translators/java/entity/spawn/JavaSpawnObjectTranslator.java
+++ b/connector/src/main/java/org/geysermc/connector/network/translators/java/entity/spawn/JavaSpawnObjectTranslator.java
@@ -30,6 +30,7 @@ import com.github.steveice10.mc.protocol.packet.ingame.server.entity.spawn.Serve
 import com.nukkitx.math.vector.Vector3f;
 import org.geysermc.connector.console.GeyserLogger;
 import org.geysermc.connector.entity.Entity;
+import org.geysermc.connector.entity.ItemEntity;
 import org.geysermc.connector.entity.type.EntityType;
 import org.geysermc.connector.network.session.GeyserSession;
 import org.geysermc.connector.network.translators.PacketTranslator;
@@ -52,10 +53,16 @@ public class JavaSpawnObjectTranslator extends PacketTranslator<ServerSpawnObjec
             return;
         }
 
-        Entity entity = new Entity(
-                packet.getEntityId(), session.getEntityCache().getNextEntityId().incrementAndGet(),
-                type, position, motion, rotation
-        );
+        long geyserId = session.getEntityCache().getNextEntityId().incrementAndGet();
+        Entity entity;
+        switch (type) {
+            case ITEM:
+                entity = new ItemEntity(packet.getEntityId(), geyserId, type, position, motion, rotation);
+                break;
+            default:
+                entity = new Entity(packet.getEntityId(), geyserId, type, position, motion, rotation);
+                break;
+        }
 
         session.getEntityCache().spawnEntity(entity);
     }
diff --git a/connector/src/main/java/org/geysermc/connector/utils/Toolbox.java b/connector/src/main/java/org/geysermc/connector/utils/Toolbox.java
index 09635bbbc..806f5e178 100644
--- a/connector/src/main/java/org/geysermc/connector/utils/Toolbox.java
+++ b/connector/src/main/java/org/geysermc/connector/utils/Toolbox.java
@@ -8,8 +8,8 @@ import com.nukkitx.nbt.tag.ListTag;
 import com.nukkitx.protocol.bedrock.data.ItemData;
 import com.nukkitx.protocol.bedrock.packet.StartGamePacket;
 
-import gnu.trove.map.TIntObjectMap;
-import gnu.trove.map.hash.TIntObjectHashMap;
+import it.unimi.dsi.fastutil.ints.Int2ObjectMap;
+import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap;
 import org.geysermc.connector.GeyserConnector;
 import org.geysermc.connector.console.GeyserLogger;
 import org.geysermc.connector.network.translators.block.BlockEntry;
@@ -26,8 +26,8 @@ public class Toolbox {
     public static ListTag<CompoundTag> BLOCKS;
     public static ItemData[] CREATIVE_ITEMS;
 
-    public static final TIntObjectMap<ItemEntry> ITEM_ENTRIES = new TIntObjectHashMap<>();
-    public static final TIntObjectMap<BlockEntry> BLOCK_ENTRIES = new TIntObjectHashMap<>();
+    public static final Int2ObjectMap<ItemEntry> ITEM_ENTRIES = new Int2ObjectOpenHashMap<>();
+    public static final Int2ObjectMap<BlockEntry> BLOCK_ENTRIES = new Int2ObjectOpenHashMap<>();
 
     public static void init() {
         InputStream stream = GeyserConnector.class.getClassLoader().getResourceAsStream("bedrock/runtime_block_states.dat");
@@ -74,7 +74,7 @@ public class Toolbox {
             ITEMS.add(new StartGamePacket.ItemEntry((String) entry.get("name"), (short) ((int) entry.get("id"))));
         }
 
-        InputStream itemStream = Toolbox.class.getClassLoader().getResourceAsStream("items.json");
+        InputStream itemStream = Toolbox.class.getClassLoader().getResourceAsStream("mappings/items.json");
         ObjectMapper itemMapper = new ObjectMapper();
         Map<String, Map<String, Object>> items = new HashMap<>();
 
@@ -90,7 +90,7 @@ public class Toolbox {
             itemIndex++;
         }
 
-        InputStream blockStream = Toolbox.class.getClassLoader().getResourceAsStream("blocks.json");
+        InputStream blockStream = Toolbox.class.getClassLoader().getResourceAsStream("mappings/blocks.json");
         ObjectMapper blockMapper = new ObjectMapper();
         Map<String, Map<String, Object>> blocks = new HashMap<>();
 
diff --git a/connector/src/main/java/org/geysermc/connector/world/chunk/BlockStorage.java b/connector/src/main/java/org/geysermc/connector/world/chunk/BlockStorage.java
index db38d4bb0..dbb967d4e 100644
--- a/connector/src/main/java/org/geysermc/connector/world/chunk/BlockStorage.java
+++ b/connector/src/main/java/org/geysermc/connector/world/chunk/BlockStorage.java
@@ -1,12 +1,15 @@
 package org.geysermc.connector.world.chunk;
 
 import com.nukkitx.network.VarInts;
-import gnu.trove.list.array.TIntArrayList;
 import io.netty.buffer.ByteBuf;
+import it.unimi.dsi.fastutil.ints.IntArrayList;
+import it.unimi.dsi.fastutil.ints.IntList;
 import org.geysermc.connector.world.GlobalBlockPalette;
 import org.geysermc.connector.world.chunk.bitarray.BitArray;
 import org.geysermc.connector.world.chunk.bitarray.BitArrayVersion;
 
+import java.util.function.IntConsumer;
+
 /**
  * Adapted from NukkitX: https://github.com/NukkitX/Nukkit
  */
@@ -14,7 +17,7 @@ public class BlockStorage {
 
     private static final int SIZE = 4096;
 
-    private final TIntArrayList palette;
+    private final IntList palette;
     private BitArray bitArray;
 
     public BlockStorage() {
@@ -23,11 +26,11 @@ public class BlockStorage {
 
     public BlockStorage(BitArrayVersion version) {
         this.bitArray = version.createPalette(SIZE);
-        this.palette = new TIntArrayList(16, -1);
+        this.palette = new IntArrayList(16);
         this.palette.add(0); // Air is at the start of every palette.
     }
 
-    private BlockStorage(BitArray bitArray, TIntArrayList palette) {
+    private BlockStorage(BitArray bitArray, IntArrayList palette) {
         this.palette = palette;
         this.bitArray = bitArray;
     }
@@ -57,10 +60,7 @@ public class BlockStorage {
         }
 
         VarInts.writeInt(buffer, palette.size());
-        palette.forEach(id -> {
-            VarInts.writeInt(buffer, id);
-            return true;
-        });
+        palette.forEach((IntConsumer) id -> VarInts.writeInt(buffer, id));
     }
 
     private void onResize(BitArrayVersion version) {
@@ -109,6 +109,6 @@ public class BlockStorage {
     }
 
     public BlockStorage copy() {
-        return new BlockStorage(this.bitArray.copy(), new TIntArrayList(this.palette));
+        return new BlockStorage(this.bitArray.copy(), new IntArrayList(this.palette));
     }
 }
\ No newline at end of file
diff --git a/connector/src/main/resources/blocks.json b/connector/src/main/resources/blocks.json
deleted file mode 100644
index 83fbe14ba..000000000
--- a/connector/src/main/resources/blocks.json
+++ /dev/null
@@ -1,45086 +0,0 @@
-{
-  "minecraft:air": {
-    "bedrock_identifier": "minecraft:air",
-    "bedrock_data": 0
-  },
-  "minecraft:stone": {
-    "bedrock_identifier": "minecraft:stone",
-    "bedrock_data": 0
-  },
-  "minecraft:granite": {
-    "bedrock_identifier": "minecraft:stone",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_granite": {
-    "bedrock_identifier": "minecraft:stone",
-    "bedrock_data": 2
-  },
-  "minecraft:diorite": {
-    "bedrock_identifier": "minecraft:stone",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_diorite": {
-    "bedrock_identifier": "minecraft:stone",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite": {
-    "bedrock_identifier": "minecraft:stone",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_andesite": {
-    "bedrock_identifier": "minecraft:stone",
-    "bedrock_data": 6
-  },
-  "minecraft:grass_block[snowy=true]": {
-    "bedrock_identifier": "minecraft:grass",
-    "bedrock_data": 0
-  },
-  "minecraft:grass_block[snowy=false]": {
-    "bedrock_identifier": "minecraft:grass",
-    "bedrock_data": 0
-  },
-  "minecraft:dirt": {
-    "bedrock_identifier": "minecraft:dirt",
-    "bedrock_data": 0
-  },
-  "minecraft:coarse_dirt": {
-    "bedrock_identifier": "minecraft:dirt",
-    "bedrock_data": 1
-  },
-  "minecraft:podzol[snowy=true]": {
-    "bedrock_identifier": "minecraft:podzol",
-    "bedrock_data": 0
-  },
-  "minecraft:podzol[snowy=false]": {
-    "bedrock_identifier": "minecraft:podzol",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone": {
-    "bedrock_identifier": "minecraft:cobblestone",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_planks": {
-    "bedrock_identifier": "minecraft:planks",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_planks": {
-    "bedrock_identifier": "minecraft:planks",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_planks": {
-    "bedrock_identifier": "minecraft:planks",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_planks": {
-    "bedrock_identifier": "minecraft:planks",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_planks": {
-    "bedrock_identifier": "minecraft:planks",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_planks": {
-    "bedrock_identifier": "minecraft:planks",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_sapling[stage=0]": {
-    "bedrock_identifier": "minecraft:sapling",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_sapling[stage=1]": {
-    "bedrock_identifier": "minecraft:sapling",
-    "bedrock_data": 8
-  },
-  "minecraft:spruce_sapling[stage=0]": {
-    "bedrock_identifier": "minecraft:sapling",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_sapling[stage=1]": {
-    "bedrock_identifier": "minecraft:sapling",
-    "bedrock_data": 9
-  },
-  "minecraft:birch_sapling[stage=0]": {
-    "bedrock_identifier": "minecraft:sapling",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_sapling[stage=1]": {
-    "bedrock_identifier": "minecraft:sapling",
-    "bedrock_data": 10
-  },
-  "minecraft:jungle_sapling[stage=0]": {
-    "bedrock_identifier": "minecraft:sapling",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_sapling[stage=1]": {
-    "bedrock_identifier": "minecraft:sapling",
-    "bedrock_data": 11
-  },
-  "minecraft:acacia_sapling[stage=0]": {
-    "bedrock_identifier": "minecraft:sapling",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_sapling[stage=1]": {
-    "bedrock_identifier": "minecraft:sapling",
-    "bedrock_data": 12
-  },
-  "minecraft:dark_oak_sapling[stage=0]": {
-    "bedrock_identifier": "minecraft:sapling",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_sapling[stage=1]": {
-    "bedrock_identifier": "minecraft:sapling",
-    "bedrock_data": 13
-  },
-  "minecraft:bedrock": {
-    "bedrock_identifier": "minecraft:bedrock",
-    "bedrock_data": 0
-  },
-  "minecraft:water[level=0]": {
-    "bedrock_identifier": "minecraft:water",
-    "bedrock_data": 0
-  },
-  "minecraft:water[level=1]": {
-    "bedrock_identifier": "minecraft:flowing_water",
-    "bedrock_data": 1
-  },
-  "minecraft:water[level=2]": {
-    "bedrock_identifier": "minecraft:flowing_water",
-    "bedrock_data": 2
-  },
-  "minecraft:water[level=3]": {
-    "bedrock_identifier": "minecraft:flowing_water",
-    "bedrock_data": 3
-  },
-  "minecraft:water[level=4]": {
-    "bedrock_identifier": "minecraft:flowing_water",
-    "bedrock_data": 4
-  },
-  "minecraft:water[level=5]": {
-    "bedrock_identifier": "minecraft:flowing_water",
-    "bedrock_data": 5
-  },
-  "minecraft:water[level=6]": {
-    "bedrock_identifier": "minecraft:flowing_water",
-    "bedrock_data": 6
-  },
-  "minecraft:water[level=7]": {
-    "bedrock_identifier": "minecraft:flowing_water",
-    "bedrock_data": 7
-  },
-  "minecraft:water[level=8]": {
-    "bedrock_identifier": "minecraft:flowing_water",
-    "bedrock_data": 8
-  },
-  "minecraft:water[level=9]": {
-    "bedrock_identifier": "minecraft:flowing_water",
-    "bedrock_data": 9
-  },
-  "minecraft:water[level=10]": {
-    "bedrock_identifier": "minecraft:flowing_water",
-    "bedrock_data": 10
-  },
-  "minecraft:water[level=11]": {
-    "bedrock_identifier": "minecraft:flowing_water",
-    "bedrock_data": 11
-  },
-  "minecraft:water[level=12]": {
-    "bedrock_identifier": "minecraft:flowing_water",
-    "bedrock_data": 12
-  },
-  "minecraft:water[level=13]": {
-    "bedrock_identifier": "minecraft:flowing_water",
-    "bedrock_data": 13
-  },
-  "minecraft:water[level=14]": {
-    "bedrock_identifier": "minecraft:flowing_water",
-    "bedrock_data": 14
-  },
-  "minecraft:water[level=15]": {
-    "bedrock_identifier": "minecraft:flowing_water",
-    "bedrock_data": 15
-  },
-  "minecraft:lava[level=0]": {
-    "bedrock_identifier": "minecraft:lava",
-    "bedrock_data": 0
-  },
-  "minecraft:lava[level=1]": {
-    "bedrock_identifier": "minecraft:flowing_lava",
-    "bedrock_data": 1
-  },
-  "minecraft:lava[level=2]": {
-    "bedrock_identifier": "minecraft:flowing_lava",
-    "bedrock_data": 2
-  },
-  "minecraft:lava[level=3]": {
-    "bedrock_identifier": "minecraft:flowing_lava",
-    "bedrock_data": 3
-  },
-  "minecraft:lava[level=4]": {
-    "bedrock_identifier": "minecraft:flowing_lava",
-    "bedrock_data": 4
-  },
-  "minecraft:lava[level=5]": {
-    "bedrock_identifier": "minecraft:flowing_lava",
-    "bedrock_data": 5
-  },
-  "minecraft:lava[level=6]": {
-    "bedrock_identifier": "minecraft:flowing_lava",
-    "bedrock_data": 6
-  },
-  "minecraft:lava[level=7]": {
-    "bedrock_identifier": "minecraft:flowing_lava",
-    "bedrock_data": 7
-  },
-  "minecraft:lava[level=8]": {
-    "bedrock_identifier": "minecraft:flowing_lava",
-    "bedrock_data": 8
-  },
-  "minecraft:lava[level=9]": {
-    "bedrock_identifier": "minecraft:flowing_lava",
-    "bedrock_data": 9
-  },
-  "minecraft:lava[level=10]": {
-    "bedrock_identifier": "minecraft:flowing_lava",
-    "bedrock_data": 10
-  },
-  "minecraft:lava[level=11]": {
-    "bedrock_identifier": "minecraft:flowing_lava",
-    "bedrock_data": 11
-  },
-  "minecraft:lava[level=12]": {
-    "bedrock_identifier": "minecraft:flowing_lava",
-    "bedrock_data": 12
-  },
-  "minecraft:lava[level=13]": {
-    "bedrock_identifier": "minecraft:flowing_lava",
-    "bedrock_data": 13
-  },
-  "minecraft:lava[level=14]": {
-    "bedrock_identifier": "minecraft:flowing_lava",
-    "bedrock_data": 14
-  },
-  "minecraft:lava[level=15]": {
-    "bedrock_identifier": "minecraft:flowing_lava",
-    "bedrock_data": 15
-  },
-  "minecraft:sand": {
-    "bedrock_identifier": "minecraft:sand",
-    "bedrock_data": 0
-  },
-  "minecraft:red_sand": {
-    "bedrock_identifier": "minecraft:sand",
-    "bedrock_data": 1
-  },
-  "minecraft:gravel": {
-    "bedrock_identifier": "minecraft:gravel",
-    "bedrock_data": 0
-  },
-  "minecraft:gold_ore": {
-    "bedrock_identifier": "minecraft:gold_ore",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_ore": {
-    "bedrock_identifier": "minecraft:iron_ore",
-    "bedrock_data": 0
-  },
-  "minecraft:coal_ore": {
-    "bedrock_identifier": "minecraft:coal_ore",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_log[axis=x]": {
-    "bedrock_identifier": "minecraft:log",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_log[axis=y]": {
-    "bedrock_identifier": "minecraft:log",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_log[axis=z]": {
-    "bedrock_identifier": "minecraft:log",
-    "bedrock_data": 8
-  },
-  "minecraft:spruce_log[axis=x]": {
-    "bedrock_identifier": "minecraft:log",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_log[axis=y]": {
-    "bedrock_identifier": "minecraft:log",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_log[axis=z]": {
-    "bedrock_identifier": "minecraft:log",
-    "bedrock_data": 9
-  },
-  "minecraft:birch_log[axis=x]": {
-    "bedrock_identifier": "minecraft:log",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_log[axis=y]": {
-    "bedrock_identifier": "minecraft:log",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_log[axis=z]": {
-    "bedrock_identifier": "minecraft:log",
-    "bedrock_data": 10
-  },
-  "minecraft:jungle_log[axis=x]": {
-    "bedrock_identifier": "minecraft:log",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_log[axis=y]": {
-    "bedrock_identifier": "minecraft:log",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_log[axis=z]": {
-    "bedrock_identifier": "minecraft:log",
-    "bedrock_data": 11
-  },
-  "minecraft:acacia_log[axis=x]": {
-    "bedrock_identifier": "minecraft:log2",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_log[axis=y]": {
-    "bedrock_identifier": "minecraft:log2",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_log[axis=z]": {
-    "bedrock_identifier": "minecraft:log2",
-    "bedrock_data": 8
-  },
-  "minecraft:dark_oak_log[axis=x]": {
-    "bedrock_identifier": "minecraft:log2",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_log[axis=y]": {
-    "bedrock_identifier": "minecraft:log2",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_log[axis=z]": {
-    "bedrock_identifier": "minecraft:log2",
-    "bedrock_data": 9
-  },
-  "minecraft:stripped_spruce_log[axis=x]": {
-    "bedrock_identifier": "minecraft:stripped_spruce_log",
-    "bedrock_data": 1
-  },
-  "minecraft:stripped_spruce_log[axis=y]": {
-    "bedrock_identifier": "minecraft:stripped_spruce_log",
-    "bedrock_data": 0
-  },
-  "minecraft:stripped_spruce_log[axis=z]": {
-    "bedrock_identifier": "minecraft:stripped_spruce_log",
-    "bedrock_data": 2
-  },
-  "minecraft:stripped_birch_log[axis=x]": {
-    "bedrock_identifier": "minecraft:stripped_birch_log",
-    "bedrock_data": 1
-  },
-  "minecraft:stripped_birch_log[axis=y]": {
-    "bedrock_identifier": "minecraft:stripped_birch_log",
-    "bedrock_data": 0
-  },
-  "minecraft:stripped_birch_log[axis=z]": {
-    "bedrock_identifier": "minecraft:stripped_birch_log",
-    "bedrock_data": 2
-  },
-  "minecraft:stripped_jungle_log[axis=x]": {
-    "bedrock_identifier": "minecraft:stripped_jungle_log",
-    "bedrock_data": 1
-  },
-  "minecraft:stripped_jungle_log[axis=y]": {
-    "bedrock_identifier": "minecraft:stripped_jungle_log",
-    "bedrock_data": 0
-  },
-  "minecraft:stripped_jungle_log[axis=z]": {
-    "bedrock_identifier": "minecraft:stripped_jungle_log",
-    "bedrock_data": 2
-  },
-  "minecraft:stripped_acacia_log[axis=x]": {
-    "bedrock_identifier": "minecraft:stripped_acacia_log",
-    "bedrock_data": 1
-  },
-  "minecraft:stripped_acacia_log[axis=y]": {
-    "bedrock_identifier": "minecraft:stripped_acacia_log",
-    "bedrock_data": 0
-  },
-  "minecraft:stripped_acacia_log[axis=z]": {
-    "bedrock_identifier": "minecraft:stripped_acacia_log",
-    "bedrock_data": 2
-  },
-  "minecraft:stripped_dark_oak_log[axis=x]": {
-    "bedrock_identifier": "minecraft:stripped_dark_oak_log",
-    "bedrock_data": 1
-  },
-  "minecraft:stripped_dark_oak_log[axis=y]": {
-    "bedrock_identifier": "minecraft:stripped_dark_oak_log",
-    "bedrock_data": 0
-  },
-  "minecraft:stripped_dark_oak_log[axis=z]": {
-    "bedrock_identifier": "minecraft:stripped_dark_oak_log",
-    "bedrock_data": 2
-  },
-  "minecraft:stripped_oak_log[axis=x]": {
-    "bedrock_identifier": "minecraft:stripped_oak_log",
-    "bedrock_data": 1
-  },
-  "minecraft:stripped_oak_log[axis=y]": {
-    "bedrock_identifier": "minecraft:stripped_oak_log",
-    "bedrock_data": 0
-  },
-  "minecraft:stripped_oak_log[axis=z]": {
-    "bedrock_identifier": "minecraft:stripped_oak_log",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_wood[axis=x]": {
-    "bedrock_identifier": "minecraft:wood",
-    "bedrock_data": 16
-  },
-  "minecraft:oak_wood[axis=y]": {
-    "bedrock_identifier": "minecraft:wood",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_wood[axis=z]": {
-    "bedrock_identifier": "minecraft:wood",
-    "bedrock_data": 32
-  },
-  "minecraft:spruce_wood[axis=x]": {
-    "bedrock_identifier": "minecraft:wood",
-    "bedrock_data": 17
-  },
-  "minecraft:spruce_wood[axis=y]": {
-    "bedrock_identifier": "minecraft:wood",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_wood[axis=z]": {
-    "bedrock_identifier": "minecraft:wood",
-    "bedrock_data": 33
-  },
-  "minecraft:birch_wood[axis=x]": {
-    "bedrock_identifier": "minecraft:wood",
-    "bedrock_data": 18
-  },
-  "minecraft:birch_wood[axis=y]": {
-    "bedrock_identifier": "minecraft:wood",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_wood[axis=z]": {
-    "bedrock_identifier": "minecraft:wood",
-    "bedrock_data": 34
-  },
-  "minecraft:jungle_wood[axis=x]": {
-    "bedrock_identifier": "minecraft:wood",
-    "bedrock_data": 19
-  },
-  "minecraft:jungle_wood[axis=y]": {
-    "bedrock_identifier": "minecraft:wood",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_wood[axis=z]": {
-    "bedrock_identifier": "minecraft:wood",
-    "bedrock_data": 35
-  },
-  "minecraft:acacia_wood[axis=x]": {
-    "bedrock_identifier": "minecraft:wood",
-    "bedrock_data": 20
-  },
-  "minecraft:acacia_wood[axis=y]": {
-    "bedrock_identifier": "minecraft:wood",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_wood[axis=z]": {
-    "bedrock_identifier": "minecraft:wood",
-    "bedrock_data": 36
-  },
-  "minecraft:dark_oak_wood[axis=x]": {
-    "bedrock_identifier": "minecraft:wood",
-    "bedrock_data": 21
-  },
-  "minecraft:dark_oak_wood[axis=y]": {
-    "bedrock_identifier": "minecraft:wood",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_wood[axis=z]": {
-    "bedrock_identifier": "minecraft:wood",
-    "bedrock_data": 37
-  },
-  "minecraft:stripped_oak_wood[axis=x]": {
-    "bedrock_identifier": "minecraft:stripped_oak_log",
-    "bedrock_data": 3
-  },
-  "minecraft:stripped_oak_wood[axis=y]": {
-    "bedrock_identifier": "minecraft:stripped_oak_log",
-    "bedrock_data": 3
-  },
-  "minecraft:stripped_oak_wood[axis=z]": {
-    "bedrock_identifier": "minecraft:stripped_oak_log",
-    "bedrock_data": 3
-  },
-  "minecraft:stripped_spruce_wood[axis=x]": {
-    "bedrock_identifier": "minecraft:stripped_spruce_log",
-    "bedrock_data": 3
-  },
-  "minecraft:stripped_spruce_wood[axis=y]": {
-    "bedrock_identifier": "minecraft:stripped_spruce_log",
-    "bedrock_data": 3
-  },
-  "minecraft:stripped_spruce_wood[axis=z]": {
-    "bedrock_identifier": "minecraft:stripped_spruce_log",
-    "bedrock_data": 3
-  },
-  "minecraft:stripped_birch_wood[axis=x]": {
-    "bedrock_identifier": "minecraft:stripped_birch_log",
-    "bedrock_data": 3
-  },
-  "minecraft:stripped_birch_wood[axis=y]": {
-    "bedrock_identifier": "minecraft:stripped_birch_log",
-    "bedrock_data": 3
-  },
-  "minecraft:stripped_birch_wood[axis=z]": {
-    "bedrock_identifier": "minecraft:stripped_birch_log",
-    "bedrock_data": 3
-  },
-  "minecraft:stripped_jungle_wood[axis=x]": {
-    "bedrock_identifier": "minecraft:stripped_jungle_log",
-    "bedrock_data": 3
-  },
-  "minecraft:stripped_jungle_wood[axis=y]": {
-    "bedrock_identifier": "minecraft:stripped_jungle_log",
-    "bedrock_data": 3
-  },
-  "minecraft:stripped_jungle_wood[axis=z]": {
-    "bedrock_identifier": "minecraft:stripped_jungle_log",
-    "bedrock_data": 3
-  },
-  "minecraft:stripped_acacia_wood[axis=x]": {
-    "bedrock_identifier": "minecraft:stripped_acacia_log",
-    "bedrock_data": 3
-  },
-  "minecraft:stripped_acacia_wood[axis=y]": {
-    "bedrock_identifier": "minecraft:stripped_acacia_log",
-    "bedrock_data": 3
-  },
-  "minecraft:stripped_acacia_wood[axis=z]": {
-    "bedrock_identifier": "minecraft:stripped_acacia_log",
-    "bedrock_data": 3
-  },
-  "minecraft:stripped_dark_oak_wood[axis=x]": {
-    "bedrock_identifier": "minecraft:stripped_dark_oak_log",
-    "bedrock_data": 3
-  },
-  "minecraft:stripped_dark_oak_wood[axis=y]": {
-    "bedrock_identifier": "minecraft:stripped_dark_oak_log",
-    "bedrock_data": 3
-  },
-  "minecraft:stripped_dark_oak_wood[axis=z]": {
-    "bedrock_identifier": "minecraft:stripped_dark_oak_log",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_leaves[distance=1,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_leaves[distance=1,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_leaves[distance=2,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_leaves[distance=2,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_leaves[distance=3,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_leaves[distance=3,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_leaves[distance=4,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_leaves[distance=4,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_leaves[distance=5,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_leaves[distance=5,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_leaves[distance=6,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_leaves[distance=6,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_leaves[distance=7,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_leaves[distance=7,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_leaves[distance=1,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_leaves[distance=1,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_leaves[distance=2,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_leaves[distance=2,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_leaves[distance=3,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_leaves[distance=3,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_leaves[distance=4,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_leaves[distance=4,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_leaves[distance=5,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_leaves[distance=5,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_leaves[distance=6,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_leaves[distance=6,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_leaves[distance=7,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_leaves[distance=7,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_leaves[distance=1,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_leaves[distance=1,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_leaves[distance=2,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_leaves[distance=2,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_leaves[distance=3,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_leaves[distance=3,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_leaves[distance=4,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_leaves[distance=4,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_leaves[distance=5,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_leaves[distance=5,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_leaves[distance=6,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_leaves[distance=6,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_leaves[distance=7,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_leaves[distance=7,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_leaves[distance=1,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_leaves[distance=1,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_leaves[distance=2,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_leaves[distance=2,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_leaves[distance=3,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_leaves[distance=3,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_leaves[distance=4,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_leaves[distance=4,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_leaves[distance=5,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_leaves[distance=5,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_leaves[distance=6,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_leaves[distance=6,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_leaves[distance=7,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_leaves[distance=7,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_leaves[distance=1,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_leaves[distance=1,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_leaves[distance=2,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_leaves[distance=2,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_leaves[distance=3,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_leaves[distance=3,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_leaves[distance=4,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_leaves[distance=4,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_leaves[distance=5,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_leaves[distance=5,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_leaves[distance=6,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_leaves[distance=6,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_leaves[distance=7,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_leaves[distance=7,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_leaves[distance=1,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_leaves[distance=1,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_leaves[distance=2,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_leaves[distance=2,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_leaves[distance=3,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_leaves[distance=3,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_leaves[distance=4,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_leaves[distance=4,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_leaves[distance=5,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_leaves[distance=5,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_leaves[distance=6,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_leaves[distance=6,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_leaves[distance=7,persistent=true]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_leaves[distance=7,persistent=false]": {
-    "bedrock_identifier": "minecraft:leaves2",
-    "bedrock_data": 1
-  },
-  "minecraft:sponge": {
-    "bedrock_identifier": "minecraft:sponge",
-    "bedrock_data": 0
-  },
-  "minecraft:wet_sponge": {
-    "bedrock_identifier": "minecraft:sponge",
-    "bedrock_data": 1
-  },
-  "minecraft:glass": {
-    "bedrock_identifier": "minecraft:glass",
-    "bedrock_data": 0
-  },
-  "minecraft:lapis_ore": {
-    "bedrock_identifier": "minecraft:lapis_ore",
-    "bedrock_data": 0
-  },
-  "minecraft:lapis_block": {
-    "bedrock_identifier": "minecraft:lapis_block",
-    "bedrock_data": 0
-  },
-  "minecraft:dispenser[facing=north,triggered=true]": {
-    "bedrock_identifier": "minecraft:dispenser",
-    "bedrock_data": 10
-  },
-  "minecraft:dispenser[facing=north,triggered=false]": {
-    "bedrock_identifier": "minecraft:dispenser",
-    "bedrock_data": 2
-  },
-  "minecraft:dispenser[facing=east,triggered=true]": {
-    "bedrock_identifier": "minecraft:dispenser",
-    "bedrock_data": 13
-  },
-  "minecraft:dispenser[facing=east,triggered=false]": {
-    "bedrock_identifier": "minecraft:dispenser",
-    "bedrock_data": 5
-  },
-  "minecraft:dispenser[facing=south,triggered=true]": {
-    "bedrock_identifier": "minecraft:dispenser",
-    "bedrock_data": 11
-  },
-  "minecraft:dispenser[facing=south,triggered=false]": {
-    "bedrock_identifier": "minecraft:dispenser",
-    "bedrock_data": 3
-  },
-  "minecraft:dispenser[facing=west,triggered=true]": {
-    "bedrock_identifier": "minecraft:dispenser",
-    "bedrock_data": 12
-  },
-  "minecraft:dispenser[facing=west,triggered=false]": {
-    "bedrock_identifier": "minecraft:dispenser",
-    "bedrock_data": 4
-  },
-  "minecraft:dispenser[facing=up,triggered=true]": {
-    "bedrock_identifier": "minecraft:dispenser",
-    "bedrock_data": 9
-  },
-  "minecraft:dispenser[facing=up,triggered=false]": {
-    "bedrock_identifier": "minecraft:dispenser",
-    "bedrock_data": 1
-  },
-  "minecraft:dispenser[facing=down,triggered=true]": {
-    "bedrock_identifier": "minecraft:dispenser",
-    "bedrock_data": 8
-  },
-  "minecraft:dispenser[facing=down,triggered=false]": {
-    "bedrock_identifier": "minecraft:dispenser",
-    "bedrock_data": 0
-  },
-  "minecraft:sandstone": {
-    "bedrock_identifier": "minecraft:sandstone",
-    "bedrock_data": 0
-  },
-  "minecraft:chiseled_sandstone": {
-    "bedrock_identifier": "minecraft:sandstone",
-    "bedrock_data": 1
-  },
-  "minecraft:cut_sandstone": {
-    "bedrock_identifier": "minecraft:sandstone",
-    "bedrock_data": 2
-  },
-  "minecraft:note_block[instrument=harp,note=0,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=0,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=1,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=1,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=2,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=2,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=3,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=3,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=4,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=4,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=5,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=5,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=6,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=6,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=7,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=7,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=8,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=8,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=9,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=9,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=10,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=10,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=11,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=11,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=12,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=12,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=13,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=13,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=14,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=14,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=15,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=15,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=16,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=16,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=17,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=17,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=18,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=18,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=19,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=19,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=20,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=20,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=21,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=21,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=22,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=22,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=23,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=23,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=24,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=harp,note=24,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=0,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=0,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=1,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=1,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=2,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=2,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=3,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=3,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=4,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=4,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=5,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=5,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=6,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=6,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=7,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=7,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=8,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=8,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=9,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=9,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=10,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=10,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=11,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=11,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=12,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=12,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=13,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=13,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=14,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=14,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=15,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=15,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=16,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=16,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=17,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=17,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=18,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=18,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=19,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=19,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=20,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=20,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=21,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=21,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=22,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=22,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=23,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=23,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=24,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=basedrum,note=24,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=0,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=0,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=1,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=1,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=2,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=2,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=3,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=3,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=4,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=4,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=5,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=5,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=6,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=6,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=7,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=7,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=8,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=8,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=9,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=9,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=10,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=10,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=11,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=11,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=12,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=12,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=13,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=13,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=14,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=14,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=15,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=15,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=16,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=16,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=17,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=17,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=18,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=18,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=19,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=19,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=20,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=20,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=21,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=21,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=22,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=22,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=23,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=23,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=24,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=snare,note=24,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=0,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=0,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=1,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=1,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=2,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=2,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=3,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=3,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=4,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=4,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=5,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=5,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=6,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=6,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=7,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=7,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=8,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=8,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=9,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=9,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=10,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=10,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=11,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=11,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=12,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=12,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=13,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=13,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=14,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=14,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=15,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=15,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=16,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=16,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=17,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=17,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=18,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=18,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=19,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=19,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=20,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=20,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=21,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=21,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=22,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=22,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=23,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=23,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=24,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=hat,note=24,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=0,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=0,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=1,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=1,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=2,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=2,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=3,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=3,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=4,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=4,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=5,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=5,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=6,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=6,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=7,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=7,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=8,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=8,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=9,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=9,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=10,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=10,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=11,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=11,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=12,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=12,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=13,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=13,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=14,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=14,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=15,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=15,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=16,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=16,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=17,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=17,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=18,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=18,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=19,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=19,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=20,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=20,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=21,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=21,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=22,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=22,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=23,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=23,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=24,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bass,note=24,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=0,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=0,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=1,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=1,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=2,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=2,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=3,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=3,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=4,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=4,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=5,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=5,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=6,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=6,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=7,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=7,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=8,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=8,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=9,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=9,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=10,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=10,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=11,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=11,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=12,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=12,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=13,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=13,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=14,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=14,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=15,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=15,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=16,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=16,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=17,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=17,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=18,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=18,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=19,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=19,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=20,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=20,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=21,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=21,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=22,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=22,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=23,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=23,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=24,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=flute,note=24,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=0,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=0,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=1,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=1,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=2,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=2,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=3,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=3,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=4,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=4,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=5,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=5,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=6,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=6,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=7,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=7,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=8,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=8,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=9,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=9,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=10,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=10,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=11,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=11,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=12,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=12,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=13,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=13,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=14,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=14,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=15,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=15,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=16,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=16,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=17,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=17,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=18,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=18,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=19,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=19,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=20,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=20,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=21,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=21,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=22,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=22,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=23,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=23,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=24,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bell,note=24,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=0,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=0,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=1,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=1,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=2,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=2,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=3,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=3,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=4,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=4,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=5,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=5,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=6,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=6,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=7,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=7,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=8,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=8,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=9,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=9,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=10,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=10,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=11,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=11,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=12,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=12,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=13,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=13,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=14,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=14,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=15,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=15,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=16,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=16,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=17,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=17,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=18,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=18,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=19,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=19,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=20,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=20,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=21,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=21,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=22,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=22,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=23,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=23,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=24,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=guitar,note=24,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=0,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=0,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=1,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=1,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=2,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=2,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=3,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=3,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=4,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=4,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=5,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=5,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=6,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=6,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=7,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=7,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=8,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=8,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=9,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=9,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=10,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=10,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=11,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=11,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=12,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=12,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=13,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=13,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=14,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=14,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=15,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=15,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=16,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=16,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=17,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=17,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=18,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=18,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=19,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=19,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=20,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=20,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=21,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=21,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=22,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=22,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=23,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=23,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=24,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=chime,note=24,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=0,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=0,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=1,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=1,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=2,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=2,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=3,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=3,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=4,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=4,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=5,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=5,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=6,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=6,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=7,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=7,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=8,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=8,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=9,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=9,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=10,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=10,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=11,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=11,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=12,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=12,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=13,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=13,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=14,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=14,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=15,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=15,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=16,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=16,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=17,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=17,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=18,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=18,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=19,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=19,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=20,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=20,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=21,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=21,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=22,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=22,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=23,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=23,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=24,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=xylophone,note=24,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=0,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=0,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=1,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=1,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=2,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=2,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=3,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=3,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=4,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=4,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=5,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=5,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=6,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=6,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=7,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=7,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=8,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=8,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=9,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=9,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=10,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=10,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=11,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=11,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=12,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=12,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=13,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=13,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=14,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=14,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=15,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=15,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=16,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=16,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=17,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=17,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=18,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=18,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=19,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=19,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=20,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=20,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=21,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=21,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=22,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=22,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=23,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=23,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=24,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=iron_xylophone,note=24,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=0,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=0,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=1,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=1,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=2,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=2,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=3,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=3,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=4,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=4,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=5,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=5,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=6,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=6,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=7,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=7,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=8,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=8,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=9,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=9,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=10,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=10,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=11,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=11,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=12,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=12,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=13,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=13,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=14,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=14,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=15,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=15,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=16,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=16,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=17,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=17,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=18,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=18,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=19,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=19,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=20,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=20,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=21,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=21,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=22,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=22,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=23,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=23,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=24,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=cow_bell,note=24,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=0,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=0,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=1,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=1,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=2,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=2,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=3,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=3,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=4,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=4,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=5,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=5,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=6,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=6,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=7,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=7,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=8,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=8,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=9,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=9,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=10,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=10,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=11,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=11,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=12,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=12,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=13,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=13,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=14,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=14,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=15,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=15,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=16,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=16,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=17,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=17,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=18,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=18,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=19,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=19,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=20,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=20,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=21,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=21,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=22,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=22,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=23,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=23,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=24,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=didgeridoo,note=24,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=0,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=0,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=1,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=1,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=2,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=2,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=3,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=3,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=4,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=4,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=5,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=5,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=6,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=6,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=7,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=7,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=8,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=8,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=9,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=9,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=10,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=10,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=11,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=11,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=12,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=12,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=13,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=13,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=14,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=14,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=15,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=15,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=16,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=16,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=17,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=17,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=18,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=18,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=19,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=19,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=20,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=20,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=21,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=21,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=22,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=22,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=23,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=23,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=24,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=bit,note=24,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=0,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=0,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=1,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=1,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=2,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=2,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=3,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=3,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=4,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=4,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=5,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=5,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=6,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=6,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=7,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=7,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=8,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=8,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=9,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=9,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=10,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=10,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=11,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=11,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=12,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=12,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=13,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=13,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=14,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=14,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=15,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=15,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=16,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=16,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=17,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=17,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=18,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=18,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=19,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=19,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=20,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=20,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=21,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=21,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=22,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=22,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=23,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=23,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=24,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=banjo,note=24,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=0,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=0,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=1,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=1,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=2,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=2,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=3,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=3,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=4,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=4,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=5,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=5,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=6,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=6,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=7,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=7,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=8,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=8,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=9,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=9,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=10,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=10,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=11,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=11,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=12,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=12,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=13,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=13,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=14,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=14,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=15,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=15,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=16,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=16,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=17,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=17,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=18,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=18,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=19,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=19,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=20,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=20,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=21,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=21,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=22,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=22,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=23,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=23,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=24,powered=true]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:note_block[instrument=pling,note=24,powered=false]": {
-    "bedrock_identifier": "minecraft:noteblock",
-    "bedrock_data": 0
-  },
-  "minecraft:white_bed[facing=north,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 14
-  },
-  "minecraft:white_bed[facing=north,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 6
-  },
-  "minecraft:white_bed[facing=north,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 10
-  },
-  "minecraft:white_bed[facing=north,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 2
-  },
-  "minecraft:white_bed[facing=south,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 12
-  },
-  "minecraft:white_bed[facing=south,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 4
-  },
-  "minecraft:white_bed[facing=south,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 8
-  },
-  "minecraft:white_bed[facing=south,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 0
-  },
-  "minecraft:white_bed[facing=west,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 13
-  },
-  "minecraft:white_bed[facing=west,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 5
-  },
-  "minecraft:white_bed[facing=west,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 9
-  },
-  "minecraft:white_bed[facing=west,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 1
-  },
-  "minecraft:white_bed[facing=east,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 15
-  },
-  "minecraft:white_bed[facing=east,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 7
-  },
-  "minecraft:white_bed[facing=east,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 11
-  },
-  "minecraft:white_bed[facing=east,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 3
-  },
-  "minecraft:orange_bed[facing=north,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 14
-  },
-  "minecraft:orange_bed[facing=north,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 6
-  },
-  "minecraft:orange_bed[facing=north,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 10
-  },
-  "minecraft:orange_bed[facing=north,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 2
-  },
-  "minecraft:orange_bed[facing=south,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 12
-  },
-  "minecraft:orange_bed[facing=south,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 4
-  },
-  "minecraft:orange_bed[facing=south,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 8
-  },
-  "minecraft:orange_bed[facing=south,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 0
-  },
-  "minecraft:orange_bed[facing=west,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 13
-  },
-  "minecraft:orange_bed[facing=west,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 5
-  },
-  "minecraft:orange_bed[facing=west,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 9
-  },
-  "minecraft:orange_bed[facing=west,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_bed[facing=east,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 15
-  },
-  "minecraft:orange_bed[facing=east,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 7
-  },
-  "minecraft:orange_bed[facing=east,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 11
-  },
-  "minecraft:orange_bed[facing=east,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 3
-  },
-  "minecraft:magenta_bed[facing=north,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 14
-  },
-  "minecraft:magenta_bed[facing=north,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 6
-  },
-  "minecraft:magenta_bed[facing=north,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 10
-  },
-  "minecraft:magenta_bed[facing=north,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_bed[facing=south,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 12
-  },
-  "minecraft:magenta_bed[facing=south,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 4
-  },
-  "minecraft:magenta_bed[facing=south,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 8
-  },
-  "minecraft:magenta_bed[facing=south,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 0
-  },
-  "minecraft:magenta_bed[facing=west,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 13
-  },
-  "minecraft:magenta_bed[facing=west,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 5
-  },
-  "minecraft:magenta_bed[facing=west,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 9
-  },
-  "minecraft:magenta_bed[facing=west,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 1
-  },
-  "minecraft:magenta_bed[facing=east,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 15
-  },
-  "minecraft:magenta_bed[facing=east,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 7
-  },
-  "minecraft:magenta_bed[facing=east,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 11
-  },
-  "minecraft:magenta_bed[facing=east,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_bed[facing=north,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 14
-  },
-  "minecraft:light_blue_bed[facing=north,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 6
-  },
-  "minecraft:light_blue_bed[facing=north,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 10
-  },
-  "minecraft:light_blue_bed[facing=north,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 2
-  },
-  "minecraft:light_blue_bed[facing=south,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 12
-  },
-  "minecraft:light_blue_bed[facing=south,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 4
-  },
-  "minecraft:light_blue_bed[facing=south,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 8
-  },
-  "minecraft:light_blue_bed[facing=south,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 0
-  },
-  "minecraft:light_blue_bed[facing=west,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 13
-  },
-  "minecraft:light_blue_bed[facing=west,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 5
-  },
-  "minecraft:light_blue_bed[facing=west,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 9
-  },
-  "minecraft:light_blue_bed[facing=west,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 1
-  },
-  "minecraft:light_blue_bed[facing=east,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 15
-  },
-  "minecraft:light_blue_bed[facing=east,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 7
-  },
-  "minecraft:light_blue_bed[facing=east,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 11
-  },
-  "minecraft:light_blue_bed[facing=east,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 3
-  },
-  "minecraft:yellow_bed[facing=north,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 14
-  },
-  "minecraft:yellow_bed[facing=north,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 6
-  },
-  "minecraft:yellow_bed[facing=north,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 10
-  },
-  "minecraft:yellow_bed[facing=north,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 2
-  },
-  "minecraft:yellow_bed[facing=south,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 12
-  },
-  "minecraft:yellow_bed[facing=south,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_bed[facing=south,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 8
-  },
-  "minecraft:yellow_bed[facing=south,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 0
-  },
-  "minecraft:yellow_bed[facing=west,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 13
-  },
-  "minecraft:yellow_bed[facing=west,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 5
-  },
-  "minecraft:yellow_bed[facing=west,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 9
-  },
-  "minecraft:yellow_bed[facing=west,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 1
-  },
-  "minecraft:yellow_bed[facing=east,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 15
-  },
-  "minecraft:yellow_bed[facing=east,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 7
-  },
-  "minecraft:yellow_bed[facing=east,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 11
-  },
-  "minecraft:yellow_bed[facing=east,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 3
-  },
-  "minecraft:lime_bed[facing=north,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 14
-  },
-  "minecraft:lime_bed[facing=north,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 6
-  },
-  "minecraft:lime_bed[facing=north,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 10
-  },
-  "minecraft:lime_bed[facing=north,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 2
-  },
-  "minecraft:lime_bed[facing=south,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 12
-  },
-  "minecraft:lime_bed[facing=south,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 4
-  },
-  "minecraft:lime_bed[facing=south,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 8
-  },
-  "minecraft:lime_bed[facing=south,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 0
-  },
-  "minecraft:lime_bed[facing=west,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 13
-  },
-  "minecraft:lime_bed[facing=west,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_bed[facing=west,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 9
-  },
-  "minecraft:lime_bed[facing=west,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 1
-  },
-  "minecraft:lime_bed[facing=east,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 15
-  },
-  "minecraft:lime_bed[facing=east,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 7
-  },
-  "minecraft:lime_bed[facing=east,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 11
-  },
-  "minecraft:lime_bed[facing=east,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 3
-  },
-  "minecraft:pink_bed[facing=north,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 14
-  },
-  "minecraft:pink_bed[facing=north,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_bed[facing=north,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 10
-  },
-  "minecraft:pink_bed[facing=north,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 2
-  },
-  "minecraft:pink_bed[facing=south,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 12
-  },
-  "minecraft:pink_bed[facing=south,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 4
-  },
-  "minecraft:pink_bed[facing=south,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 8
-  },
-  "minecraft:pink_bed[facing=south,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 0
-  },
-  "minecraft:pink_bed[facing=west,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 13
-  },
-  "minecraft:pink_bed[facing=west,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 5
-  },
-  "minecraft:pink_bed[facing=west,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 9
-  },
-  "minecraft:pink_bed[facing=west,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 1
-  },
-  "minecraft:pink_bed[facing=east,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 15
-  },
-  "minecraft:pink_bed[facing=east,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 7
-  },
-  "minecraft:pink_bed[facing=east,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 11
-  },
-  "minecraft:pink_bed[facing=east,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 3
-  },
-  "minecraft:gray_bed[facing=north,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 14
-  },
-  "minecraft:gray_bed[facing=north,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 6
-  },
-  "minecraft:gray_bed[facing=north,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 10
-  },
-  "minecraft:gray_bed[facing=north,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 2
-  },
-  "minecraft:gray_bed[facing=south,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 12
-  },
-  "minecraft:gray_bed[facing=south,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 4
-  },
-  "minecraft:gray_bed[facing=south,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 8
-  },
-  "minecraft:gray_bed[facing=south,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 0
-  },
-  "minecraft:gray_bed[facing=west,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 13
-  },
-  "minecraft:gray_bed[facing=west,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 5
-  },
-  "minecraft:gray_bed[facing=west,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 9
-  },
-  "minecraft:gray_bed[facing=west,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 1
-  },
-  "minecraft:gray_bed[facing=east,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 15
-  },
-  "minecraft:gray_bed[facing=east,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_bed[facing=east,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 11
-  },
-  "minecraft:gray_bed[facing=east,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 3
-  },
-  "minecraft:light_gray_bed[facing=north,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 14
-  },
-  "minecraft:light_gray_bed[facing=north,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 6
-  },
-  "minecraft:light_gray_bed[facing=north,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 10
-  },
-  "minecraft:light_gray_bed[facing=north,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 2
-  },
-  "minecraft:light_gray_bed[facing=south,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 12
-  },
-  "minecraft:light_gray_bed[facing=south,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 4
-  },
-  "minecraft:light_gray_bed[facing=south,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_bed[facing=south,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 0
-  },
-  "minecraft:light_gray_bed[facing=west,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 13
-  },
-  "minecraft:light_gray_bed[facing=west,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 5
-  },
-  "minecraft:light_gray_bed[facing=west,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 9
-  },
-  "minecraft:light_gray_bed[facing=west,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 1
-  },
-  "minecraft:light_gray_bed[facing=east,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 15
-  },
-  "minecraft:light_gray_bed[facing=east,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 7
-  },
-  "minecraft:light_gray_bed[facing=east,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 11
-  },
-  "minecraft:light_gray_bed[facing=east,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 3
-  },
-  "minecraft:cyan_bed[facing=north,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 14
-  },
-  "minecraft:cyan_bed[facing=north,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 6
-  },
-  "minecraft:cyan_bed[facing=north,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 10
-  },
-  "minecraft:cyan_bed[facing=north,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 2
-  },
-  "minecraft:cyan_bed[facing=south,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 12
-  },
-  "minecraft:cyan_bed[facing=south,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 4
-  },
-  "minecraft:cyan_bed[facing=south,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 8
-  },
-  "minecraft:cyan_bed[facing=south,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 0
-  },
-  "minecraft:cyan_bed[facing=west,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 13
-  },
-  "minecraft:cyan_bed[facing=west,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 5
-  },
-  "minecraft:cyan_bed[facing=west,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_bed[facing=west,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 1
-  },
-  "minecraft:cyan_bed[facing=east,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 15
-  },
-  "minecraft:cyan_bed[facing=east,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 7
-  },
-  "minecraft:cyan_bed[facing=east,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 11
-  },
-  "minecraft:cyan_bed[facing=east,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 3
-  },
-  "minecraft:purple_bed[facing=north,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 14
-  },
-  "minecraft:purple_bed[facing=north,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 6
-  },
-  "minecraft:purple_bed[facing=north,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_bed[facing=north,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 2
-  },
-  "minecraft:purple_bed[facing=south,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 12
-  },
-  "minecraft:purple_bed[facing=south,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 4
-  },
-  "minecraft:purple_bed[facing=south,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 8
-  },
-  "minecraft:purple_bed[facing=south,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 0
-  },
-  "minecraft:purple_bed[facing=west,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 13
-  },
-  "minecraft:purple_bed[facing=west,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 5
-  },
-  "minecraft:purple_bed[facing=west,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 9
-  },
-  "minecraft:purple_bed[facing=west,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 1
-  },
-  "minecraft:purple_bed[facing=east,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 15
-  },
-  "minecraft:purple_bed[facing=east,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 7
-  },
-  "minecraft:purple_bed[facing=east,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 11
-  },
-  "minecraft:purple_bed[facing=east,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 3
-  },
-  "minecraft:blue_bed[facing=north,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 14
-  },
-  "minecraft:blue_bed[facing=north,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 6
-  },
-  "minecraft:blue_bed[facing=north,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 10
-  },
-  "minecraft:blue_bed[facing=north,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 2
-  },
-  "minecraft:blue_bed[facing=south,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 12
-  },
-  "minecraft:blue_bed[facing=south,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 4
-  },
-  "minecraft:blue_bed[facing=south,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 8
-  },
-  "minecraft:blue_bed[facing=south,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 0
-  },
-  "minecraft:blue_bed[facing=west,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 13
-  },
-  "minecraft:blue_bed[facing=west,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 5
-  },
-  "minecraft:blue_bed[facing=west,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 9
-  },
-  "minecraft:blue_bed[facing=west,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 1
-  },
-  "minecraft:blue_bed[facing=east,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 15
-  },
-  "minecraft:blue_bed[facing=east,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 7
-  },
-  "minecraft:blue_bed[facing=east,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_bed[facing=east,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 3
-  },
-  "minecraft:brown_bed[facing=north,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_bed[facing=north,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 6
-  },
-  "minecraft:brown_bed[facing=north,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 10
-  },
-  "minecraft:brown_bed[facing=north,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 2
-  },
-  "minecraft:brown_bed[facing=south,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_bed[facing=south,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 4
-  },
-  "minecraft:brown_bed[facing=south,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 8
-  },
-  "minecraft:brown_bed[facing=south,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 0
-  },
-  "minecraft:brown_bed[facing=west,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 13
-  },
-  "minecraft:brown_bed[facing=west,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 5
-  },
-  "minecraft:brown_bed[facing=west,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 9
-  },
-  "minecraft:brown_bed[facing=west,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 1
-  },
-  "minecraft:brown_bed[facing=east,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 15
-  },
-  "minecraft:brown_bed[facing=east,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 7
-  },
-  "minecraft:brown_bed[facing=east,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 11
-  },
-  "minecraft:brown_bed[facing=east,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 3
-  },
-  "minecraft:green_bed[facing=north,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 14
-  },
-  "minecraft:green_bed[facing=north,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 6
-  },
-  "minecraft:green_bed[facing=north,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 10
-  },
-  "minecraft:green_bed[facing=north,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 2
-  },
-  "minecraft:green_bed[facing=south,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 12
-  },
-  "minecraft:green_bed[facing=south,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 4
-  },
-  "minecraft:green_bed[facing=south,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 8
-  },
-  "minecraft:green_bed[facing=south,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 0
-  },
-  "minecraft:green_bed[facing=west,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 13
-  },
-  "minecraft:green_bed[facing=west,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 5
-  },
-  "minecraft:green_bed[facing=west,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 9
-  },
-  "minecraft:green_bed[facing=west,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 1
-  },
-  "minecraft:green_bed[facing=east,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 15
-  },
-  "minecraft:green_bed[facing=east,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 7
-  },
-  "minecraft:green_bed[facing=east,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 11
-  },
-  "minecraft:green_bed[facing=east,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 3
-  },
-  "minecraft:red_bed[facing=north,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 14
-  },
-  "minecraft:red_bed[facing=north,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 6
-  },
-  "minecraft:red_bed[facing=north,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 10
-  },
-  "minecraft:red_bed[facing=north,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 2
-  },
-  "minecraft:red_bed[facing=south,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 12
-  },
-  "minecraft:red_bed[facing=south,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 4
-  },
-  "minecraft:red_bed[facing=south,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 8
-  },
-  "minecraft:red_bed[facing=south,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 0
-  },
-  "minecraft:red_bed[facing=west,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 13
-  },
-  "minecraft:red_bed[facing=west,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 5
-  },
-  "minecraft:red_bed[facing=west,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 9
-  },
-  "minecraft:red_bed[facing=west,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 1
-  },
-  "minecraft:red_bed[facing=east,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 15
-  },
-  "minecraft:red_bed[facing=east,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 7
-  },
-  "minecraft:red_bed[facing=east,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 11
-  },
-  "minecraft:red_bed[facing=east,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 3
-  },
-  "minecraft:black_bed[facing=north,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 14
-  },
-  "minecraft:black_bed[facing=north,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 6
-  },
-  "minecraft:black_bed[facing=north,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 10
-  },
-  "minecraft:black_bed[facing=north,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 2
-  },
-  "minecraft:black_bed[facing=south,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 12
-  },
-  "minecraft:black_bed[facing=south,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 4
-  },
-  "minecraft:black_bed[facing=south,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 8
-  },
-  "minecraft:black_bed[facing=south,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 0
-  },
-  "minecraft:black_bed[facing=west,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 13
-  },
-  "minecraft:black_bed[facing=west,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 5
-  },
-  "minecraft:black_bed[facing=west,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 9
-  },
-  "minecraft:black_bed[facing=west,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 1
-  },
-  "minecraft:black_bed[facing=east,occupied=true,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 15
-  },
-  "minecraft:black_bed[facing=east,occupied=true,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 7
-  },
-  "minecraft:black_bed[facing=east,occupied=false,part=head]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 11
-  },
-  "minecraft:black_bed[facing=east,occupied=false,part=foot]": {
-    "bedrock_identifier": "minecraft:bed",
-    "bedrock_data": 3
-  },
-  "minecraft:powered_rail[powered=true,shape=north_south]": {
-    "bedrock_identifier": "minecraft:golden_rail",
-    "bedrock_data": 8
-  },
-  "minecraft:powered_rail[powered=true,shape=east_west]": {
-    "bedrock_identifier": "minecraft:golden_rail",
-    "bedrock_data": 9
-  },
-  "minecraft:powered_rail[powered=true,shape=ascending_east]": {
-    "bedrock_identifier": "minecraft:golden_rail",
-    "bedrock_data": 10
-  },
-  "minecraft:powered_rail[powered=true,shape=ascending_west]": {
-    "bedrock_identifier": "minecraft:golden_rail",
-    "bedrock_data": 11
-  },
-  "minecraft:powered_rail[powered=true,shape=ascending_north]": {
-    "bedrock_identifier": "minecraft:golden_rail",
-    "bedrock_data": 12
-  },
-  "minecraft:powered_rail[powered=true,shape=ascending_south]": {
-    "bedrock_identifier": "minecraft:golden_rail",
-    "bedrock_data": 13
-  },
-  "minecraft:powered_rail[powered=false,shape=north_south]": {
-    "bedrock_identifier": "minecraft:golden_rail",
-    "bedrock_data": 0
-  },
-  "minecraft:powered_rail[powered=false,shape=east_west]": {
-    "bedrock_identifier": "minecraft:golden_rail",
-    "bedrock_data": 1
-  },
-  "minecraft:powered_rail[powered=false,shape=ascending_east]": {
-    "bedrock_identifier": "minecraft:golden_rail",
-    "bedrock_data": 2
-  },
-  "minecraft:powered_rail[powered=false,shape=ascending_west]": {
-    "bedrock_identifier": "minecraft:golden_rail",
-    "bedrock_data": 3
-  },
-  "minecraft:powered_rail[powered=false,shape=ascending_north]": {
-    "bedrock_identifier": "minecraft:golden_rail",
-    "bedrock_data": 4
-  },
-  "minecraft:powered_rail[powered=false,shape=ascending_south]": {
-    "bedrock_identifier": "minecraft:golden_rail",
-    "bedrock_data": 5
-  },
-  "minecraft:detector_rail[powered=true,shape=north_south]": {
-    "bedrock_identifier": "minecraft:detector_rail",
-    "bedrock_data": 8
-  },
-  "minecraft:detector_rail[powered=true,shape=east_west]": {
-    "bedrock_identifier": "minecraft:detector_rail",
-    "bedrock_data": 9
-  },
-  "minecraft:detector_rail[powered=true,shape=ascending_east]": {
-    "bedrock_identifier": "minecraft:detector_rail",
-    "bedrock_data": 10
-  },
-  "minecraft:detector_rail[powered=true,shape=ascending_west]": {
-    "bedrock_identifier": "minecraft:detector_rail",
-    "bedrock_data": 11
-  },
-  "minecraft:detector_rail[powered=true,shape=ascending_north]": {
-    "bedrock_identifier": "minecraft:detector_rail",
-    "bedrock_data": 12
-  },
-  "minecraft:detector_rail[powered=true,shape=ascending_south]": {
-    "bedrock_identifier": "minecraft:detector_rail",
-    "bedrock_data": 13
-  },
-  "minecraft:detector_rail[powered=false,shape=north_south]": {
-    "bedrock_identifier": "minecraft:detector_rail",
-    "bedrock_data": 0
-  },
-  "minecraft:detector_rail[powered=false,shape=east_west]": {
-    "bedrock_identifier": "minecraft:detector_rail",
-    "bedrock_data": 1
-  },
-  "minecraft:detector_rail[powered=false,shape=ascending_east]": {
-    "bedrock_identifier": "minecraft:detector_rail",
-    "bedrock_data": 2
-  },
-  "minecraft:detector_rail[powered=false,shape=ascending_west]": {
-    "bedrock_identifier": "minecraft:detector_rail",
-    "bedrock_data": 3
-  },
-  "minecraft:detector_rail[powered=false,shape=ascending_north]": {
-    "bedrock_identifier": "minecraft:detector_rail",
-    "bedrock_data": 4
-  },
-  "minecraft:detector_rail[powered=false,shape=ascending_south]": {
-    "bedrock_identifier": "minecraft:detector_rail",
-    "bedrock_data": 5
-  },
-  "minecraft:sticky_piston[extended=true,facing=north]": {
-    "bedrock_identifier": "minecraft:sticky_piston",
-    "bedrock_data": 3
-  },
-  "minecraft:sticky_piston[extended=true,facing=east]": {
-    "bedrock_identifier": "minecraft:sticky_piston",
-    "bedrock_data": 4
-  },
-  "minecraft:sticky_piston[extended=true,facing=south]": {
-    "bedrock_identifier": "minecraft:sticky_piston",
-    "bedrock_data": 2
-  },
-  "minecraft:sticky_piston[extended=true,facing=west]": {
-    "bedrock_identifier": "minecraft:sticky_piston",
-    "bedrock_data": 5
-  },
-  "minecraft:sticky_piston[extended=true,facing=up]": {
-    "bedrock_identifier": "minecraft:sticky_piston",
-    "bedrock_data": 1
-  },
-  "minecraft:sticky_piston[extended=true,facing=down]": {
-    "bedrock_identifier": "minecraft:sticky_piston",
-    "bedrock_data": 0
-  },
-  "minecraft:sticky_piston[extended=false,facing=north]": {
-    "bedrock_identifier": "minecraft:sticky_piston",
-    "bedrock_data": 3
-  },
-  "minecraft:sticky_piston[extended=false,facing=east]": {
-    "bedrock_identifier": "minecraft:sticky_piston",
-    "bedrock_data": 4
-  },
-  "minecraft:sticky_piston[extended=false,facing=south]": {
-    "bedrock_identifier": "minecraft:sticky_piston",
-    "bedrock_data": 2
-  },
-  "minecraft:sticky_piston[extended=false,facing=west]": {
-    "bedrock_identifier": "minecraft:sticky_piston",
-    "bedrock_data": 5
-  },
-  "minecraft:sticky_piston[extended=false,facing=up]": {
-    "bedrock_identifier": "minecraft:sticky_piston",
-    "bedrock_data": 1
-  },
-  "minecraft:sticky_piston[extended=false,facing=down]": {
-    "bedrock_identifier": "minecraft:sticky_piston",
-    "bedrock_data": 0
-  },
-  "minecraft:cobweb": {
-    "bedrock_identifier": "minecraft:web",
-    "bedrock_data": 0
-  },
-  "minecraft:grass": {
-    "bedrock_identifier": "minecraft:tallgrass",
-    "bedrock_data": 1
-  },
-  "minecraft:fern": {
-    "bedrock_identifier": "minecraft:tallgrass",
-    "bedrock_data": 2
-  },
-  "minecraft:dead_bush": {
-    "bedrock_identifier": "minecraft:deadbush",
-    "bedrock_data": 0
-  },
-  "minecraft:seagrass": {
-    "bedrock_identifier": "minecraft:seagrass",
-    "bedrock_data": 0
-  },
-  "minecraft:tall_seagrass[half=upper]": {
-    "bedrock_identifier": "minecraft:seagrass",
-    "bedrock_data": 1
-  },
-  "minecraft:tall_seagrass[half=lower]": {
-    "bedrock_identifier": "minecraft:seagrass",
-    "bedrock_data": 2
-  },
-  "minecraft:piston[extended=true,facing=north]": {
-    "bedrock_identifier": "minecraft:piston",
-    "bedrock_data": 3
-  },
-  "minecraft:piston[extended=true,facing=east]": {
-    "bedrock_identifier": "minecraft:piston",
-    "bedrock_data": 4
-  },
-  "minecraft:piston[extended=true,facing=south]": {
-    "bedrock_identifier": "minecraft:piston",
-    "bedrock_data": 2
-  },
-  "minecraft:piston[extended=true,facing=west]": {
-    "bedrock_identifier": "minecraft:piston",
-    "bedrock_data": 5
-  },
-  "minecraft:piston[extended=true,facing=up]": {
-    "bedrock_identifier": "minecraft:piston",
-    "bedrock_data": 1
-  },
-  "minecraft:piston[extended=true,facing=down]": {
-    "bedrock_identifier": "minecraft:piston",
-    "bedrock_data": 0
-  },
-  "minecraft:piston[extended=false,facing=north]": {
-    "bedrock_identifier": "minecraft:piston",
-    "bedrock_data": 3
-  },
-  "minecraft:piston[extended=false,facing=east]": {
-    "bedrock_identifier": "minecraft:piston",
-    "bedrock_data": 4
-  },
-  "minecraft:piston[extended=false,facing=south]": {
-    "bedrock_identifier": "minecraft:piston",
-    "bedrock_data": 2
-  },
-  "minecraft:piston[extended=false,facing=west]": {
-    "bedrock_identifier": "minecraft:piston",
-    "bedrock_data": 5
-  },
-  "minecraft:piston[extended=false,facing=up]": {
-    "bedrock_identifier": "minecraft:piston",
-    "bedrock_data": 1
-  },
-  "minecraft:piston[extended=false,facing=down]": {
-    "bedrock_identifier": "minecraft:piston",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=north,short=true,type=normal]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=north,short=true,type=sticky]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=north,short=false,type=normal]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=north,short=false,type=sticky]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=east,short=true,type=normal]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=east,short=true,type=sticky]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=east,short=false,type=normal]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=east,short=false,type=sticky]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=south,short=true,type=normal]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=south,short=true,type=sticky]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=south,short=false,type=normal]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=south,short=false,type=sticky]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=west,short=true,type=normal]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=west,short=true,type=sticky]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=west,short=false,type=normal]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=west,short=false,type=sticky]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=up,short=true,type=normal]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=up,short=true,type=sticky]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=up,short=false,type=normal]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=up,short=false,type=sticky]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=down,short=true,type=normal]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=down,short=true,type=sticky]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=down,short=false,type=normal]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:piston_head[facing=down,short=false,type=sticky]": {
-    "bedrock_identifier": "minecraft:pistonArmCollision",
-    "bedrock_data": 0
-  },
-  "minecraft:white_wool": {
-    "bedrock_identifier": "minecraft:wool",
-    "bedrock_data": 0
-  },
-  "minecraft:orange_wool": {
-    "bedrock_identifier": "minecraft:wool",
-    "bedrock_data": 1
-  },
-  "minecraft:magenta_wool": {
-    "bedrock_identifier": "minecraft:wool",
-    "bedrock_data": 2
-  },
-  "minecraft:light_blue_wool": {
-    "bedrock_identifier": "minecraft:wool",
-    "bedrock_data": 3
-  },
-  "minecraft:yellow_wool": {
-    "bedrock_identifier": "minecraft:wool",
-    "bedrock_data": 4
-  },
-  "minecraft:lime_wool": {
-    "bedrock_identifier": "minecraft:wool",
-    "bedrock_data": 5
-  },
-  "minecraft:pink_wool": {
-    "bedrock_identifier": "minecraft:wool",
-    "bedrock_data": 6
-  },
-  "minecraft:gray_wool": {
-    "bedrock_identifier": "minecraft:wool",
-    "bedrock_data": 7
-  },
-  "minecraft:light_gray_wool": {
-    "bedrock_identifier": "minecraft:wool",
-    "bedrock_data": 8
-  },
-  "minecraft:cyan_wool": {
-    "bedrock_identifier": "minecraft:wool",
-    "bedrock_data": 9
-  },
-  "minecraft:purple_wool": {
-    "bedrock_identifier": "minecraft:wool",
-    "bedrock_data": 10
-  },
-  "minecraft:blue_wool": {
-    "bedrock_identifier": "minecraft:wool",
-    "bedrock_data": 11
-  },
-  "minecraft:brown_wool": {
-    "bedrock_identifier": "minecraft:wool",
-    "bedrock_data": 12
-  },
-  "minecraft:green_wool": {
-    "bedrock_identifier": "minecraft:wool",
-    "bedrock_data": 13
-  },
-  "minecraft:red_wool": {
-    "bedrock_identifier": "minecraft:wool",
-    "bedrock_data": 14
-  },
-  "minecraft:black_wool": {
-    "bedrock_identifier": "minecraft:wool",
-    "bedrock_data": 15
-  },
-  "minecraft:moving_piston[facing=north,type=normal]": {
-    "bedrock_identifier": "minecraft:movingBlock",
-    "bedrock_data": 0
-  },
-  "minecraft:moving_piston[facing=north,type=sticky]": {
-    "bedrock_identifier": "minecraft:movingBlock",
-    "bedrock_data": 0
-  },
-  "minecraft:moving_piston[facing=east,type=normal]": {
-    "bedrock_identifier": "minecraft:movingBlock",
-    "bedrock_data": 0
-  },
-  "minecraft:moving_piston[facing=east,type=sticky]": {
-    "bedrock_identifier": "minecraft:movingBlock",
-    "bedrock_data": 0
-  },
-  "minecraft:moving_piston[facing=south,type=normal]": {
-    "bedrock_identifier": "minecraft:movingBlock",
-    "bedrock_data": 0
-  },
-  "minecraft:moving_piston[facing=south,type=sticky]": {
-    "bedrock_identifier": "minecraft:movingBlock",
-    "bedrock_data": 0
-  },
-  "minecraft:moving_piston[facing=west,type=normal]": {
-    "bedrock_identifier": "minecraft:movingBlock",
-    "bedrock_data": 0
-  },
-  "minecraft:moving_piston[facing=west,type=sticky]": {
-    "bedrock_identifier": "minecraft:movingBlock",
-    "bedrock_data": 0
-  },
-  "minecraft:moving_piston[facing=up,type=normal]": {
-    "bedrock_identifier": "minecraft:movingBlock",
-    "bedrock_data": 0
-  },
-  "minecraft:moving_piston[facing=up,type=sticky]": {
-    "bedrock_identifier": "minecraft:movingBlock",
-    "bedrock_data": 0
-  },
-  "minecraft:moving_piston[facing=down,type=normal]": {
-    "bedrock_identifier": "minecraft:movingBlock",
-    "bedrock_data": 0
-  },
-  "minecraft:moving_piston[facing=down,type=sticky]": {
-    "bedrock_identifier": "minecraft:movingBlock",
-    "bedrock_data": 0
-  },
-  "minecraft:dandelion": {
-    "bedrock_identifier": "minecraft:yellow_flower",
-    "bedrock_data": 0
-  },
-  "minecraft:poppy": {
-    "bedrock_identifier": "minecraft:red_flower",
-    "bedrock_data": 0
-  },
-  "minecraft:blue_orchid": {
-    "bedrock_identifier": "minecraft:red_flower",
-    "bedrock_data": 1
-  },
-  "minecraft:allium": {
-    "bedrock_identifier": "minecraft:red_flower",
-    "bedrock_data": 2
-  },
-  "minecraft:azure_bluet": {
-    "bedrock_identifier": "minecraft:red_flower",
-    "bedrock_data": 3
-  },
-  "minecraft:red_tulip": {
-    "bedrock_identifier": "minecraft:red_flower",
-    "bedrock_data": 4
-  },
-  "minecraft:orange_tulip": {
-    "bedrock_identifier": "minecraft:red_flower",
-    "bedrock_data": 5
-  },
-  "minecraft:white_tulip": {
-    "bedrock_identifier": "minecraft:red_flower",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_tulip": {
-    "bedrock_identifier": "minecraft:red_flower",
-    "bedrock_data": 7
-  },
-  "minecraft:oxeye_daisy": {
-    "bedrock_identifier": "minecraft:red_flower",
-    "bedrock_data": 8
-  },
-  "minecraft:cornflower": {
-    "bedrock_identifier": "minecraft:red_flower",
-    "bedrock_data": 9
-  },
-  "minecraft:wither_rose": {
-    "bedrock_identifier": "minecraft:wither_rose",
-    "bedrock_data": 0
-  },
-  "minecraft:lily_of_the_valley": {
-    "bedrock_identifier": "minecraft:red_flower",
-    "bedrock_data": 10
-  },
-  "minecraft:brown_mushroom": {
-    "bedrock_identifier": "minecraft:brown_mushroom",
-    "bedrock_data": 0
-  },
-  "minecraft:red_mushroom": {
-    "bedrock_identifier": "minecraft:red_mushroom",
-    "bedrock_data": 0
-  },
-  "minecraft:gold_block": {
-    "bedrock_identifier": "minecraft:gold_block",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_block": {
-    "bedrock_identifier": "minecraft:iron_block",
-    "bedrock_data": 0
-  },
-  "minecraft:bricks": {
-    "bedrock_identifier": "minecraft:brick_block",
-    "bedrock_data": 0
-  },
-  "minecraft:tnt[unstable=true]": {
-    "bedrock_identifier": "minecraft:tnt",
-    "bedrock_data": 2
-  },
-  "minecraft:tnt[unstable=false]": {
-    "bedrock_identifier": "minecraft:tnt",
-    "bedrock_data": 0
-  },
-  "minecraft:bookshelf": {
-    "bedrock_identifier": "minecraft:bookshelf",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_cobblestone": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone",
-    "bedrock_data": 0
-  },
-  "minecraft:obsidian": {
-    "bedrock_identifier": "minecraft:obsidian",
-    "bedrock_data": 0
-  },
-  "minecraft:torch": {
-    "bedrock_identifier": "minecraft:torch",
-    "bedrock_data": 5
-  },
-  "minecraft:wall_torch[facing=north]": {
-    "bedrock_identifier": "minecraft:torch",
-    "bedrock_data": 4
-  },
-  "minecraft:wall_torch[facing=south]": {
-    "bedrock_identifier": "minecraft:torch",
-    "bedrock_data": 3
-  },
-  "minecraft:wall_torch[facing=west]": {
-    "bedrock_identifier": "minecraft:torch",
-    "bedrock_data": 2
-  },
-  "minecraft:wall_torch[facing=east]": {
-    "bedrock_identifier": "minecraft:torch",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=0,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=0,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 0
-  },
-  "minecraft:fire[age=1,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=1,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 1
-  },
-  "minecraft:fire[age=2,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=2,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 2
-  },
-  "minecraft:fire[age=3,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=3,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 3
-  },
-  "minecraft:fire[age=4,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=4,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 4
-  },
-  "minecraft:fire[age=5,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=5,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 5
-  },
-  "minecraft:fire[age=6,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=6,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 6
-  },
-  "minecraft:fire[age=7,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=7,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 7
-  },
-  "minecraft:fire[age=8,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=8,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 8
-  },
-  "minecraft:fire[age=9,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=9,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 9
-  },
-  "minecraft:fire[age=10,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=10,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 10
-  },
-  "minecraft:fire[age=11,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=11,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 11
-  },
-  "minecraft:fire[age=12,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=12,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 12
-  },
-  "minecraft:fire[age=13,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=13,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 13
-  },
-  "minecraft:fire[age=14,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=14,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 14
-  },
-  "minecraft:fire[age=15,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:fire[age=15,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:fire",
-    "bedrock_data": 15
-  },
-  "minecraft:spawner": {
-    "bedrock_identifier": "minecraft:mob_spawner",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:oak_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:chest[facing=north,type=single,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 2
-  },
-  "minecraft:chest[facing=north,type=single,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 2
-  },
-  "minecraft:chest[facing=north,type=left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 2
-  },
-  "minecraft:chest[facing=north,type=left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 2
-  },
-  "minecraft:chest[facing=north,type=right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 2
-  },
-  "minecraft:chest[facing=north,type=right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 2
-  },
-  "minecraft:chest[facing=south,type=single,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 3
-  },
-  "minecraft:chest[facing=south,type=single,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 3
-  },
-  "minecraft:chest[facing=south,type=left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 3
-  },
-  "minecraft:chest[facing=south,type=left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 3
-  },
-  "minecraft:chest[facing=south,type=right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 3
-  },
-  "minecraft:chest[facing=south,type=right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 3
-  },
-  "minecraft:chest[facing=west,type=single,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 4
-  },
-  "minecraft:chest[facing=west,type=single,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 4
-  },
-  "minecraft:chest[facing=west,type=left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 4
-  },
-  "minecraft:chest[facing=west,type=left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 4
-  },
-  "minecraft:chest[facing=west,type=right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 4
-  },
-  "minecraft:chest[facing=west,type=right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 4
-  },
-  "minecraft:chest[facing=east,type=single,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 5
-  },
-  "minecraft:chest[facing=east,type=single,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 5
-  },
-  "minecraft:chest[facing=east,type=left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 5
-  },
-  "minecraft:chest[facing=east,type=left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 5
-  },
-  "minecraft:chest[facing=east,type=right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 5
-  },
-  "minecraft:chest[facing=east,type=right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:chest",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=0,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=0,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=0,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=0,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=0,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=0,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=0,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=0,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=0,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=1,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=1,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=1,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=1,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=1,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=1,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=1,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=1,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=1,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=2,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=2,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=2,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=2,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=2,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=2,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=2,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=2,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=2,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=3,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=3,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=3,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=3,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=3,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=3,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=3,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=3,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=3,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=4,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=4,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=4,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=4,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=4,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=4,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=4,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=4,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=4,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=5,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=5,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=5,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=5,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=5,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=5,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=5,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=5,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=5,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=6,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=6,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=6,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=6,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=6,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=6,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=6,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=6,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=6,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=7,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=7,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=7,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=7,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=7,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=7,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=7,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=7,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=7,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=8,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=8,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=8,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=8,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=8,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=8,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=8,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=8,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=8,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=9,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=9,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=9,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=9,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=9,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=9,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=9,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=9,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=9,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=10,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=10,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=10,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=10,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=10,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=10,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=10,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=10,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=10,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=11,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=11,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=11,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=11,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=11,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=11,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=11,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=11,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=11,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=12,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=12,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=12,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=12,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=12,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=12,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=12,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=12,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=12,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=13,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=13,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=13,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=13,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=13,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=13,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=13,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=13,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=13,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=14,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=14,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=14,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=14,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=14,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=14,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=14,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=14,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=14,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=15,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=15,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=15,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=15,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=15,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=15,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=15,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=15,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=up,power=15,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=0,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=0,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=0,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=0,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=0,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=0,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=0,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=0,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=0,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=1,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=1,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=1,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=1,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=1,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=1,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=1,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=1,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=1,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=2,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=2,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=2,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=2,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=2,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=2,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=2,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=2,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=2,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=3,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=3,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=3,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=3,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=3,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=3,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=3,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=3,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=3,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=4,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=4,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=4,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=4,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=4,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=4,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=4,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=4,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=4,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=5,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=5,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=5,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=5,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=5,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=5,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=5,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=5,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=5,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=6,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=6,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=6,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=6,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=6,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=6,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=6,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=6,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=6,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=7,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=7,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=7,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=7,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=7,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=7,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=7,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=7,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=7,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=8,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=8,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=8,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=8,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=8,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=8,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=8,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=8,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=8,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=9,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=9,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=9,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=9,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=9,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=9,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=9,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=9,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=9,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=10,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=10,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=10,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=10,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=10,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=10,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=10,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=10,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=10,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=11,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=11,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=11,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=11,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=11,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=11,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=11,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=11,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=11,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=12,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=12,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=12,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=12,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=12,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=12,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=12,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=12,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=12,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=13,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=13,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=13,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=13,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=13,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=13,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=13,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=13,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=13,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=14,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=14,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=14,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=14,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=14,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=14,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=14,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=14,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=14,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=15,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=15,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=15,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=15,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=15,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=15,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=15,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=15,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=side,power=15,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=0,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=0,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=0,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=0,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=0,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=0,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=0,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=0,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=0,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=1,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=1,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=1,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=1,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=1,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=1,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=1,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=1,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=1,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=2,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=2,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=2,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=2,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=2,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=2,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=2,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=2,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=2,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=3,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=3,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=3,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=3,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=3,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=3,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=3,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=3,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=3,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=4,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=4,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=4,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=4,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=4,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=4,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=4,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=4,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=4,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=5,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=5,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=5,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=5,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=5,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=5,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=5,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=5,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=5,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=6,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=6,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=6,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=6,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=6,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=6,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=6,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=6,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=6,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=7,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=7,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=7,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=7,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=7,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=7,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=7,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=7,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=7,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=8,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=8,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=8,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=8,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=8,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=8,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=8,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=8,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=8,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=9,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=9,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=9,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=9,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=9,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=9,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=9,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=9,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=9,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=10,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=10,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=10,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=10,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=10,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=10,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=10,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=10,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=10,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=11,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=11,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=11,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=11,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=11,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=11,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=11,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=11,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=11,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=12,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=12,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=12,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=12,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=12,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=12,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=12,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=12,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=12,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=13,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=13,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=13,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=13,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=13,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=13,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=13,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=13,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=13,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=14,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=14,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=14,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=14,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=14,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=14,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=14,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=14,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=14,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=15,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=15,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=15,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=15,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=15,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=15,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=15,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=15,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=up,north=none,power=15,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=0,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=0,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=0,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=0,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=0,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=0,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=0,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=0,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=0,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=1,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=1,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=1,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=1,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=1,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=1,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=1,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=1,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=1,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=2,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=2,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=2,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=2,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=2,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=2,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=2,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=2,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=2,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=3,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=3,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=3,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=3,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=3,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=3,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=3,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=3,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=3,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=4,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=4,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=4,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=4,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=4,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=4,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=4,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=4,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=4,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=5,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=5,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=5,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=5,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=5,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=5,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=5,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=5,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=5,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=6,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=6,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=6,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=6,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=6,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=6,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=6,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=6,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=6,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=7,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=7,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=7,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=7,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=7,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=7,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=7,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=7,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=7,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=8,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=8,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=8,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=8,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=8,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=8,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=8,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=8,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=8,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=9,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=9,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=9,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=9,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=9,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=9,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=9,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=9,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=9,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=10,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=10,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=10,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=10,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=10,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=10,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=10,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=10,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=10,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=11,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=11,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=11,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=11,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=11,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=11,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=11,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=11,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=11,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=12,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=12,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=12,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=12,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=12,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=12,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=12,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=12,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=12,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=13,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=13,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=13,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=13,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=13,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=13,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=13,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=13,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=13,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=14,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=14,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=14,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=14,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=14,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=14,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=14,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=14,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=14,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=15,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=15,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=15,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=15,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=15,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=15,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=15,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=15,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=up,power=15,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=0,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=0,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=0,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=0,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=0,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=0,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=0,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=0,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=0,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=1,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=1,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=1,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=1,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=1,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=1,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=1,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=1,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=1,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=2,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=2,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=2,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=2,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=2,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=2,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=2,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=2,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=2,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=3,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=3,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=3,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=3,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=3,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=3,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=3,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=3,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=3,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=4,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=4,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=4,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=4,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=4,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=4,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=4,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=4,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=4,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=5,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=5,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=5,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=5,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=5,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=5,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=5,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=5,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=5,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=6,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=6,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=6,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=6,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=6,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=6,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=6,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=6,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=6,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=7,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=7,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=7,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=7,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=7,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=7,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=7,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=7,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=7,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=8,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=8,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=8,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=8,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=8,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=8,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=8,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=8,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=8,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=9,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=9,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=9,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=9,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=9,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=9,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=9,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=9,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=9,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=10,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=10,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=10,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=10,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=10,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=10,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=10,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=10,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=10,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=11,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=11,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=11,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=11,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=11,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=11,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=11,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=11,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=11,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=12,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=12,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=12,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=12,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=12,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=12,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=12,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=12,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=12,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=13,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=13,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=13,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=13,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=13,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=13,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=13,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=13,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=13,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=14,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=14,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=14,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=14,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=14,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=14,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=14,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=14,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=14,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=15,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=15,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=15,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=15,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=15,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=15,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=15,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=15,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=side,power=15,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=0,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=0,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=0,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=0,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=0,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=0,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=0,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=0,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=0,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=1,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=1,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=1,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=1,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=1,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=1,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=1,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=1,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=1,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=2,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=2,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=2,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=2,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=2,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=2,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=2,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=2,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=2,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=3,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=3,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=3,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=3,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=3,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=3,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=3,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=3,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=3,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=4,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=4,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=4,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=4,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=4,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=4,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=4,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=4,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=4,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=5,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=5,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=5,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=5,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=5,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=5,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=5,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=5,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=5,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=6,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=6,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=6,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=6,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=6,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=6,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=6,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=6,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=6,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=7,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=7,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=7,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=7,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=7,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=7,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=7,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=7,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=7,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=8,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=8,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=8,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=8,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=8,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=8,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=8,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=8,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=8,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=9,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=9,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=9,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=9,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=9,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=9,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=9,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=9,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=9,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=10,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=10,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=10,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=10,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=10,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=10,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=10,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=10,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=10,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=11,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=11,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=11,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=11,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=11,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=11,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=11,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=11,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=11,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=12,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=12,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=12,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=12,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=12,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=12,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=12,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=12,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=12,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=13,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=13,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=13,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=13,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=13,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=13,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=13,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=13,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=13,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=14,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=14,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=14,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=14,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=14,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=14,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=14,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=14,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=14,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=15,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=15,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=15,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=15,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=15,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=15,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=15,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=15,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=side,north=none,power=15,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=0,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=0,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=0,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=0,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=0,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=0,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=0,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=0,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=0,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=1,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=1,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=1,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=1,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=1,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=1,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=1,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=1,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=1,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=2,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=2,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=2,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=2,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=2,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=2,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=2,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=2,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=2,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=3,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=3,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=3,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=3,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=3,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=3,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=3,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=3,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=3,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=4,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=4,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=4,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=4,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=4,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=4,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=4,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=4,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=4,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=5,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=5,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=5,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=5,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=5,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=5,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=5,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=5,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=5,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=6,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=6,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=6,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=6,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=6,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=6,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=6,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=6,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=6,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=7,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=7,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=7,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=7,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=7,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=7,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=7,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=7,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=7,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=8,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=8,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=8,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=8,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=8,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=8,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=8,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=8,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=8,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=9,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=9,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=9,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=9,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=9,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=9,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=9,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=9,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=9,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=10,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=10,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=10,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=10,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=10,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=10,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=10,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=10,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=10,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=11,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=11,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=11,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=11,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=11,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=11,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=11,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=11,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=11,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=12,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=12,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=12,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=12,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=12,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=12,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=12,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=12,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=12,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=13,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=13,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=13,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=13,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=13,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=13,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=13,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=13,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=13,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=14,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=14,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=14,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=14,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=14,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=14,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=14,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=14,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=14,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=15,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=15,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=15,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=15,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=15,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=15,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=15,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=15,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=up,power=15,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=0,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=0,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=0,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=0,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=0,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=0,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=0,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=0,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=0,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=1,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=1,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=1,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=1,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=1,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=1,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=1,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=1,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=1,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=2,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=2,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=2,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=2,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=2,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=2,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=2,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=2,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=2,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=3,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=3,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=3,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=3,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=3,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=3,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=3,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=3,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=3,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=4,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=4,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=4,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=4,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=4,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=4,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=4,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=4,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=4,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=5,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=5,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=5,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=5,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=5,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=5,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=5,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=5,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=5,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=6,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=6,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=6,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=6,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=6,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=6,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=6,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=6,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=6,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=7,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=7,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=7,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=7,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=7,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=7,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=7,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=7,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=7,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=8,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=8,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=8,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=8,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=8,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=8,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=8,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=8,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=8,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=9,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=9,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=9,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=9,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=9,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=9,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=9,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=9,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=9,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=10,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=10,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=10,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=10,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=10,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=10,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=10,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=10,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=10,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=11,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=11,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=11,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=11,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=11,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=11,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=11,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=11,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=11,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=12,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=12,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=12,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=12,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=12,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=12,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=12,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=12,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=12,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=13,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=13,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=13,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=13,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=13,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=13,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=13,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=13,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=13,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=14,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=14,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=14,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=14,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=14,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=14,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=14,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=14,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=14,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=15,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=15,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=15,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=15,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=15,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=15,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=15,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=15,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=side,power=15,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=0,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=0,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=0,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=0,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=0,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=0,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=1,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=1,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=1,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=1,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=1,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=1,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=1,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=1,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=1,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=2,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=2,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=2,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=2,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=2,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=2,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=2,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=2,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=2,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=3,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=3,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=3,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=3,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=3,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=3,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=3,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=3,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=3,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=4,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=4,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=4,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=4,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=4,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=4,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=4,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=4,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=4,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=5,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=5,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=5,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=5,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=5,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=5,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=5,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=5,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=5,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=6,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=6,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=6,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=6,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=6,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=6,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=6,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=6,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=6,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 6
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=7,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=7,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=7,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=7,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=7,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=7,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=7,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=7,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=7,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 7
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=8,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=8,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=8,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=8,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=8,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=8,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=8,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=8,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=8,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 8
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=9,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=9,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=9,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=9,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=9,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=9,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=9,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=9,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=9,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 9
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=10,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=10,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=10,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=10,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=10,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=10,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=10,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=10,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=10,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 10
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=11,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=11,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=11,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=11,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=11,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=11,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=11,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=11,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=11,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 11
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=12,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=12,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=12,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=12,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=12,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=12,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=12,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=12,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=12,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 12
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=13,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=13,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=13,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=13,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=13,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=13,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=13,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=13,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=13,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 13
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=14,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=14,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=14,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=14,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=14,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=14,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=14,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=14,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=14,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 14
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=15,south=up,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=15,south=up,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=15,south=up,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=15,south=side,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=15,south=side,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=15,south=side,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=15,south=none,west=up]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=15,south=none,west=side]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_wire[east=none,north=none,power=15,south=none,west=none]": {
-    "bedrock_identifier": "minecraft:redstone_wire",
-    "bedrock_data": 15
-  },
-  "minecraft:diamond_ore": {
-    "bedrock_identifier": "minecraft:diamond_ore",
-    "bedrock_data": 0
-  },
-  "minecraft:diamond_block": {
-    "bedrock_identifier": "minecraft:diamond_block",
-    "bedrock_data": 0
-  },
-  "minecraft:crafting_table": {
-    "bedrock_identifier": "minecraft:crafting_table",
-    "bedrock_data": 0
-  },
-  "minecraft:wheat[age=0]": {
-    "bedrock_identifier": "minecraft:wheat",
-    "bedrock_data": 0
-  },
-  "minecraft:wheat[age=1]": {
-    "bedrock_identifier": "minecraft:wheat",
-    "bedrock_data": 1
-  },
-  "minecraft:wheat[age=2]": {
-    "bedrock_identifier": "minecraft:wheat",
-    "bedrock_data": 2
-  },
-  "minecraft:wheat[age=3]": {
-    "bedrock_identifier": "minecraft:wheat",
-    "bedrock_data": 3
-  },
-  "minecraft:wheat[age=4]": {
-    "bedrock_identifier": "minecraft:wheat",
-    "bedrock_data": 4
-  },
-  "minecraft:wheat[age=5]": {
-    "bedrock_identifier": "minecraft:wheat",
-    "bedrock_data": 5
-  },
-  "minecraft:wheat[age=6]": {
-    "bedrock_identifier": "minecraft:wheat",
-    "bedrock_data": 6
-  },
-  "minecraft:wheat[age=7]": {
-    "bedrock_identifier": "minecraft:wheat",
-    "bedrock_data": 7
-  },
-  "minecraft:farmland[moisture=0]": {
-    "bedrock_identifier": "minecraft:farmland",
-    "bedrock_data": 0
-  },
-  "minecraft:farmland[moisture=1]": {
-    "bedrock_identifier": "minecraft:farmland",
-    "bedrock_data": 1
-  },
-  "minecraft:farmland[moisture=2]": {
-    "bedrock_identifier": "minecraft:farmland",
-    "bedrock_data": 2
-  },
-  "minecraft:farmland[moisture=3]": {
-    "bedrock_identifier": "minecraft:farmland",
-    "bedrock_data": 3
-  },
-  "minecraft:farmland[moisture=4]": {
-    "bedrock_identifier": "minecraft:farmland",
-    "bedrock_data": 4
-  },
-  "minecraft:farmland[moisture=5]": {
-    "bedrock_identifier": "minecraft:farmland",
-    "bedrock_data": 5
-  },
-  "minecraft:farmland[moisture=6]": {
-    "bedrock_identifier": "minecraft:farmland",
-    "bedrock_data": 6
-  },
-  "minecraft:farmland[moisture=7]": {
-    "bedrock_identifier": "minecraft:farmland",
-    "bedrock_data": 7
-  },
-  "minecraft:furnace[facing=north,lit=true]": {
-    "bedrock_identifier": "minecraft:lit_furnace",
-    "bedrock_data": 2
-  },
-  "minecraft:furnace[facing=north,lit=false]": {
-    "bedrock_identifier": "minecraft:furnace",
-    "bedrock_data": 2
-  },
-  "minecraft:furnace[facing=south,lit=true]": {
-    "bedrock_identifier": "minecraft:lit_furnace",
-    "bedrock_data": 3
-  },
-  "minecraft:furnace[facing=south,lit=false]": {
-    "bedrock_identifier": "minecraft:furnace",
-    "bedrock_data": 3
-  },
-  "minecraft:furnace[facing=west,lit=true]": {
-    "bedrock_identifier": "minecraft:lit_furnace",
-    "bedrock_data": 4
-  },
-  "minecraft:furnace[facing=west,lit=false]": {
-    "bedrock_identifier": "minecraft:furnace",
-    "bedrock_data": 4
-  },
-  "minecraft:furnace[facing=east,lit=true]": {
-    "bedrock_identifier": "minecraft:lit_furnace",
-    "bedrock_data": 5
-  },
-  "minecraft:furnace[facing=east,lit=false]": {
-    "bedrock_identifier": "minecraft:furnace",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_sign[rotation=0,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_sign[rotation=0,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_sign[rotation=1,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_sign[rotation=1,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_sign[rotation=2,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_sign[rotation=2,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_sign[rotation=3,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_sign[rotation=3,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_sign[rotation=4,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_sign[rotation=4,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_sign[rotation=5,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_sign[rotation=5,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_sign[rotation=6,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_sign[rotation=6,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_sign[rotation=7,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_sign[rotation=7,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_sign[rotation=8,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 8
-  },
-  "minecraft:oak_sign[rotation=8,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 8
-  },
-  "minecraft:oak_sign[rotation=9,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 9
-  },
-  "minecraft:oak_sign[rotation=9,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 9
-  },
-  "minecraft:oak_sign[rotation=10,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 10
-  },
-  "minecraft:oak_sign[rotation=10,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 10
-  },
-  "minecraft:oak_sign[rotation=11,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 11
-  },
-  "minecraft:oak_sign[rotation=11,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 11
-  },
-  "minecraft:oak_sign[rotation=12,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 12
-  },
-  "minecraft:oak_sign[rotation=12,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 12
-  },
-  "minecraft:oak_sign[rotation=13,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 13
-  },
-  "minecraft:oak_sign[rotation=13,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 13
-  },
-  "minecraft:oak_sign[rotation=14,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 14
-  },
-  "minecraft:oak_sign[rotation=14,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 14
-  },
-  "minecraft:oak_sign[rotation=15,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 15
-  },
-  "minecraft:oak_sign[rotation=15,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:standing_sign",
-    "bedrock_data": 15
-  },
-  "minecraft:spruce_sign[rotation=0,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_sign[rotation=0,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_sign[rotation=1,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_sign[rotation=1,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_sign[rotation=2,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_sign[rotation=2,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_sign[rotation=3,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_sign[rotation=3,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_sign[rotation=4,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_sign[rotation=4,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_sign[rotation=5,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_sign[rotation=5,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_sign[rotation=6,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_sign[rotation=6,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_sign[rotation=7,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_sign[rotation=7,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_sign[rotation=8,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 8
-  },
-  "minecraft:spruce_sign[rotation=8,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 8
-  },
-  "minecraft:spruce_sign[rotation=9,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 9
-  },
-  "minecraft:spruce_sign[rotation=9,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 9
-  },
-  "minecraft:spruce_sign[rotation=10,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 10
-  },
-  "minecraft:spruce_sign[rotation=10,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 10
-  },
-  "minecraft:spruce_sign[rotation=11,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 11
-  },
-  "minecraft:spruce_sign[rotation=11,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 11
-  },
-  "minecraft:spruce_sign[rotation=12,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 12
-  },
-  "minecraft:spruce_sign[rotation=12,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 12
-  },
-  "minecraft:spruce_sign[rotation=13,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 13
-  },
-  "minecraft:spruce_sign[rotation=13,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 13
-  },
-  "minecraft:spruce_sign[rotation=14,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 14
-  },
-  "minecraft:spruce_sign[rotation=14,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 14
-  },
-  "minecraft:spruce_sign[rotation=15,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 15
-  },
-  "minecraft:spruce_sign[rotation=15,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_standing_sign",
-    "bedrock_data": 15
-  },
-  "minecraft:birch_sign[rotation=0,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_sign[rotation=0,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_sign[rotation=1,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_sign[rotation=1,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_sign[rotation=2,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_sign[rotation=2,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_sign[rotation=3,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_sign[rotation=3,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_sign[rotation=4,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_sign[rotation=4,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_sign[rotation=5,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_sign[rotation=5,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_sign[rotation=6,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_sign[rotation=6,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_sign[rotation=7,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_sign[rotation=7,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_sign[rotation=8,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 8
-  },
-  "minecraft:birch_sign[rotation=8,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 8
-  },
-  "minecraft:birch_sign[rotation=9,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 9
-  },
-  "minecraft:birch_sign[rotation=9,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 9
-  },
-  "minecraft:birch_sign[rotation=10,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 10
-  },
-  "minecraft:birch_sign[rotation=10,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 10
-  },
-  "minecraft:birch_sign[rotation=11,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 11
-  },
-  "minecraft:birch_sign[rotation=11,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 11
-  },
-  "minecraft:birch_sign[rotation=12,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 12
-  },
-  "minecraft:birch_sign[rotation=12,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 12
-  },
-  "minecraft:birch_sign[rotation=13,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 13
-  },
-  "minecraft:birch_sign[rotation=13,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 13
-  },
-  "minecraft:birch_sign[rotation=14,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 14
-  },
-  "minecraft:birch_sign[rotation=14,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 14
-  },
-  "minecraft:birch_sign[rotation=15,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 15
-  },
-  "minecraft:birch_sign[rotation=15,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_standing_sign",
-    "bedrock_data": 15
-  },
-  "minecraft:acacia_sign[rotation=0,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_sign[rotation=0,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_sign[rotation=1,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_sign[rotation=1,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_sign[rotation=2,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_sign[rotation=2,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_sign[rotation=3,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_sign[rotation=3,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_sign[rotation=4,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_sign[rotation=4,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_sign[rotation=5,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_sign[rotation=5,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_sign[rotation=6,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_sign[rotation=6,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_sign[rotation=7,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_sign[rotation=7,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_sign[rotation=8,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 8
-  },
-  "minecraft:acacia_sign[rotation=8,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 8
-  },
-  "minecraft:acacia_sign[rotation=9,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 9
-  },
-  "minecraft:acacia_sign[rotation=9,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 9
-  },
-  "minecraft:acacia_sign[rotation=10,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 10
-  },
-  "minecraft:acacia_sign[rotation=10,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 10
-  },
-  "minecraft:acacia_sign[rotation=11,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 11
-  },
-  "minecraft:acacia_sign[rotation=11,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 11
-  },
-  "minecraft:acacia_sign[rotation=12,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 12
-  },
-  "minecraft:acacia_sign[rotation=12,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 12
-  },
-  "minecraft:acacia_sign[rotation=13,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 13
-  },
-  "minecraft:acacia_sign[rotation=13,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 13
-  },
-  "minecraft:acacia_sign[rotation=14,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 14
-  },
-  "minecraft:acacia_sign[rotation=14,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 14
-  },
-  "minecraft:acacia_sign[rotation=15,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 15
-  },
-  "minecraft:acacia_sign[rotation=15,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_standing_sign",
-    "bedrock_data": 15
-  },
-  "minecraft:jungle_sign[rotation=0,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_sign[rotation=0,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_sign[rotation=1,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_sign[rotation=1,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_sign[rotation=2,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_sign[rotation=2,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_sign[rotation=3,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_sign[rotation=3,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_sign[rotation=4,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_sign[rotation=4,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_sign[rotation=5,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_sign[rotation=5,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_sign[rotation=6,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_sign[rotation=6,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_sign[rotation=7,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_sign[rotation=7,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_sign[rotation=8,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 8
-  },
-  "minecraft:jungle_sign[rotation=8,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 8
-  },
-  "minecraft:jungle_sign[rotation=9,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 9
-  },
-  "minecraft:jungle_sign[rotation=9,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 9
-  },
-  "minecraft:jungle_sign[rotation=10,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 10
-  },
-  "minecraft:jungle_sign[rotation=10,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 10
-  },
-  "minecraft:jungle_sign[rotation=11,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 11
-  },
-  "minecraft:jungle_sign[rotation=11,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 11
-  },
-  "minecraft:jungle_sign[rotation=12,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 12
-  },
-  "minecraft:jungle_sign[rotation=12,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 12
-  },
-  "minecraft:jungle_sign[rotation=13,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 13
-  },
-  "minecraft:jungle_sign[rotation=13,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 13
-  },
-  "minecraft:jungle_sign[rotation=14,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 14
-  },
-  "minecraft:jungle_sign[rotation=14,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 14
-  },
-  "minecraft:jungle_sign[rotation=15,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 15
-  },
-  "minecraft:jungle_sign[rotation=15,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_standing_sign",
-    "bedrock_data": 15
-  },
-  "minecraft:dark_oak_sign[rotation=0,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_sign[rotation=0,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_sign[rotation=1,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_sign[rotation=1,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_sign[rotation=2,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_sign[rotation=2,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_sign[rotation=3,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_sign[rotation=3,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_sign[rotation=4,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_sign[rotation=4,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_sign[rotation=5,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_sign[rotation=5,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_sign[rotation=6,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_sign[rotation=6,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_sign[rotation=7,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_sign[rotation=7,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_sign[rotation=8,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 8
-  },
-  "minecraft:dark_oak_sign[rotation=8,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 8
-  },
-  "minecraft:dark_oak_sign[rotation=9,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 9
-  },
-  "minecraft:dark_oak_sign[rotation=9,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 9
-  },
-  "minecraft:dark_oak_sign[rotation=10,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 10
-  },
-  "minecraft:dark_oak_sign[rotation=10,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 10
-  },
-  "minecraft:dark_oak_sign[rotation=11,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 11
-  },
-  "minecraft:dark_oak_sign[rotation=11,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 11
-  },
-  "minecraft:dark_oak_sign[rotation=12,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 12
-  },
-  "minecraft:dark_oak_sign[rotation=12,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 12
-  },
-  "minecraft:dark_oak_sign[rotation=13,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 13
-  },
-  "minecraft:dark_oak_sign[rotation=13,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 13
-  },
-  "minecraft:dark_oak_sign[rotation=14,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 14
-  },
-  "minecraft:dark_oak_sign[rotation=14,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 14
-  },
-  "minecraft:dark_oak_sign[rotation=15,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 15
-  },
-  "minecraft:dark_oak_sign[rotation=15,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:darkoak_standing_sign",
-    "bedrock_data": 15
-  },
-  "minecraft:oak_door[facing=north,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 10
-  },
-  "minecraft:oak_door[facing=north,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 8
-  },
-  "minecraft:oak_door[facing=north,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 10
-  },
-  "minecraft:oak_door[facing=north,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 8
-  },
-  "minecraft:oak_door[facing=north,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 11
-  },
-  "minecraft:oak_door[facing=north,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 9
-  },
-  "minecraft:oak_door[facing=north,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 11
-  },
-  "minecraft:oak_door[facing=north,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 9
-  },
-  "minecraft:oak_door[facing=north,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_door[facing=north,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_door[facing=north,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_door[facing=north,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_door[facing=north,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_door[facing=north,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_door[facing=north,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_door[facing=north,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_door[facing=south,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 10
-  },
-  "minecraft:oak_door[facing=south,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 8
-  },
-  "minecraft:oak_door[facing=south,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 10
-  },
-  "minecraft:oak_door[facing=south,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 8
-  },
-  "minecraft:oak_door[facing=south,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 11
-  },
-  "minecraft:oak_door[facing=south,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 9
-  },
-  "minecraft:oak_door[facing=south,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 11
-  },
-  "minecraft:oak_door[facing=south,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 9
-  },
-  "minecraft:oak_door[facing=south,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_door[facing=south,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_door[facing=south,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_door[facing=south,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_door[facing=south,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_door[facing=south,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_door[facing=south,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_door[facing=south,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_door[facing=west,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 10
-  },
-  "minecraft:oak_door[facing=west,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 8
-  },
-  "minecraft:oak_door[facing=west,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 10
-  },
-  "minecraft:oak_door[facing=west,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 8
-  },
-  "minecraft:oak_door[facing=west,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 11
-  },
-  "minecraft:oak_door[facing=west,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 9
-  },
-  "minecraft:oak_door[facing=west,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 11
-  },
-  "minecraft:oak_door[facing=west,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 9
-  },
-  "minecraft:oak_door[facing=west,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_door[facing=west,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_door[facing=west,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_door[facing=west,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_door[facing=west,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_door[facing=west,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_door[facing=west,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_door[facing=west,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_door[facing=east,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 10
-  },
-  "minecraft:oak_door[facing=east,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 8
-  },
-  "minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 10
-  },
-  "minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 8
-  },
-  "minecraft:oak_door[facing=east,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 11
-  },
-  "minecraft:oak_door[facing=east,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 9
-  },
-  "minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 11
-  },
-  "minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 9
-  },
-  "minecraft:oak_door[facing=east,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_door[facing=east,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_door[facing=east,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_door[facing=east,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_door[facing=east,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_door[facing=east,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_door[facing=east,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_door[facing=east,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_door",
-    "bedrock_data": 0
-  },
-  "minecraft:ladder[facing=north,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:ladder",
-    "bedrock_data": 2
-  },
-  "minecraft:ladder[facing=north,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:ladder",
-    "bedrock_data": 2
-  },
-  "minecraft:ladder[facing=south,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:ladder",
-    "bedrock_data": 3
-  },
-  "minecraft:ladder[facing=south,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:ladder",
-    "bedrock_data": 3
-  },
-  "minecraft:ladder[facing=west,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:ladder",
-    "bedrock_data": 4
-  },
-  "minecraft:ladder[facing=west,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:ladder",
-    "bedrock_data": 4
-  },
-  "minecraft:ladder[facing=east,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:ladder",
-    "bedrock_data": 5
-  },
-  "minecraft:ladder[facing=east,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:ladder",
-    "bedrock_data": 5
-  },
-  "minecraft:rail[shape=north_south]": {
-    "bedrock_identifier": "minecraft:rail",
-    "bedrock_data": 0
-  },
-  "minecraft:rail[shape=east_west]": {
-    "bedrock_identifier": "minecraft:rail",
-    "bedrock_data": 1
-  },
-  "minecraft:rail[shape=ascending_east]": {
-    "bedrock_identifier": "minecraft:rail",
-    "bedrock_data": 2
-  },
-  "minecraft:rail[shape=ascending_west]": {
-    "bedrock_identifier": "minecraft:rail",
-    "bedrock_data": 3
-  },
-  "minecraft:rail[shape=ascending_north]": {
-    "bedrock_identifier": "minecraft:rail",
-    "bedrock_data": 4
-  },
-  "minecraft:rail[shape=ascending_south]": {
-    "bedrock_identifier": "minecraft:rail",
-    "bedrock_data": 5
-  },
-  "minecraft:rail[shape=south_east]": {
-    "bedrock_identifier": "minecraft:rail",
-    "bedrock_data": 6
-  },
-  "minecraft:rail[shape=south_west]": {
-    "bedrock_identifier": "minecraft:rail",
-    "bedrock_data": 7
-  },
-  "minecraft:rail[shape=north_west]": {
-    "bedrock_identifier": "minecraft:rail",
-    "bedrock_data": 8
-  },
-  "minecraft:rail[shape=north_east]": {
-    "bedrock_identifier": "minecraft:rail",
-    "bedrock_data": 9
-  },
-  "minecraft:cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_wall_sign[facing=north,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:wall_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_wall_sign[facing=north,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:wall_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_wall_sign[facing=south,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:wall_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_wall_sign[facing=south,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:wall_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_wall_sign[facing=west,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:wall_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_wall_sign[facing=west,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:wall_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_wall_sign[facing=east,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:wall_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_wall_sign[facing=east,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:wall_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_wall_sign[facing=north,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_wall_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_wall_sign[facing=north,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_wall_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_wall_sign[facing=south,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_wall_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_wall_sign[facing=south,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_wall_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_wall_sign[facing=west,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_wall_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_wall_sign[facing=west,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_wall_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_wall_sign[facing=east,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_wall_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_wall_sign[facing=east,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_wall_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_wall_sign[facing=north,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_wall_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_wall_sign[facing=north,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_wall_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_wall_sign[facing=south,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_wall_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_wall_sign[facing=south,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_wall_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_wall_sign[facing=west,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_wall_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_wall_sign[facing=west,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_wall_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_wall_sign[facing=east,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_wall_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_wall_sign[facing=east,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_wall_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_wall_sign[facing=north,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_wall_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_wall_sign[facing=north,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_wall_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_wall_sign[facing=south,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_wall_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_wall_sign[facing=south,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_wall_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_wall_sign[facing=west,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_wall_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_wall_sign[facing=west,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_wall_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_wall_sign[facing=east,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_wall_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_wall_sign[facing=east,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_wall_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_wall_sign[facing=north,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_wall_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_wall_sign[facing=north,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_wall_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_wall_sign[facing=south,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_wall_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_wall_sign[facing=south,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_wall_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_wall_sign[facing=west,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_wall_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_wall_sign[facing=west,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_wall_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_wall_sign[facing=east,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_wall_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_wall_sign[facing=east,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_wall_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_wall_sign[facing=north,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:darkoak_wall_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_wall_sign[facing=north,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:darkoak_wall_sign",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_wall_sign[facing=south,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:darkoak_wall_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_wall_sign[facing=south,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:darkoak_wall_sign",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_wall_sign[facing=west,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:darkoak_wall_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_wall_sign[facing=west,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:darkoak_wall_sign",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_wall_sign[facing=east,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:darkoak_wall_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_wall_sign[facing=east,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:darkoak_wall_sign",
-    "bedrock_data": 5
-  },
-  "minecraft:lever[face=floor,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 13
-  },
-  "minecraft:lever[face=floor,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 5
-  },
-  "minecraft:lever[face=floor,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 13
-  },
-  "minecraft:lever[face=floor,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 5
-  },
-  "minecraft:lever[face=floor,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 13
-  },
-  "minecraft:lever[face=floor,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 5
-  },
-  "minecraft:lever[face=floor,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 13
-  },
-  "minecraft:lever[face=floor,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 5
-  },
-  "minecraft:lever[face=wall,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 12
-  },
-  "minecraft:lever[face=wall,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 4
-  },
-  "minecraft:lever[face=wall,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 11
-  },
-  "minecraft:lever[face=wall,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 3
-  },
-  "minecraft:lever[face=wall,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 10
-  },
-  "minecraft:lever[face=wall,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 2
-  },
-  "minecraft:lever[face=wall,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 9
-  },
-  "minecraft:lever[face=wall,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 1
-  },
-  "minecraft:lever[face=ceiling,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 8
-  },
-  "minecraft:lever[face=ceiling,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 0
-  },
-  "minecraft:lever[face=ceiling,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 8
-  },
-  "minecraft:lever[face=ceiling,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 0
-  },
-  "minecraft:lever[face=ceiling,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 8
-  },
-  "minecraft:lever[face=ceiling,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 0
-  },
-  "minecraft:lever[face=ceiling,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 8
-  },
-  "minecraft:lever[face=ceiling,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:lever",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_pressure_plate[powered=true]": {
-    "bedrock_identifier": "minecraft:stone_pressure_plate",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_pressure_plate[powered=false]": {
-    "bedrock_identifier": "minecraft:stone_pressure_plate",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_door[facing=north,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 10
-  },
-  "minecraft:iron_door[facing=north,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 8
-  },
-  "minecraft:iron_door[facing=north,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 10
-  },
-  "minecraft:iron_door[facing=north,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 8
-  },
-  "minecraft:iron_door[facing=north,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 11
-  },
-  "minecraft:iron_door[facing=north,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 9
-  },
-  "minecraft:iron_door[facing=north,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 11
-  },
-  "minecraft:iron_door[facing=north,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 9
-  },
-  "minecraft:iron_door[facing=north,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 7
-  },
-  "minecraft:iron_door[facing=north,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 7
-  },
-  "minecraft:iron_door[facing=north,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 3
-  },
-  "minecraft:iron_door[facing=north,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 3
-  },
-  "minecraft:iron_door[facing=north,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 7
-  },
-  "minecraft:iron_door[facing=north,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 7
-  },
-  "minecraft:iron_door[facing=north,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 3
-  },
-  "minecraft:iron_door[facing=north,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 3
-  },
-  "minecraft:iron_door[facing=south,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 10
-  },
-  "minecraft:iron_door[facing=south,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 8
-  },
-  "minecraft:iron_door[facing=south,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 10
-  },
-  "minecraft:iron_door[facing=south,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 8
-  },
-  "minecraft:iron_door[facing=south,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 11
-  },
-  "minecraft:iron_door[facing=south,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 9
-  },
-  "minecraft:iron_door[facing=south,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 11
-  },
-  "minecraft:iron_door[facing=south,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 9
-  },
-  "minecraft:iron_door[facing=south,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 5
-  },
-  "minecraft:iron_door[facing=south,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 5
-  },
-  "minecraft:iron_door[facing=south,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 1
-  },
-  "minecraft:iron_door[facing=south,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 1
-  },
-  "minecraft:iron_door[facing=south,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 5
-  },
-  "minecraft:iron_door[facing=south,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 5
-  },
-  "minecraft:iron_door[facing=south,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 1
-  },
-  "minecraft:iron_door[facing=south,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 1
-  },
-  "minecraft:iron_door[facing=west,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 10
-  },
-  "minecraft:iron_door[facing=west,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 8
-  },
-  "minecraft:iron_door[facing=west,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 10
-  },
-  "minecraft:iron_door[facing=west,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 8
-  },
-  "minecraft:iron_door[facing=west,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 11
-  },
-  "minecraft:iron_door[facing=west,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 9
-  },
-  "minecraft:iron_door[facing=west,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 11
-  },
-  "minecraft:iron_door[facing=west,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 9
-  },
-  "minecraft:iron_door[facing=west,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 6
-  },
-  "minecraft:iron_door[facing=west,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 6
-  },
-  "minecraft:iron_door[facing=west,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 2
-  },
-  "minecraft:iron_door[facing=west,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 2
-  },
-  "minecraft:iron_door[facing=west,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 6
-  },
-  "minecraft:iron_door[facing=west,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 6
-  },
-  "minecraft:iron_door[facing=west,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 2
-  },
-  "minecraft:iron_door[facing=west,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 2
-  },
-  "minecraft:iron_door[facing=east,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 10
-  },
-  "minecraft:iron_door[facing=east,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 8
-  },
-  "minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 10
-  },
-  "minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 8
-  },
-  "minecraft:iron_door[facing=east,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 11
-  },
-  "minecraft:iron_door[facing=east,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 9
-  },
-  "minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 11
-  },
-  "minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 9
-  },
-  "minecraft:iron_door[facing=east,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 4
-  },
-  "minecraft:iron_door[facing=east,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 4
-  },
-  "minecraft:iron_door[facing=east,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_door[facing=east,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_door[facing=east,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 4
-  },
-  "minecraft:iron_door[facing=east,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 4
-  },
-  "minecraft:iron_door[facing=east,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_door[facing=east,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:iron_door",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_pressure_plate[powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_pressure_plate",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_pressure_plate[powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_pressure_plate",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_pressure_plate[powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_pressure_plate",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_pressure_plate[powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_pressure_plate",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_pressure_plate[powered=true]": {
-    "bedrock_identifier": "minecraft:birch_pressure_plate",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_pressure_plate[powered=false]": {
-    "bedrock_identifier": "minecraft:birch_pressure_plate",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_pressure_plate[powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_pressure_plate",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_pressure_plate[powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_pressure_plate",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_pressure_plate[powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_pressure_plate",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_pressure_plate[powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_pressure_plate",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_pressure_plate[powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_pressure_plate",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_pressure_plate[powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_pressure_plate",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_ore[lit=true]": {
-    "bedrock_identifier": "minecraft:lit_redstone_ore",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_ore[lit=false]": {
-    "bedrock_identifier": "minecraft:redstone_ore",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_torch[lit=true]": {
-    "bedrock_identifier": "minecraft:redstone_torch",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_torch[lit=false]": {
-    "bedrock_identifier": "minecraft:unlit_redstone_torch",
-    "bedrock_data": 5
-  },
-  "minecraft:redstone_wall_torch[facing=north,lit=true]": {
-    "bedrock_identifier": "minecraft:redstone_torch",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wall_torch[facing=north,lit=false]": {
-    "bedrock_identifier": "minecraft:unlit_redstone_torch",
-    "bedrock_data": 4
-  },
-  "minecraft:redstone_wall_torch[facing=south,lit=true]": {
-    "bedrock_identifier": "minecraft:redstone_torch",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wall_torch[facing=south,lit=false]": {
-    "bedrock_identifier": "minecraft:unlit_redstone_torch",
-    "bedrock_data": 3
-  },
-  "minecraft:redstone_wall_torch[facing=west,lit=true]": {
-    "bedrock_identifier": "minecraft:redstone_torch",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wall_torch[facing=west,lit=false]": {
-    "bedrock_identifier": "minecraft:unlit_redstone_torch",
-    "bedrock_data": 2
-  },
-  "minecraft:redstone_wall_torch[facing=east,lit=true]": {
-    "bedrock_identifier": "minecraft:redstone_torch",
-    "bedrock_data": 1
-  },
-  "minecraft:redstone_wall_torch[facing=east,lit=false]": {
-    "bedrock_identifier": "minecraft:unlit_redstone_torch",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_button[face=floor,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 9
-  },
-  "minecraft:stone_button[face=floor,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_button[face=floor,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 9
-  },
-  "minecraft:stone_button[face=floor,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_button[face=floor,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 9
-  },
-  "minecraft:stone_button[face=floor,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_button[face=floor,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 9
-  },
-  "minecraft:stone_button[face=floor,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_button[face=wall,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 10
-  },
-  "minecraft:stone_button[face=wall,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_button[face=wall,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 11
-  },
-  "minecraft:stone_button[face=wall,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 3
-  },
-  "minecraft:stone_button[face=wall,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 12
-  },
-  "minecraft:stone_button[face=wall,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 4
-  },
-  "minecraft:stone_button[face=wall,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 13
-  },
-  "minecraft:stone_button[face=wall,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_button[face=ceiling,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 8
-  },
-  "minecraft:stone_button[face=ceiling,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_button[face=ceiling,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 8
-  },
-  "minecraft:stone_button[face=ceiling,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_button[face=ceiling,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 8
-  },
-  "minecraft:stone_button[face=ceiling,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_button[face=ceiling,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 8
-  },
-  "minecraft:stone_button[face=ceiling,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:stone_button",
-    "bedrock_data": 0
-  },
-  "minecraft:snow[layers=1]": {
-    "bedrock_identifier": "minecraft:snow_layer",
-    "bedrock_data": 0
-  },
-  "minecraft:snow[layers=2]": {
-    "bedrock_identifier": "minecraft:snow_layer",
-    "bedrock_data": 1
-  },
-  "minecraft:snow[layers=3]": {
-    "bedrock_identifier": "minecraft:snow_layer",
-    "bedrock_data": 2
-  },
-  "minecraft:snow[layers=4]": {
-    "bedrock_identifier": "minecraft:snow_layer",
-    "bedrock_data": 3
-  },
-  "minecraft:snow[layers=5]": {
-    "bedrock_identifier": "minecraft:snow_layer",
-    "bedrock_data": 4
-  },
-  "minecraft:snow[layers=6]": {
-    "bedrock_identifier": "minecraft:snow_layer",
-    "bedrock_data": 5
-  },
-  "minecraft:snow[layers=7]": {
-    "bedrock_identifier": "minecraft:snow_layer",
-    "bedrock_data": 6
-  },
-  "minecraft:snow[layers=8]": {
-    "bedrock_identifier": "minecraft:snow_layer",
-    "bedrock_data": 7
-  },
-  "minecraft:ice": {
-    "bedrock_identifier": "minecraft:ice",
-    "bedrock_data": 0
-  },
-  "minecraft:snow_block": {
-    "bedrock_identifier": "minecraft:snow",
-    "bedrock_data": 0
-  },
-  "minecraft:cactus[age=0]": {
-    "bedrock_identifier": "minecraft:cactus",
-    "bedrock_data": 0
-  },
-  "minecraft:cactus[age=1]": {
-    "bedrock_identifier": "minecraft:cactus",
-    "bedrock_data": 1
-  },
-  "minecraft:cactus[age=2]": {
-    "bedrock_identifier": "minecraft:cactus",
-    "bedrock_data": 2
-  },
-  "minecraft:cactus[age=3]": {
-    "bedrock_identifier": "minecraft:cactus",
-    "bedrock_data": 3
-  },
-  "minecraft:cactus[age=4]": {
-    "bedrock_identifier": "minecraft:cactus",
-    "bedrock_data": 4
-  },
-  "minecraft:cactus[age=5]": {
-    "bedrock_identifier": "minecraft:cactus",
-    "bedrock_data": 5
-  },
-  "minecraft:cactus[age=6]": {
-    "bedrock_identifier": "minecraft:cactus",
-    "bedrock_data": 6
-  },
-  "minecraft:cactus[age=7]": {
-    "bedrock_identifier": "minecraft:cactus",
-    "bedrock_data": 7
-  },
-  "minecraft:cactus[age=8]": {
-    "bedrock_identifier": "minecraft:cactus",
-    "bedrock_data": 8
-  },
-  "minecraft:cactus[age=9]": {
-    "bedrock_identifier": "minecraft:cactus",
-    "bedrock_data": 9
-  },
-  "minecraft:cactus[age=10]": {
-    "bedrock_identifier": "minecraft:cactus",
-    "bedrock_data": 10
-  },
-  "minecraft:cactus[age=11]": {
-    "bedrock_identifier": "minecraft:cactus",
-    "bedrock_data": 11
-  },
-  "minecraft:cactus[age=12]": {
-    "bedrock_identifier": "minecraft:cactus",
-    "bedrock_data": 12
-  },
-  "minecraft:cactus[age=13]": {
-    "bedrock_identifier": "minecraft:cactus",
-    "bedrock_data": 13
-  },
-  "minecraft:cactus[age=14]": {
-    "bedrock_identifier": "minecraft:cactus",
-    "bedrock_data": 14
-  },
-  "minecraft:cactus[age=15]": {
-    "bedrock_identifier": "minecraft:cactus",
-    "bedrock_data": 15
-  },
-  "minecraft:clay": {
-    "bedrock_identifier": "minecraft:clay",
-    "bedrock_data": 0
-  },
-  "minecraft:sugar_cane[age=0]": {
-    "bedrock_identifier": "minecraft:reeds",
-    "bedrock_data": 0
-  },
-  "minecraft:sugar_cane[age=1]": {
-    "bedrock_identifier": "minecraft:reeds",
-    "bedrock_data": 1
-  },
-  "minecraft:sugar_cane[age=2]": {
-    "bedrock_identifier": "minecraft:reeds",
-    "bedrock_data": 2
-  },
-  "minecraft:sugar_cane[age=3]": {
-    "bedrock_identifier": "minecraft:reeds",
-    "bedrock_data": 3
-  },
-  "minecraft:sugar_cane[age=4]": {
-    "bedrock_identifier": "minecraft:reeds",
-    "bedrock_data": 4
-  },
-  "minecraft:sugar_cane[age=5]": {
-    "bedrock_identifier": "minecraft:reeds",
-    "bedrock_data": 5
-  },
-  "minecraft:sugar_cane[age=6]": {
-    "bedrock_identifier": "minecraft:reeds",
-    "bedrock_data": 6
-  },
-  "minecraft:sugar_cane[age=7]": {
-    "bedrock_identifier": "minecraft:reeds",
-    "bedrock_data": 7
-  },
-  "minecraft:sugar_cane[age=8]": {
-    "bedrock_identifier": "minecraft:reeds",
-    "bedrock_data": 8
-  },
-  "minecraft:sugar_cane[age=9]": {
-    "bedrock_identifier": "minecraft:reeds",
-    "bedrock_data": 9
-  },
-  "minecraft:sugar_cane[age=10]": {
-    "bedrock_identifier": "minecraft:reeds",
-    "bedrock_data": 10
-  },
-  "minecraft:sugar_cane[age=11]": {
-    "bedrock_identifier": "minecraft:reeds",
-    "bedrock_data": 11
-  },
-  "minecraft:sugar_cane[age=12]": {
-    "bedrock_identifier": "minecraft:reeds",
-    "bedrock_data": 12
-  },
-  "minecraft:sugar_cane[age=13]": {
-    "bedrock_identifier": "minecraft:reeds",
-    "bedrock_data": 13
-  },
-  "minecraft:sugar_cane[age=14]": {
-    "bedrock_identifier": "minecraft:reeds",
-    "bedrock_data": 14
-  },
-  "minecraft:sugar_cane[age=15]": {
-    "bedrock_identifier": "minecraft:reeds",
-    "bedrock_data": 15
-  },
-  "minecraft:jukebox[has_record=true]": {
-    "bedrock_identifier": "minecraft:jukebox",
-    "bedrock_data": 0
-  },
-  "minecraft:jukebox[has_record=false]": {
-    "bedrock_identifier": "minecraft:jukebox",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 0
-  },
-  "minecraft:pumpkin": {
-    "bedrock_identifier": "minecraft:pumpkin",
-    "bedrock_data": 0
-  },
-  "minecraft:netherrack": {
-    "bedrock_identifier": "minecraft:netherrack",
-    "bedrock_data": 0
-  },
-  "minecraft:soul_sand": {
-    "bedrock_identifier": "minecraft:soul_sand",
-    "bedrock_data": 0
-  },
-  "minecraft:glowstone": {
-    "bedrock_identifier": "minecraft:glowstone",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_portal[axis=x]": {
-    "bedrock_identifier": "minecraft:portal",
-    "bedrock_data": 1
-  },
-  "minecraft:nether_portal[axis=z]": {
-    "bedrock_identifier": "minecraft:portal",
-    "bedrock_data": 0
-  },
-  "minecraft:carved_pumpkin[facing=north]": {
-    "bedrock_identifier": "minecraft:carved_pumpkin",
-    "bedrock_data": 2
-  },
-  "minecraft:carved_pumpkin[facing=south]": {
-    "bedrock_identifier": "minecraft:carved_pumpkin",
-    "bedrock_data": 0
-  },
-  "minecraft:carved_pumpkin[facing=west]": {
-    "bedrock_identifier": "minecraft:carved_pumpkin",
-    "bedrock_data": 1
-  },
-  "minecraft:carved_pumpkin[facing=east]": {
-    "bedrock_identifier": "minecraft:carved_pumpkin",
-    "bedrock_data": 3
-  },
-  "minecraft:jack_o_lantern[facing=north]": {
-    "bedrock_identifier": "minecraft:lit_pumpkin",
-    "bedrock_data": 2
-  },
-  "minecraft:jack_o_lantern[facing=south]": {
-    "bedrock_identifier": "minecraft:lit_pumpkin",
-    "bedrock_data": 0
-  },
-  "minecraft:jack_o_lantern[facing=west]": {
-    "bedrock_identifier": "minecraft:lit_pumpkin",
-    "bedrock_data": 1
-  },
-  "minecraft:jack_o_lantern[facing=east]": {
-    "bedrock_identifier": "minecraft:lit_pumpkin",
-    "bedrock_data": 3
-  },
-  "minecraft:cake[bites=0]": {
-    "bedrock_identifier": "minecraft:cake",
-    "bedrock_data": 0
-  },
-  "minecraft:cake[bites=1]": {
-    "bedrock_identifier": "minecraft:cake",
-    "bedrock_data": 1
-  },
-  "minecraft:cake[bites=2]": {
-    "bedrock_identifier": "minecraft:cake",
-    "bedrock_data": 2
-  },
-  "minecraft:cake[bites=3]": {
-    "bedrock_identifier": "minecraft:cake",
-    "bedrock_data": 3
-  },
-  "minecraft:cake[bites=4]": {
-    "bedrock_identifier": "minecraft:cake",
-    "bedrock_data": 4
-  },
-  "minecraft:cake[bites=5]": {
-    "bedrock_identifier": "minecraft:cake",
-    "bedrock_data": 5
-  },
-  "minecraft:cake[bites=6]": {
-    "bedrock_identifier": "minecraft:cake",
-    "bedrock_data": 6
-  },
-  "minecraft:repeater[delay=1,facing=north,locked=true,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 2
-  },
-  "minecraft:repeater[delay=1,facing=north,locked=true,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 2
-  },
-  "minecraft:repeater[delay=1,facing=north,locked=false,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 2
-  },
-  "minecraft:repeater[delay=1,facing=north,locked=false,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 2
-  },
-  "minecraft:repeater[delay=1,facing=south,locked=true,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 0
-  },
-  "minecraft:repeater[delay=1,facing=south,locked=true,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 0
-  },
-  "minecraft:repeater[delay=1,facing=south,locked=false,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 0
-  },
-  "minecraft:repeater[delay=1,facing=south,locked=false,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 0
-  },
-  "minecraft:repeater[delay=1,facing=west,locked=true,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 1
-  },
-  "minecraft:repeater[delay=1,facing=west,locked=true,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 1
-  },
-  "minecraft:repeater[delay=1,facing=west,locked=false,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 1
-  },
-  "minecraft:repeater[delay=1,facing=west,locked=false,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 1
-  },
-  "minecraft:repeater[delay=1,facing=east,locked=true,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 3
-  },
-  "minecraft:repeater[delay=1,facing=east,locked=true,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 3
-  },
-  "minecraft:repeater[delay=1,facing=east,locked=false,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 3
-  },
-  "minecraft:repeater[delay=1,facing=east,locked=false,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 3
-  },
-  "minecraft:repeater[delay=2,facing=north,locked=true,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 6
-  },
-  "minecraft:repeater[delay=2,facing=north,locked=true,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 6
-  },
-  "minecraft:repeater[delay=2,facing=north,locked=false,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 6
-  },
-  "minecraft:repeater[delay=2,facing=north,locked=false,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 6
-  },
-  "minecraft:repeater[delay=2,facing=south,locked=true,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 4
-  },
-  "minecraft:repeater[delay=2,facing=south,locked=true,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 4
-  },
-  "minecraft:repeater[delay=2,facing=south,locked=false,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 4
-  },
-  "minecraft:repeater[delay=2,facing=south,locked=false,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 4
-  },
-  "minecraft:repeater[delay=2,facing=west,locked=true,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 5
-  },
-  "minecraft:repeater[delay=2,facing=west,locked=true,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 5
-  },
-  "minecraft:repeater[delay=2,facing=west,locked=false,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 5
-  },
-  "minecraft:repeater[delay=2,facing=west,locked=false,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 5
-  },
-  "minecraft:repeater[delay=2,facing=east,locked=true,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 7
-  },
-  "minecraft:repeater[delay=2,facing=east,locked=true,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 7
-  },
-  "minecraft:repeater[delay=2,facing=east,locked=false,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 7
-  },
-  "minecraft:repeater[delay=2,facing=east,locked=false,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 7
-  },
-  "minecraft:repeater[delay=3,facing=north,locked=true,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 10
-  },
-  "minecraft:repeater[delay=3,facing=north,locked=true,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 10
-  },
-  "minecraft:repeater[delay=3,facing=north,locked=false,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 10
-  },
-  "minecraft:repeater[delay=3,facing=north,locked=false,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 10
-  },
-  "minecraft:repeater[delay=3,facing=south,locked=true,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 8
-  },
-  "minecraft:repeater[delay=3,facing=south,locked=true,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 8
-  },
-  "minecraft:repeater[delay=3,facing=south,locked=false,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 8
-  },
-  "minecraft:repeater[delay=3,facing=south,locked=false,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 8
-  },
-  "minecraft:repeater[delay=3,facing=west,locked=true,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 9
-  },
-  "minecraft:repeater[delay=3,facing=west,locked=true,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 9
-  },
-  "minecraft:repeater[delay=3,facing=west,locked=false,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 9
-  },
-  "minecraft:repeater[delay=3,facing=west,locked=false,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 9
-  },
-  "minecraft:repeater[delay=3,facing=east,locked=true,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 11
-  },
-  "minecraft:repeater[delay=3,facing=east,locked=true,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 11
-  },
-  "minecraft:repeater[delay=3,facing=east,locked=false,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 11
-  },
-  "minecraft:repeater[delay=3,facing=east,locked=false,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 11
-  },
-  "minecraft:repeater[delay=4,facing=north,locked=true,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 14
-  },
-  "minecraft:repeater[delay=4,facing=north,locked=true,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 14
-  },
-  "minecraft:repeater[delay=4,facing=north,locked=false,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 14
-  },
-  "minecraft:repeater[delay=4,facing=north,locked=false,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 14
-  },
-  "minecraft:repeater[delay=4,facing=south,locked=true,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 12
-  },
-  "minecraft:repeater[delay=4,facing=south,locked=true,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 12
-  },
-  "minecraft:repeater[delay=4,facing=south,locked=false,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 12
-  },
-  "minecraft:repeater[delay=4,facing=south,locked=false,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 12
-  },
-  "minecraft:repeater[delay=4,facing=west,locked=true,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 13
-  },
-  "minecraft:repeater[delay=4,facing=west,locked=true,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 13
-  },
-  "minecraft:repeater[delay=4,facing=west,locked=false,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 13
-  },
-  "minecraft:repeater[delay=4,facing=west,locked=false,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 13
-  },
-  "minecraft:repeater[delay=4,facing=east,locked=true,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 15
-  },
-  "minecraft:repeater[delay=4,facing=east,locked=true,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 15
-  },
-  "minecraft:repeater[delay=4,facing=east,locked=false,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_repeater",
-    "bedrock_data": 15
-  },
-  "minecraft:repeater[delay=4,facing=east,locked=false,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_repeater",
-    "bedrock_data": 15
-  },
-  "minecraft:white_stained_glass": {
-    "bedrock_identifier": "minecraft:stained_glass",
-    "bedrock_data": 0
-  },
-  "minecraft:orange_stained_glass": {
-    "bedrock_identifier": "minecraft:stained_glass",
-    "bedrock_data": 1
-  },
-  "minecraft:magenta_stained_glass": {
-    "bedrock_identifier": "minecraft:stained_glass",
-    "bedrock_data": 2
-  },
-  "minecraft:light_blue_stained_glass": {
-    "bedrock_identifier": "minecraft:stained_glass",
-    "bedrock_data": 3
-  },
-  "minecraft:yellow_stained_glass": {
-    "bedrock_identifier": "minecraft:stained_glass",
-    "bedrock_data": 4
-  },
-  "minecraft:lime_stained_glass": {
-    "bedrock_identifier": "minecraft:stained_glass",
-    "bedrock_data": 5
-  },
-  "minecraft:pink_stained_glass": {
-    "bedrock_identifier": "minecraft:stained_glass",
-    "bedrock_data": 6
-  },
-  "minecraft:gray_stained_glass": {
-    "bedrock_identifier": "minecraft:stained_glass",
-    "bedrock_data": 7
-  },
-  "minecraft:light_gray_stained_glass": {
-    "bedrock_identifier": "minecraft:stained_glass",
-    "bedrock_data": 8
-  },
-  "minecraft:cyan_stained_glass": {
-    "bedrock_identifier": "minecraft:stained_glass",
-    "bedrock_data": 9
-  },
-  "minecraft:purple_stained_glass": {
-    "bedrock_identifier": "minecraft:stained_glass",
-    "bedrock_data": 10
-  },
-  "minecraft:blue_stained_glass": {
-    "bedrock_identifier": "minecraft:stained_glass",
-    "bedrock_data": 11
-  },
-  "minecraft:brown_stained_glass": {
-    "bedrock_identifier": "minecraft:stained_glass",
-    "bedrock_data": 12
-  },
-  "minecraft:green_stained_glass": {
-    "bedrock_identifier": "minecraft:stained_glass",
-    "bedrock_data": 13
-  },
-  "minecraft:red_stained_glass": {
-    "bedrock_identifier": "minecraft:stained_glass",
-    "bedrock_data": 14
-  },
-  "minecraft:black_stained_glass": {
-    "bedrock_identifier": "minecraft:stained_glass",
-    "bedrock_data": 15
-  },
-  "minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_bricks": {
-    "bedrock_identifier": "minecraft:stonebrick",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_stone_bricks": {
-    "bedrock_identifier": "minecraft:stonebrick",
-    "bedrock_data": 1
-  },
-  "minecraft:cracked_stone_bricks": {
-    "bedrock_identifier": "minecraft:stonebrick",
-    "bedrock_data": 2
-  },
-  "minecraft:chiseled_stone_bricks": {
-    "bedrock_identifier": "minecraft:stonebrick",
-    "bedrock_data": 3
-  },
-  "minecraft:infested_stone": {
-    "bedrock_identifier": "minecraft:monster_egg",
-    "bedrock_data": 0
-  },
-  "minecraft:infested_cobblestone": {
-    "bedrock_identifier": "minecraft:monster_egg",
-    "bedrock_data": 1
-  },
-  "minecraft:infested_stone_bricks": {
-    "bedrock_identifier": "minecraft:monster_egg",
-    "bedrock_data": 2
-  },
-  "minecraft:infested_mossy_stone_bricks": {
-    "bedrock_identifier": "minecraft:monster_egg",
-    "bedrock_data": 3
-  },
-  "minecraft:infested_cracked_stone_bricks": {
-    "bedrock_identifier": "minecraft:monster_egg",
-    "bedrock_data": 4
-  },
-  "minecraft:infested_chiseled_stone_bricks": {
-    "bedrock_identifier": "minecraft:monster_egg",
-    "bedrock_data": 5
-  },
-  "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 3
-  },
-  "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 9
-  },
-  "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 6
-  },
-  "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 1
-  },
-  "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 2
-  },
-  "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 7
-  },
-  "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 8
-  },
-  "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 4
-  },
-  "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 5
-  },
-  "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:brown_mushroom_block",
-    "bedrock_data": 0
-  },
-  "minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 3
-  },
-  "minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 9
-  },
-  "minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 6
-  },
-  "minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 1
-  },
-  "minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 2
-  },
-  "minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 7
-  },
-  "minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 8
-  },
-  "minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 4
-  },
-  "minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 5
-  },
-  "minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 0
-  },
-  "minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 15
-  },
-  "minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:red_mushroom_block",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_bars[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:iron_bars",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:melon": {
-    "bedrock_identifier": "minecraft:melon_block",
-    "bedrock_data": 0
-  },
-  "minecraft:attached_pumpkin_stem[facing=north]": {
-    "bedrock_identifier": "minecraft:pumpkin_stem",
-    "bedrock_data": 7
-  },
-  "minecraft:attached_pumpkin_stem[facing=south]": {
-    "bedrock_identifier": "minecraft:pumpkin_stem",
-    "bedrock_data": 7
-  },
-  "minecraft:attached_pumpkin_stem[facing=west]": {
-    "bedrock_identifier": "minecraft:pumpkin_stem",
-    "bedrock_data": 7
-  },
-  "minecraft:attached_pumpkin_stem[facing=east]": {
-    "bedrock_identifier": "minecraft:pumpkin_stem",
-    "bedrock_data": 7
-  },
-  "minecraft:attached_melon_stem[facing=north]": {
-    "bedrock_identifier": "minecraft:melon_stem",
-    "bedrock_data": 7
-  },
-  "minecraft:attached_melon_stem[facing=south]": {
-    "bedrock_identifier": "minecraft:melon_stem",
-    "bedrock_data": 7
-  },
-  "minecraft:attached_melon_stem[facing=west]": {
-    "bedrock_identifier": "minecraft:melon_stem",
-    "bedrock_data": 7
-  },
-  "minecraft:attached_melon_stem[facing=east]": {
-    "bedrock_identifier": "minecraft:melon_stem",
-    "bedrock_data": 7
-  },
-  "minecraft:pumpkin_stem[age=0]": {
-    "bedrock_identifier": "minecraft:pumpkin_stem",
-    "bedrock_data": 0
-  },
-  "minecraft:pumpkin_stem[age=1]": {
-    "bedrock_identifier": "minecraft:pumpkin_stem",
-    "bedrock_data": 1
-  },
-  "minecraft:pumpkin_stem[age=2]": {
-    "bedrock_identifier": "minecraft:pumpkin_stem",
-    "bedrock_data": 2
-  },
-  "minecraft:pumpkin_stem[age=3]": {
-    "bedrock_identifier": "minecraft:pumpkin_stem",
-    "bedrock_data": 3
-  },
-  "minecraft:pumpkin_stem[age=4]": {
-    "bedrock_identifier": "minecraft:pumpkin_stem",
-    "bedrock_data": 4
-  },
-  "minecraft:pumpkin_stem[age=5]": {
-    "bedrock_identifier": "minecraft:pumpkin_stem",
-    "bedrock_data": 5
-  },
-  "minecraft:pumpkin_stem[age=6]": {
-    "bedrock_identifier": "minecraft:pumpkin_stem",
-    "bedrock_data": 6
-  },
-  "minecraft:pumpkin_stem[age=7]": {
-    "bedrock_identifier": "minecraft:pumpkin_stem",
-    "bedrock_data": 7
-  },
-  "minecraft:melon_stem[age=0]": {
-    "bedrock_identifier": "minecraft:melon_stem",
-    "bedrock_data": 0
-  },
-  "minecraft:melon_stem[age=1]": {
-    "bedrock_identifier": "minecraft:melon_stem",
-    "bedrock_data": 1
-  },
-  "minecraft:melon_stem[age=2]": {
-    "bedrock_identifier": "minecraft:melon_stem",
-    "bedrock_data": 2
-  },
-  "minecraft:melon_stem[age=3]": {
-    "bedrock_identifier": "minecraft:melon_stem",
-    "bedrock_data": 3
-  },
-  "minecraft:melon_stem[age=4]": {
-    "bedrock_identifier": "minecraft:melon_stem",
-    "bedrock_data": 4
-  },
-  "minecraft:melon_stem[age=5]": {
-    "bedrock_identifier": "minecraft:melon_stem",
-    "bedrock_data": 5
-  },
-  "minecraft:melon_stem[age=6]": {
-    "bedrock_identifier": "minecraft:melon_stem",
-    "bedrock_data": 6
-  },
-  "minecraft:melon_stem[age=7]": {
-    "bedrock_identifier": "minecraft:melon_stem",
-    "bedrock_data": 7
-  },
-  "minecraft:vine[east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 8
-  },
-  "minecraft:vine[east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 8
-  },
-  "minecraft:vine[east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 8
-  },
-  "minecraft:vine[east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 8
-  },
-  "minecraft:vine[east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 8
-  },
-  "minecraft:vine[east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 8
-  },
-  "minecraft:vine[east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 8
-  },
-  "minecraft:vine[east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 8
-  },
-  "minecraft:vine[east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 8
-  },
-  "minecraft:vine[east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 8
-  },
-  "minecraft:vine[east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 8
-  },
-  "minecraft:vine[east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 8
-  },
-  "minecraft:vine[east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 8
-  },
-  "minecraft:vine[east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 8
-  },
-  "minecraft:vine[east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 8
-  },
-  "minecraft:vine[east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 8
-  },
-  "minecraft:vine[east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 4
-  },
-  "minecraft:vine[east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 4
-  },
-  "minecraft:vine[east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 4
-  },
-  "minecraft:vine[east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 4
-  },
-  "minecraft:vine[east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 4
-  },
-  "minecraft:vine[east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 4
-  },
-  "minecraft:vine[east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 4
-  },
-  "minecraft:vine[east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 4
-  },
-  "minecraft:vine[east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 2
-  },
-  "minecraft:vine[east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 1
-  },
-  "minecraft:vine[east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 2
-  },
-  "minecraft:vine[east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 1
-  },
-  "minecraft:vine[east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 2
-  },
-  "minecraft:vine[east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 0
-  },
-  "minecraft:vine[east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 2
-  },
-  "minecraft:vine[east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:vine",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence_gate[facing=north,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_fence_gate[facing=north,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_fence_gate[facing=north,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_fence_gate[facing=north,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_fence_gate[facing=north,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_fence_gate[facing=north,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:oak_fence_gate[facing=north,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_fence_gate[facing=north,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_fence_gate[facing=south,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_fence_gate[facing=south,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_fence_gate[facing=south,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence_gate[facing=south,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence_gate[facing=south,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_fence_gate[facing=south,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_fence_gate[facing=south,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence_gate[facing=south,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence_gate[facing=west,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_fence_gate[facing=west,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_fence_gate[facing=west,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_fence_gate[facing=west,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_fence_gate[facing=west,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_fence_gate[facing=west,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_fence_gate[facing=west,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_fence_gate[facing=west,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_fence_gate[facing=east,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_fence_gate[facing=east,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_fence_gate[facing=east,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_fence_gate[facing=east,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_fence_gate[facing=east,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_fence_gate[facing=east,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_fence_gate[facing=east,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_fence_gate[facing=east,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:mycelium[snowy=true]": {
-    "bedrock_identifier": "minecraft:mycelium",
-    "bedrock_data": 0
-  },
-  "minecraft:mycelium[snowy=false]": {
-    "bedrock_identifier": "minecraft:mycelium",
-    "bedrock_data": 0
-  },
-  "minecraft:lily_pad": {
-    "bedrock_identifier": "minecraft:waterlily",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_bricks": {
-    "bedrock_identifier": "minecraft:nether_brick",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_fence",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:nether_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_wart[age=0]": {
-    "bedrock_identifier": "minecraft:nether_wart",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_wart[age=1]": {
-    "bedrock_identifier": "minecraft:nether_wart",
-    "bedrock_data": 1
-  },
-  "minecraft:nether_wart[age=2]": {
-    "bedrock_identifier": "minecraft:nether_wart",
-    "bedrock_data": 2
-  },
-  "minecraft:nether_wart[age=3]": {
-    "bedrock_identifier": "minecraft:nether_wart",
-    "bedrock_data": 3
-  },
-  "minecraft:enchanting_table": {
-    "bedrock_identifier": "minecraft:enchanting_table",
-    "bedrock_data": 0
-  },
-  "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=true]": {
-    "bedrock_identifier": "minecraft:brewing_stand",
-    "bedrock_data": 7
-  },
-  "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=false]": {
-    "bedrock_identifier": "minecraft:brewing_stand",
-    "bedrock_data": 3
-  },
-  "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=true]": {
-    "bedrock_identifier": "minecraft:brewing_stand",
-    "bedrock_data": 5
-  },
-  "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=false]": {
-    "bedrock_identifier": "minecraft:brewing_stand",
-    "bedrock_data": 1
-  },
-  "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=true]": {
-    "bedrock_identifier": "minecraft:brewing_stand",
-    "bedrock_data": 6
-  },
-  "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=false]": {
-    "bedrock_identifier": "minecraft:brewing_stand",
-    "bedrock_data": 2
-  },
-  "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=true]": {
-    "bedrock_identifier": "minecraft:brewing_stand",
-    "bedrock_data": 4
-  },
-  "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=false]": {
-    "bedrock_identifier": "minecraft:brewing_stand",
-    "bedrock_data": 0
-  },
-  "minecraft:cauldron[level=0]": {
-    "bedrock_identifier": "minecraft:cauldron",
-    "bedrock_data": 0
-  },
-  "minecraft:cauldron[level=1]": {
-    "bedrock_identifier": "minecraft:cauldron",
-    "bedrock_data": 3
-  },
-  "minecraft:cauldron[level=2]": {
-    "bedrock_identifier": "minecraft:cauldron",
-    "bedrock_data": 4
-  },
-  "minecraft:cauldron[level=3]": {
-    "bedrock_identifier": "minecraft:cauldron",
-    "bedrock_data": 7
-  },
-  "minecraft:end_portal": {
-    "bedrock_identifier": "minecraft:end_portal",
-    "bedrock_data": 0
-  },
-  "minecraft:end_portal_frame[eye=true,facing=north]": {
-    "bedrock_identifier": "minecraft:end_portal_frame",
-    "bedrock_data": 6
-  },
-  "minecraft:end_portal_frame[eye=true,facing=south]": {
-    "bedrock_identifier": "minecraft:end_portal_frame",
-    "bedrock_data": 4
-  },
-  "minecraft:end_portal_frame[eye=true,facing=west]": {
-    "bedrock_identifier": "minecraft:end_portal_frame",
-    "bedrock_data": 5
-  },
-  "minecraft:end_portal_frame[eye=true,facing=east]": {
-    "bedrock_identifier": "minecraft:end_portal_frame",
-    "bedrock_data": 7
-  },
-  "minecraft:end_portal_frame[eye=false,facing=north]": {
-    "bedrock_identifier": "minecraft:end_portal_frame",
-    "bedrock_data": 2
-  },
-  "minecraft:end_portal_frame[eye=false,facing=south]": {
-    "bedrock_identifier": "minecraft:end_portal_frame",
-    "bedrock_data": 0
-  },
-  "minecraft:end_portal_frame[eye=false,facing=west]": {
-    "bedrock_identifier": "minecraft:end_portal_frame",
-    "bedrock_data": 1
-  },
-  "minecraft:end_portal_frame[eye=false,facing=east]": {
-    "bedrock_identifier": "minecraft:end_portal_frame",
-    "bedrock_data": 3
-  },
-  "minecraft:end_stone": {
-    "bedrock_identifier": "minecraft:end_stone",
-    "bedrock_data": 0
-  },
-  "minecraft:dragon_egg": {
-    "bedrock_identifier": "minecraft:dragon_egg",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_lamp[lit=true]": {
-    "bedrock_identifier": "minecraft:lit_redstone_lamp",
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_lamp[lit=false]": {
-    "bedrock_identifier": "minecraft:redstone_lamp",
-    "bedrock_data": 0
-  },
-  "minecraft:cocoa[age=0,facing=north]": {
-    "bedrock_identifier": "minecraft:cocoa",
-    "bedrock_data": 2
-  },
-  "minecraft:cocoa[age=0,facing=south]": {
-    "bedrock_identifier": "minecraft:cocoa",
-    "bedrock_data": 0
-  },
-  "minecraft:cocoa[age=0,facing=west]": {
-    "bedrock_identifier": "minecraft:cocoa",
-    "bedrock_data": 1
-  },
-  "minecraft:cocoa[age=0,facing=east]": {
-    "bedrock_identifier": "minecraft:cocoa",
-    "bedrock_data": 3
-  },
-  "minecraft:cocoa[age=1,facing=north]": {
-    "bedrock_identifier": "minecraft:cocoa",
-    "bedrock_data": 6
-  },
-  "minecraft:cocoa[age=1,facing=south]": {
-    "bedrock_identifier": "minecraft:cocoa",
-    "bedrock_data": 4
-  },
-  "minecraft:cocoa[age=1,facing=west]": {
-    "bedrock_identifier": "minecraft:cocoa",
-    "bedrock_data": 5
-  },
-  "minecraft:cocoa[age=1,facing=east]": {
-    "bedrock_identifier": "minecraft:cocoa",
-    "bedrock_data": 7
-  },
-  "minecraft:cocoa[age=2,facing=north]": {
-    "bedrock_identifier": "minecraft:cocoa",
-    "bedrock_data": 10
-  },
-  "minecraft:cocoa[age=2,facing=south]": {
-    "bedrock_identifier": "minecraft:cocoa",
-    "bedrock_data": 8
-  },
-  "minecraft:cocoa[age=2,facing=west]": {
-    "bedrock_identifier": "minecraft:cocoa",
-    "bedrock_data": 9
-  },
-  "minecraft:cocoa[age=2,facing=east]": {
-    "bedrock_identifier": "minecraft:cocoa",
-    "bedrock_data": 11
-  },
-  "minecraft:sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:emerald_ore": {
-    "bedrock_identifier": "minecraft:emerald_ore",
-    "bedrock_data": 0
-  },
-  "minecraft:ender_chest[facing=north,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:ender_chest",
-    "bedrock_data": 2
-  },
-  "minecraft:ender_chest[facing=north,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:ender_chest",
-    "bedrock_data": 2
-  },
-  "minecraft:ender_chest[facing=south,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:ender_chest",
-    "bedrock_data": 3
-  },
-  "minecraft:ender_chest[facing=south,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:ender_chest",
-    "bedrock_data": 3
-  },
-  "minecraft:ender_chest[facing=west,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:ender_chest",
-    "bedrock_data": 4
-  },
-  "minecraft:ender_chest[facing=west,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:ender_chest",
-    "bedrock_data": 4
-  },
-  "minecraft:ender_chest[facing=east,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:ender_chest",
-    "bedrock_data": 5
-  },
-  "minecraft:ender_chest[facing=east,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:ender_chest",
-    "bedrock_data": 5
-  },
-  "minecraft:tripwire_hook[attached=true,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:tripwire_hook",
-    "bedrock_data": 14
-  },
-  "minecraft:tripwire_hook[attached=true,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:tripwire_hook",
-    "bedrock_data": 6
-  },
-  "minecraft:tripwire_hook[attached=true,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:tripwire_hook",
-    "bedrock_data": 12
-  },
-  "minecraft:tripwire_hook[attached=true,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:tripwire_hook",
-    "bedrock_data": 4
-  },
-  "minecraft:tripwire_hook[attached=true,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:tripwire_hook",
-    "bedrock_data": 13
-  },
-  "minecraft:tripwire_hook[attached=true,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:tripwire_hook",
-    "bedrock_data": 5
-  },
-  "minecraft:tripwire_hook[attached=true,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:tripwire_hook",
-    "bedrock_data": 15
-  },
-  "minecraft:tripwire_hook[attached=true,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:tripwire_hook",
-    "bedrock_data": 7
-  },
-  "minecraft:tripwire_hook[attached=false,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:tripwire_hook",
-    "bedrock_data": 10
-  },
-  "minecraft:tripwire_hook[attached=false,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:tripwire_hook",
-    "bedrock_data": 2
-  },
-  "minecraft:tripwire_hook[attached=false,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:tripwire_hook",
-    "bedrock_data": 8
-  },
-  "minecraft:tripwire_hook[attached=false,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:tripwire_hook",
-    "bedrock_data": 0
-  },
-  "minecraft:tripwire_hook[attached=false,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:tripwire_hook",
-    "bedrock_data": 9
-  },
-  "minecraft:tripwire_hook[attached=false,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:tripwire_hook",
-    "bedrock_data": 1
-  },
-  "minecraft:tripwire_hook[attached=false,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:tripwire_hook",
-    "bedrock_data": 11
-  },
-  "minecraft:tripwire_hook[attached=false,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:tripwire_hook",
-    "bedrock_data": 3
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=true,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 15
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=true,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 15
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=true,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 15
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=true,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 15
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=false,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 14
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=false,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 14
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=false,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 14
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=false,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 14
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=true,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 15
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=true,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 15
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=true,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 15
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=true,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 15
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=false,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 14
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=false,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 14
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=false,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 14
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=false,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 14
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=true,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 15
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=true,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 15
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=true,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 15
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=true,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 15
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=false,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 14
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=false,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 14
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=false,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 14
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=false,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 14
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 15
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 15
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 15
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 15
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 14
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 14
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 14
-  },
-  "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 14
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=true,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 7
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=true,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 7
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=true,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 7
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=true,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 7
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=false,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 6
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=false,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 6
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=false,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 6
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=false,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 6
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=true,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 7
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=true,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 7
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=true,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 7
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=true,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 7
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=false,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 6
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=false,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 6
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=false,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 6
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=false,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 6
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=true,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 7
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=true,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 7
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=true,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 7
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=true,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 7
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=false,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 6
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=false,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 6
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=false,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 6
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=false,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 6
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 7
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 7
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 7
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 7
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 6
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 6
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 6
-  },
-  "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 6
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=true,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 11
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=true,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 11
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=true,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 11
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=true,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 11
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=false,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 10
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=false,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 10
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=false,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 10
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=false,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 10
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=true,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 11
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=true,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 11
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=true,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 11
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=true,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 11
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=false,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 10
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=false,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 10
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=false,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 10
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=false,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 10
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=true,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 11
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=true,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 11
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=true,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 11
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=true,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 11
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=false,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 10
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=false,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 10
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=false,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 10
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=false,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 10
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 11
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 11
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 11
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 11
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 10
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 10
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 10
-  },
-  "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 10
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=true,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 3
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=true,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 3
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=true,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 3
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=true,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 3
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=false,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 2
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=false,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 2
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=false,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 2
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=false,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 2
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=true,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 3
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=true,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 3
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=true,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 3
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=true,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 3
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=false,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 2
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=false,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 2
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=false,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 2
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=false,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 2
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=true,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 3
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=true,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 3
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=true,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 3
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=true,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 3
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=false,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 2
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=false,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 2
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=false,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 2
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=false,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 2
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 3
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 3
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 3
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 3
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=true,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 2
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=true,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 2
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=false,west=true]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 2
-  },
-  "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=false,west=false]": {
-    "bedrock_identifier": "minecraft:tripWire",
-    "bedrock_data": 2
-  },
-  "minecraft:emerald_block": {
-    "bedrock_identifier": "minecraft:emerald_block",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:spruce_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:birch_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:jungle_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:command_block[conditional=true,facing=north]": {
-    "bedrock_identifier": "minecraft:command_block",
-    "bedrock_data": 10
-  },
-  "minecraft:command_block[conditional=true,facing=east]": {
-    "bedrock_identifier": "minecraft:command_block",
-    "bedrock_data": 13
-  },
-  "minecraft:command_block[conditional=true,facing=south]": {
-    "bedrock_identifier": "minecraft:command_block",
-    "bedrock_data": 11
-  },
-  "minecraft:command_block[conditional=true,facing=west]": {
-    "bedrock_identifier": "minecraft:command_block",
-    "bedrock_data": 12
-  },
-  "minecraft:command_block[conditional=true,facing=up]": {
-    "bedrock_identifier": "minecraft:command_block",
-    "bedrock_data": 9
-  },
-  "minecraft:command_block[conditional=true,facing=down]": {
-    "bedrock_identifier": "minecraft:command_block",
-    "bedrock_data": 8
-  },
-  "minecraft:command_block[conditional=false,facing=north]": {
-    "bedrock_identifier": "minecraft:command_block",
-    "bedrock_data": 2
-  },
-  "minecraft:command_block[conditional=false,facing=east]": {
-    "bedrock_identifier": "minecraft:command_block",
-    "bedrock_data": 5
-  },
-  "minecraft:command_block[conditional=false,facing=south]": {
-    "bedrock_identifier": "minecraft:command_block",
-    "bedrock_data": 3
-  },
-  "minecraft:command_block[conditional=false,facing=west]": {
-    "bedrock_identifier": "minecraft:command_block",
-    "bedrock_data": 4
-  },
-  "minecraft:command_block[conditional=false,facing=up]": {
-    "bedrock_identifier": "minecraft:command_block",
-    "bedrock_data": 1
-  },
-  "minecraft:command_block[conditional=false,facing=down]": {
-    "bedrock_identifier": "minecraft:command_block",
-    "bedrock_data": 0
-  },
-  "minecraft:beacon": {
-    "bedrock_identifier": "minecraft:beacon",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 1
-  },
-  "minecraft:flower_pot": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_oak_sapling": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_spruce_sapling": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_birch_sapling": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_jungle_sapling": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_acacia_sapling": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_dark_oak_sapling": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_fern": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_dandelion": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_poppy": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_blue_orchid": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_allium": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_azure_bluet": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_red_tulip": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_orange_tulip": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_white_tulip": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_pink_tulip": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_oxeye_daisy": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_cornflower": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_lily_of_the_valley": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_wither_rose": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_red_mushroom": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_brown_mushroom": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_dead_bush": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:potted_cactus": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:carrots[age=0]": {
-    "bedrock_identifier": "minecraft:carrots",
-    "bedrock_data": 0
-  },
-  "minecraft:carrots[age=1]": {
-    "bedrock_identifier": "minecraft:carrots",
-    "bedrock_data": 1
-  },
-  "minecraft:carrots[age=2]": {
-    "bedrock_identifier": "minecraft:carrots",
-    "bedrock_data": 2
-  },
-  "minecraft:carrots[age=3]": {
-    "bedrock_identifier": "minecraft:carrots",
-    "bedrock_data": 3
-  },
-  "minecraft:carrots[age=4]": {
-    "bedrock_identifier": "minecraft:carrots",
-    "bedrock_data": 4
-  },
-  "minecraft:carrots[age=5]": {
-    "bedrock_identifier": "minecraft:carrots",
-    "bedrock_data": 5
-  },
-  "minecraft:carrots[age=6]": {
-    "bedrock_identifier": "minecraft:carrots",
-    "bedrock_data": 6
-  },
-  "minecraft:carrots[age=7]": {
-    "bedrock_identifier": "minecraft:carrots",
-    "bedrock_data": 7
-  },
-  "minecraft:potatoes[age=0]": {
-    "bedrock_identifier": "minecraft:potatoes",
-    "bedrock_data": 0
-  },
-  "minecraft:potatoes[age=1]": {
-    "bedrock_identifier": "minecraft:potatoes",
-    "bedrock_data": 1
-  },
-  "minecraft:potatoes[age=2]": {
-    "bedrock_identifier": "minecraft:potatoes",
-    "bedrock_data": 2
-  },
-  "minecraft:potatoes[age=3]": {
-    "bedrock_identifier": "minecraft:potatoes",
-    "bedrock_data": 3
-  },
-  "minecraft:potatoes[age=4]": {
-    "bedrock_identifier": "minecraft:potatoes",
-    "bedrock_data": 4
-  },
-  "minecraft:potatoes[age=5]": {
-    "bedrock_identifier": "minecraft:potatoes",
-    "bedrock_data": 5
-  },
-  "minecraft:potatoes[age=6]": {
-    "bedrock_identifier": "minecraft:potatoes",
-    "bedrock_data": 6
-  },
-  "minecraft:potatoes[age=7]": {
-    "bedrock_identifier": "minecraft:potatoes",
-    "bedrock_data": 7
-  },
-  "minecraft:oak_button[face=floor,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 9
-  },
-  "minecraft:oak_button[face=floor,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_button[face=floor,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 9
-  },
-  "minecraft:oak_button[face=floor,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_button[face=floor,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 9
-  },
-  "minecraft:oak_button[face=floor,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_button[face=floor,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 9
-  },
-  "minecraft:oak_button[face=floor,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 1
-  },
-  "minecraft:oak_button[face=wall,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 10
-  },
-  "minecraft:oak_button[face=wall,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 2
-  },
-  "minecraft:oak_button[face=wall,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 11
-  },
-  "minecraft:oak_button[face=wall,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 3
-  },
-  "minecraft:oak_button[face=wall,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 12
-  },
-  "minecraft:oak_button[face=wall,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 4
-  },
-  "minecraft:oak_button[face=wall,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 13
-  },
-  "minecraft:oak_button[face=wall,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 5
-  },
-  "minecraft:oak_button[face=ceiling,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 8
-  },
-  "minecraft:oak_button[face=ceiling,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_button[face=ceiling,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 8
-  },
-  "minecraft:oak_button[face=ceiling,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_button[face=ceiling,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 8
-  },
-  "minecraft:oak_button[face=ceiling,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_button[face=ceiling,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 8
-  },
-  "minecraft:oak_button[face=ceiling,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:wooden_button",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_button[face=floor,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 9
-  },
-  "minecraft:spruce_button[face=floor,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_button[face=floor,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 9
-  },
-  "minecraft:spruce_button[face=floor,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_button[face=floor,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 9
-  },
-  "minecraft:spruce_button[face=floor,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_button[face=floor,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 9
-  },
-  "minecraft:spruce_button[face=floor,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_button[face=wall,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 10
-  },
-  "minecraft:spruce_button[face=wall,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_button[face=wall,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 11
-  },
-  "minecraft:spruce_button[face=wall,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_button[face=wall,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 12
-  },
-  "minecraft:spruce_button[face=wall,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_button[face=wall,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 13
-  },
-  "minecraft:spruce_button[face=wall,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_button[face=ceiling,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 8
-  },
-  "minecraft:spruce_button[face=ceiling,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_button[face=ceiling,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 8
-  },
-  "minecraft:spruce_button[face=ceiling,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_button[face=ceiling,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 8
-  },
-  "minecraft:spruce_button[face=ceiling,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_button[face=ceiling,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 8
-  },
-  "minecraft:spruce_button[face=ceiling,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_button",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_button[face=floor,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 9
-  },
-  "minecraft:birch_button[face=floor,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_button[face=floor,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 9
-  },
-  "minecraft:birch_button[face=floor,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_button[face=floor,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 9
-  },
-  "minecraft:birch_button[face=floor,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_button[face=floor,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 9
-  },
-  "minecraft:birch_button[face=floor,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_button[face=wall,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 10
-  },
-  "minecraft:birch_button[face=wall,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_button[face=wall,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 11
-  },
-  "minecraft:birch_button[face=wall,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_button[face=wall,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 12
-  },
-  "minecraft:birch_button[face=wall,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_button[face=wall,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 13
-  },
-  "minecraft:birch_button[face=wall,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_button[face=ceiling,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 8
-  },
-  "minecraft:birch_button[face=ceiling,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_button[face=ceiling,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 8
-  },
-  "minecraft:birch_button[face=ceiling,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_button[face=ceiling,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 8
-  },
-  "minecraft:birch_button[face=ceiling,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_button[face=ceiling,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 8
-  },
-  "minecraft:birch_button[face=ceiling,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_button",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_button[face=floor,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 9
-  },
-  "minecraft:jungle_button[face=floor,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_button[face=floor,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 9
-  },
-  "minecraft:jungle_button[face=floor,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_button[face=floor,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 9
-  },
-  "minecraft:jungle_button[face=floor,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_button[face=floor,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 9
-  },
-  "minecraft:jungle_button[face=floor,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_button[face=wall,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 10
-  },
-  "minecraft:jungle_button[face=wall,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_button[face=wall,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 11
-  },
-  "minecraft:jungle_button[face=wall,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_button[face=wall,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 12
-  },
-  "minecraft:jungle_button[face=wall,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_button[face=wall,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 13
-  },
-  "minecraft:jungle_button[face=wall,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_button[face=ceiling,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 8
-  },
-  "minecraft:jungle_button[face=ceiling,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_button[face=ceiling,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 8
-  },
-  "minecraft:jungle_button[face=ceiling,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_button[face=ceiling,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 8
-  },
-  "minecraft:jungle_button[face=ceiling,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_button[face=ceiling,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 8
-  },
-  "minecraft:jungle_button[face=ceiling,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_button",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_button[face=floor,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 9
-  },
-  "minecraft:acacia_button[face=floor,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_button[face=floor,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 9
-  },
-  "minecraft:acacia_button[face=floor,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_button[face=floor,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 9
-  },
-  "minecraft:acacia_button[face=floor,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_button[face=floor,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 9
-  },
-  "minecraft:acacia_button[face=floor,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_button[face=wall,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 10
-  },
-  "minecraft:acacia_button[face=wall,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_button[face=wall,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 11
-  },
-  "minecraft:acacia_button[face=wall,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_button[face=wall,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 12
-  },
-  "minecraft:acacia_button[face=wall,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_button[face=wall,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 13
-  },
-  "minecraft:acacia_button[face=wall,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_button[face=ceiling,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 8
-  },
-  "minecraft:acacia_button[face=ceiling,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_button[face=ceiling,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 8
-  },
-  "minecraft:acacia_button[face=ceiling,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_button[face=ceiling,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 8
-  },
-  "minecraft:acacia_button[face=ceiling,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_button[face=ceiling,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 8
-  },
-  "minecraft:acacia_button[face=ceiling,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_button",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_button[face=floor,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 9
-  },
-  "minecraft:dark_oak_button[face=floor,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_button[face=floor,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 9
-  },
-  "minecraft:dark_oak_button[face=floor,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_button[face=floor,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 9
-  },
-  "minecraft:dark_oak_button[face=floor,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_button[face=floor,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 9
-  },
-  "minecraft:dark_oak_button[face=floor,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_button[face=wall,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 10
-  },
-  "minecraft:dark_oak_button[face=wall,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_button[face=wall,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 11
-  },
-  "minecraft:dark_oak_button[face=wall,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_button[face=wall,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 12
-  },
-  "minecraft:dark_oak_button[face=wall,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_button[face=wall,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 13
-  },
-  "minecraft:dark_oak_button[face=wall,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_button[face=ceiling,facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 8
-  },
-  "minecraft:dark_oak_button[face=ceiling,facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_button[face=ceiling,facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 8
-  },
-  "minecraft:dark_oak_button[face=ceiling,facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_button[face=ceiling,facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 8
-  },
-  "minecraft:dark_oak_button[face=ceiling,facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_button[face=ceiling,facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 8
-  },
-  "minecraft:dark_oak_button[face=ceiling,facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_button",
-    "bedrock_data": 0
-  },
-  "minecraft:skeleton_skull[rotation=0]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:skeleton_skull[rotation=1]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:skeleton_skull[rotation=2]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:skeleton_skull[rotation=3]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:skeleton_skull[rotation=4]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:skeleton_skull[rotation=5]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:skeleton_skull[rotation=6]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:skeleton_skull[rotation=7]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:skeleton_skull[rotation=8]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:skeleton_skull[rotation=9]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:skeleton_skull[rotation=10]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:skeleton_skull[rotation=11]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:skeleton_skull[rotation=12]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:skeleton_skull[rotation=13]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:skeleton_skull[rotation=14]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:skeleton_skull[rotation=15]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:skeleton_wall_skull[facing=north]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 2
-  },
-  "minecraft:skeleton_wall_skull[facing=south]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 3
-  },
-  "minecraft:skeleton_wall_skull[facing=west]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 4
-  },
-  "minecraft:skeleton_wall_skull[facing=east]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 5
-  },
-  "minecraft:wither_skeleton_skull[rotation=0]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:wither_skeleton_skull[rotation=1]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:wither_skeleton_skull[rotation=2]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:wither_skeleton_skull[rotation=3]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:wither_skeleton_skull[rotation=4]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:wither_skeleton_skull[rotation=5]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:wither_skeleton_skull[rotation=6]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:wither_skeleton_skull[rotation=7]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:wither_skeleton_skull[rotation=8]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:wither_skeleton_skull[rotation=9]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:wither_skeleton_skull[rotation=10]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:wither_skeleton_skull[rotation=11]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:wither_skeleton_skull[rotation=12]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:wither_skeleton_skull[rotation=13]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:wither_skeleton_skull[rotation=14]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:wither_skeleton_skull[rotation=15]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:wither_skeleton_wall_skull[facing=north]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 2
-  },
-  "minecraft:wither_skeleton_wall_skull[facing=south]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 3
-  },
-  "minecraft:wither_skeleton_wall_skull[facing=west]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 4
-  },
-  "minecraft:wither_skeleton_wall_skull[facing=east]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 5
-  },
-  "minecraft:zombie_head[rotation=0]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:zombie_head[rotation=1]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:zombie_head[rotation=2]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:zombie_head[rotation=3]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:zombie_head[rotation=4]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:zombie_head[rotation=5]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:zombie_head[rotation=6]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:zombie_head[rotation=7]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:zombie_head[rotation=8]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:zombie_head[rotation=9]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:zombie_head[rotation=10]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:zombie_head[rotation=11]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:zombie_head[rotation=12]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:zombie_head[rotation=13]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:zombie_head[rotation=14]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:zombie_head[rotation=15]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:zombie_wall_head[facing=north]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 2
-  },
-  "minecraft:zombie_wall_head[facing=south]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 3
-  },
-  "minecraft:zombie_wall_head[facing=west]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 4
-  },
-  "minecraft:zombie_wall_head[facing=east]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 5
-  },
-  "minecraft:player_head[rotation=0]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:player_head[rotation=1]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:player_head[rotation=2]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:player_head[rotation=3]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:player_head[rotation=4]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:player_head[rotation=5]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:player_head[rotation=6]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:player_head[rotation=7]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:player_head[rotation=8]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:player_head[rotation=9]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:player_head[rotation=10]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:player_head[rotation=11]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:player_head[rotation=12]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:player_head[rotation=13]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:player_head[rotation=14]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:player_head[rotation=15]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:player_wall_head[facing=north]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 2
-  },
-  "minecraft:player_wall_head[facing=south]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 3
-  },
-  "minecraft:player_wall_head[facing=west]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 4
-  },
-  "minecraft:player_wall_head[facing=east]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 5
-  },
-  "minecraft:creeper_head[rotation=0]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:creeper_head[rotation=1]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:creeper_head[rotation=2]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:creeper_head[rotation=3]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:creeper_head[rotation=4]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:creeper_head[rotation=5]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:creeper_head[rotation=6]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:creeper_head[rotation=7]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:creeper_head[rotation=8]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:creeper_head[rotation=9]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:creeper_head[rotation=10]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:creeper_head[rotation=11]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:creeper_head[rotation=12]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:creeper_head[rotation=13]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:creeper_head[rotation=14]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:creeper_head[rotation=15]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:creeper_wall_head[facing=north]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 2
-  },
-  "minecraft:creeper_wall_head[facing=south]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 3
-  },
-  "minecraft:creeper_wall_head[facing=west]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 4
-  },
-  "minecraft:creeper_wall_head[facing=east]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 5
-  },
-  "minecraft:dragon_head[rotation=0]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:dragon_head[rotation=1]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:dragon_head[rotation=2]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:dragon_head[rotation=3]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:dragon_head[rotation=4]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:dragon_head[rotation=5]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:dragon_head[rotation=6]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:dragon_head[rotation=7]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:dragon_head[rotation=8]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:dragon_head[rotation=9]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:dragon_head[rotation=10]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:dragon_head[rotation=11]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:dragon_head[rotation=12]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:dragon_head[rotation=13]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:dragon_head[rotation=14]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:dragon_head[rotation=15]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 1
-  },
-  "minecraft:dragon_wall_head[facing=north]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 2
-  },
-  "minecraft:dragon_wall_head[facing=south]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 3
-  },
-  "minecraft:dragon_wall_head[facing=west]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 4
-  },
-  "minecraft:dragon_wall_head[facing=east]": {
-    "bedrock_identifier": "minecraft:skull",
-    "bedrock_data": 5
-  },
-  "minecraft:anvil[facing=north]": {
-    "bedrock_identifier": "minecraft:anvil",
-    "bedrock_data": 2
-  },
-  "minecraft:anvil[facing=south]": {
-    "bedrock_identifier": "minecraft:anvil",
-    "bedrock_data": 0
-  },
-  "minecraft:anvil[facing=west]": {
-    "bedrock_identifier": "minecraft:anvil",
-    "bedrock_data": 1
-  },
-  "minecraft:anvil[facing=east]": {
-    "bedrock_identifier": "minecraft:anvil",
-    "bedrock_data": 3
-  },
-  "minecraft:chipped_anvil[facing=north]": {
-    "bedrock_identifier": "minecraft:anvil",
-    "bedrock_data": 6
-  },
-  "minecraft:chipped_anvil[facing=south]": {
-    "bedrock_identifier": "minecraft:anvil",
-    "bedrock_data": 4
-  },
-  "minecraft:chipped_anvil[facing=west]": {
-    "bedrock_identifier": "minecraft:anvil",
-    "bedrock_data": 5
-  },
-  "minecraft:chipped_anvil[facing=east]": {
-    "bedrock_identifier": "minecraft:anvil",
-    "bedrock_data": 7
-  },
-  "minecraft:damaged_anvil[facing=north]": {
-    "bedrock_identifier": "minecraft:anvil",
-    "bedrock_data": 10
-  },
-  "minecraft:damaged_anvil[facing=south]": {
-    "bedrock_identifier": "minecraft:anvil",
-    "bedrock_data": 8
-  },
-  "minecraft:damaged_anvil[facing=west]": {
-    "bedrock_identifier": "minecraft:anvil",
-    "bedrock_data": 9
-  },
-  "minecraft:damaged_anvil[facing=east]": {
-    "bedrock_identifier": "minecraft:anvil",
-    "bedrock_data": 11
-  },
-  "minecraft:trapped_chest[facing=north,type=single,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 2
-  },
-  "minecraft:trapped_chest[facing=north,type=single,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 2
-  },
-  "minecraft:trapped_chest[facing=north,type=left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 2
-  },
-  "minecraft:trapped_chest[facing=north,type=left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 2
-  },
-  "minecraft:trapped_chest[facing=north,type=right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 2
-  },
-  "minecraft:trapped_chest[facing=north,type=right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 2
-  },
-  "minecraft:trapped_chest[facing=south,type=single,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 3
-  },
-  "minecraft:trapped_chest[facing=south,type=single,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 3
-  },
-  "minecraft:trapped_chest[facing=south,type=left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 3
-  },
-  "minecraft:trapped_chest[facing=south,type=left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 3
-  },
-  "minecraft:trapped_chest[facing=south,type=right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 3
-  },
-  "minecraft:trapped_chest[facing=south,type=right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 3
-  },
-  "minecraft:trapped_chest[facing=west,type=single,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 4
-  },
-  "minecraft:trapped_chest[facing=west,type=single,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 4
-  },
-  "minecraft:trapped_chest[facing=west,type=left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 4
-  },
-  "minecraft:trapped_chest[facing=west,type=left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 4
-  },
-  "minecraft:trapped_chest[facing=west,type=right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 4
-  },
-  "minecraft:trapped_chest[facing=west,type=right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 4
-  },
-  "minecraft:trapped_chest[facing=east,type=single,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 5
-  },
-  "minecraft:trapped_chest[facing=east,type=single,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 5
-  },
-  "minecraft:trapped_chest[facing=east,type=left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 5
-  },
-  "minecraft:trapped_chest[facing=east,type=left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 5
-  },
-  "minecraft:trapped_chest[facing=east,type=right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 5
-  },
-  "minecraft:trapped_chest[facing=east,type=right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:trapped_chest",
-    "bedrock_data": 5
-  },
-  "minecraft:light_weighted_pressure_plate[power=0]": {
-    "bedrock_identifier": "minecraft:light_weighted_pressure_plate",
-    "bedrock_data": 0
-  },
-  "minecraft:light_weighted_pressure_plate[power=1]": {
-    "bedrock_identifier": "minecraft:light_weighted_pressure_plate",
-    "bedrock_data": 1
-  },
-  "minecraft:light_weighted_pressure_plate[power=2]": {
-    "bedrock_identifier": "minecraft:light_weighted_pressure_plate",
-    "bedrock_data": 2
-  },
-  "minecraft:light_weighted_pressure_plate[power=3]": {
-    "bedrock_identifier": "minecraft:light_weighted_pressure_plate",
-    "bedrock_data": 3
-  },
-  "minecraft:light_weighted_pressure_plate[power=4]": {
-    "bedrock_identifier": "minecraft:light_weighted_pressure_plate",
-    "bedrock_data": 4
-  },
-  "minecraft:light_weighted_pressure_plate[power=5]": {
-    "bedrock_identifier": "minecraft:light_weighted_pressure_plate",
-    "bedrock_data": 5
-  },
-  "minecraft:light_weighted_pressure_plate[power=6]": {
-    "bedrock_identifier": "minecraft:light_weighted_pressure_plate",
-    "bedrock_data": 6
-  },
-  "minecraft:light_weighted_pressure_plate[power=7]": {
-    "bedrock_identifier": "minecraft:light_weighted_pressure_plate",
-    "bedrock_data": 7
-  },
-  "minecraft:light_weighted_pressure_plate[power=8]": {
-    "bedrock_identifier": "minecraft:light_weighted_pressure_plate",
-    "bedrock_data": 8
-  },
-  "minecraft:light_weighted_pressure_plate[power=9]": {
-    "bedrock_identifier": "minecraft:light_weighted_pressure_plate",
-    "bedrock_data": 9
-  },
-  "minecraft:light_weighted_pressure_plate[power=10]": {
-    "bedrock_identifier": "minecraft:light_weighted_pressure_plate",
-    "bedrock_data": 10
-  },
-  "minecraft:light_weighted_pressure_plate[power=11]": {
-    "bedrock_identifier": "minecraft:light_weighted_pressure_plate",
-    "bedrock_data": 11
-  },
-  "minecraft:light_weighted_pressure_plate[power=12]": {
-    "bedrock_identifier": "minecraft:light_weighted_pressure_plate",
-    "bedrock_data": 12
-  },
-  "minecraft:light_weighted_pressure_plate[power=13]": {
-    "bedrock_identifier": "minecraft:light_weighted_pressure_plate",
-    "bedrock_data": 13
-  },
-  "minecraft:light_weighted_pressure_plate[power=14]": {
-    "bedrock_identifier": "minecraft:light_weighted_pressure_plate",
-    "bedrock_data": 14
-  },
-  "minecraft:light_weighted_pressure_plate[power=15]": {
-    "bedrock_identifier": "minecraft:light_weighted_pressure_plate",
-    "bedrock_data": 15
-  },
-  "minecraft:heavy_weighted_pressure_plate[power=0]": {
-    "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate",
-    "bedrock_data": 0
-  },
-  "minecraft:heavy_weighted_pressure_plate[power=1]": {
-    "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate",
-    "bedrock_data": 1
-  },
-  "minecraft:heavy_weighted_pressure_plate[power=2]": {
-    "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate",
-    "bedrock_data": 2
-  },
-  "minecraft:heavy_weighted_pressure_plate[power=3]": {
-    "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate",
-    "bedrock_data": 3
-  },
-  "minecraft:heavy_weighted_pressure_plate[power=4]": {
-    "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate",
-    "bedrock_data": 4
-  },
-  "minecraft:heavy_weighted_pressure_plate[power=5]": {
-    "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate",
-    "bedrock_data": 5
-  },
-  "minecraft:heavy_weighted_pressure_plate[power=6]": {
-    "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate",
-    "bedrock_data": 6
-  },
-  "minecraft:heavy_weighted_pressure_plate[power=7]": {
-    "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate",
-    "bedrock_data": 7
-  },
-  "minecraft:heavy_weighted_pressure_plate[power=8]": {
-    "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate",
-    "bedrock_data": 8
-  },
-  "minecraft:heavy_weighted_pressure_plate[power=9]": {
-    "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate",
-    "bedrock_data": 9
-  },
-  "minecraft:heavy_weighted_pressure_plate[power=10]": {
-    "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate",
-    "bedrock_data": 10
-  },
-  "minecraft:heavy_weighted_pressure_plate[power=11]": {
-    "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate",
-    "bedrock_data": 11
-  },
-  "minecraft:heavy_weighted_pressure_plate[power=12]": {
-    "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate",
-    "bedrock_data": 12
-  },
-  "minecraft:heavy_weighted_pressure_plate[power=13]": {
-    "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate",
-    "bedrock_data": 13
-  },
-  "minecraft:heavy_weighted_pressure_plate[power=14]": {
-    "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate",
-    "bedrock_data": 14
-  },
-  "minecraft:heavy_weighted_pressure_plate[power=15]": {
-    "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate",
-    "bedrock_data": 15
-  },
-  "minecraft:comparator[facing=north,mode=compare,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_comparator",
-    "bedrock_data": 10
-  },
-  "minecraft:comparator[facing=north,mode=compare,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_comparator",
-    "bedrock_data": 2
-  },
-  "minecraft:comparator[facing=north,mode=subtract,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_comparator",
-    "bedrock_data": 14
-  },
-  "minecraft:comparator[facing=north,mode=subtract,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_comparator",
-    "bedrock_data": 6
-  },
-  "minecraft:comparator[facing=south,mode=compare,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_comparator",
-    "bedrock_data": 8
-  },
-  "minecraft:comparator[facing=south,mode=compare,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_comparator",
-    "bedrock_data": 0
-  },
-  "minecraft:comparator[facing=south,mode=subtract,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_comparator",
-    "bedrock_data": 12
-  },
-  "minecraft:comparator[facing=south,mode=subtract,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_comparator",
-    "bedrock_data": 4
-  },
-  "minecraft:comparator[facing=west,mode=compare,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_comparator",
-    "bedrock_data": 9
-  },
-  "minecraft:comparator[facing=west,mode=compare,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_comparator",
-    "bedrock_data": 1
-  },
-  "minecraft:comparator[facing=west,mode=subtract,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_comparator",
-    "bedrock_data": 13
-  },
-  "minecraft:comparator[facing=west,mode=subtract,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_comparator",
-    "bedrock_data": 5
-  },
-  "minecraft:comparator[facing=east,mode=compare,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_comparator",
-    "bedrock_data": 11
-  },
-  "minecraft:comparator[facing=east,mode=compare,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_comparator",
-    "bedrock_data": 3
-  },
-  "minecraft:comparator[facing=east,mode=subtract,powered=true]": {
-    "bedrock_identifier": "minecraft:powered_comparator",
-    "bedrock_data": 15
-  },
-  "minecraft:comparator[facing=east,mode=subtract,powered=false]": {
-    "bedrock_identifier": "minecraft:unpowered_comparator",
-    "bedrock_data": 7
-  },
-  "minecraft:daylight_detector[inverted=true,power=0]": {
-    "bedrock_identifier": "minecraft:daylight_detector_inverted",
-    "bedrock_data": 0
-  },
-  "minecraft:daylight_detector[inverted=true,power=1]": {
-    "bedrock_identifier": "minecraft:daylight_detector_inverted",
-    "bedrock_data": 1
-  },
-  "minecraft:daylight_detector[inverted=true,power=2]": {
-    "bedrock_identifier": "minecraft:daylight_detector_inverted",
-    "bedrock_data": 2
-  },
-  "minecraft:daylight_detector[inverted=true,power=3]": {
-    "bedrock_identifier": "minecraft:daylight_detector_inverted",
-    "bedrock_data": 3
-  },
-  "minecraft:daylight_detector[inverted=true,power=4]": {
-    "bedrock_identifier": "minecraft:daylight_detector_inverted",
-    "bedrock_data": 4
-  },
-  "minecraft:daylight_detector[inverted=true,power=5]": {
-    "bedrock_identifier": "minecraft:daylight_detector_inverted",
-    "bedrock_data": 5
-  },
-  "minecraft:daylight_detector[inverted=true,power=6]": {
-    "bedrock_identifier": "minecraft:daylight_detector_inverted",
-    "bedrock_data": 6
-  },
-  "minecraft:daylight_detector[inverted=true,power=7]": {
-    "bedrock_identifier": "minecraft:daylight_detector_inverted",
-    "bedrock_data": 7
-  },
-  "minecraft:daylight_detector[inverted=true,power=8]": {
-    "bedrock_identifier": "minecraft:daylight_detector_inverted",
-    "bedrock_data": 8
-  },
-  "minecraft:daylight_detector[inverted=true,power=9]": {
-    "bedrock_identifier": "minecraft:daylight_detector_inverted",
-    "bedrock_data": 9
-  },
-  "minecraft:daylight_detector[inverted=true,power=10]": {
-    "bedrock_identifier": "minecraft:daylight_detector_inverted",
-    "bedrock_data": 10
-  },
-  "minecraft:daylight_detector[inverted=true,power=11]": {
-    "bedrock_identifier": "minecraft:daylight_detector_inverted",
-    "bedrock_data": 11
-  },
-  "minecraft:daylight_detector[inverted=true,power=12]": {
-    "bedrock_identifier": "minecraft:daylight_detector_inverted",
-    "bedrock_data": 12
-  },
-  "minecraft:daylight_detector[inverted=true,power=13]": {
-    "bedrock_identifier": "minecraft:daylight_detector_inverted",
-    "bedrock_data": 13
-  },
-  "minecraft:daylight_detector[inverted=true,power=14]": {
-    "bedrock_identifier": "minecraft:daylight_detector_inverted",
-    "bedrock_data": 14
-  },
-  "minecraft:daylight_detector[inverted=true,power=15]": {
-    "bedrock_identifier": "minecraft:daylight_detector_inverted",
-    "bedrock_data": 15
-  },
-  "minecraft:daylight_detector[inverted=false,power=0]": {
-    "bedrock_identifier": "minecraft:daylight_detector",
-    "bedrock_data": 0
-  },
-  "minecraft:daylight_detector[inverted=false,power=1]": {
-    "bedrock_identifier": "minecraft:daylight_detector",
-    "bedrock_data": 1
-  },
-  "minecraft:daylight_detector[inverted=false,power=2]": {
-    "bedrock_identifier": "minecraft:daylight_detector",
-    "bedrock_data": 2
-  },
-  "minecraft:daylight_detector[inverted=false,power=3]": {
-    "bedrock_identifier": "minecraft:daylight_detector",
-    "bedrock_data": 3
-  },
-  "minecraft:daylight_detector[inverted=false,power=4]": {
-    "bedrock_identifier": "minecraft:daylight_detector",
-    "bedrock_data": 4
-  },
-  "minecraft:daylight_detector[inverted=false,power=5]": {
-    "bedrock_identifier": "minecraft:daylight_detector",
-    "bedrock_data": 5
-  },
-  "minecraft:daylight_detector[inverted=false,power=6]": {
-    "bedrock_identifier": "minecraft:daylight_detector",
-    "bedrock_data": 6
-  },
-  "minecraft:daylight_detector[inverted=false,power=7]": {
-    "bedrock_identifier": "minecraft:daylight_detector",
-    "bedrock_data": 7
-  },
-  "minecraft:daylight_detector[inverted=false,power=8]": {
-    "bedrock_identifier": "minecraft:daylight_detector",
-    "bedrock_data": 8
-  },
-  "minecraft:daylight_detector[inverted=false,power=9]": {
-    "bedrock_identifier": "minecraft:daylight_detector",
-    "bedrock_data": 9
-  },
-  "minecraft:daylight_detector[inverted=false,power=10]": {
-    "bedrock_identifier": "minecraft:daylight_detector",
-    "bedrock_data": 10
-  },
-  "minecraft:daylight_detector[inverted=false,power=11]": {
-    "bedrock_identifier": "minecraft:daylight_detector",
-    "bedrock_data": 11
-  },
-  "minecraft:daylight_detector[inverted=false,power=12]": {
-    "bedrock_identifier": "minecraft:daylight_detector",
-    "bedrock_data": 12
-  },
-  "minecraft:daylight_detector[inverted=false,power=13]": {
-    "bedrock_identifier": "minecraft:daylight_detector",
-    "bedrock_data": 13
-  },
-  "minecraft:daylight_detector[inverted=false,power=14]": {
-    "bedrock_identifier": "minecraft:daylight_detector",
-    "bedrock_data": 14
-  },
-  "minecraft:daylight_detector[inverted=false,power=15]": {
-    "bedrock_identifier": "minecraft:daylight_detector",
-    "bedrock_data": 15
-  },
-  "minecraft:redstone_block": {
-    "bedrock_identifier": "minecraft:redstone_block",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_quartz_ore": {
-    "bedrock_identifier": "minecraft:quartz_ore",
-    "bedrock_data": 0
-  },
-  "minecraft:hopper[enabled=true,facing=down]": {
-    "bedrock_identifier": "minecraft:hopper",
-    "bedrock_data": 8
-  },
-  "minecraft:hopper[enabled=true,facing=north]": {
-    "bedrock_identifier": "minecraft:hopper",
-    "bedrock_data": 10
-  },
-  "minecraft:hopper[enabled=true,facing=south]": {
-    "bedrock_identifier": "minecraft:hopper",
-    "bedrock_data": 11
-  },
-  "minecraft:hopper[enabled=true,facing=west]": {
-    "bedrock_identifier": "minecraft:hopper",
-    "bedrock_data": 12
-  },
-  "minecraft:hopper[enabled=true,facing=east]": {
-    "bedrock_identifier": "minecraft:hopper",
-    "bedrock_data": 13
-  },
-  "minecraft:hopper[enabled=false,facing=down]": {
-    "bedrock_identifier": "minecraft:hopper",
-    "bedrock_data": 0
-  },
-  "minecraft:hopper[enabled=false,facing=north]": {
-    "bedrock_identifier": "minecraft:hopper",
-    "bedrock_data": 2
-  },
-  "minecraft:hopper[enabled=false,facing=south]": {
-    "bedrock_identifier": "minecraft:hopper",
-    "bedrock_data": 3
-  },
-  "minecraft:hopper[enabled=false,facing=west]": {
-    "bedrock_identifier": "minecraft:hopper",
-    "bedrock_data": 4
-  },
-  "minecraft:hopper[enabled=false,facing=east]": {
-    "bedrock_identifier": "minecraft:hopper",
-    "bedrock_data": 5
-  },
-  "minecraft:quartz_block": {
-    "bedrock_identifier": "minecraft:quartz_block",
-    "bedrock_data": 0
-  },
-  "minecraft:chiseled_quartz_block": {
-    "bedrock_identifier": "minecraft:quartz_block",
-    "bedrock_data": 1
-  },
-  "minecraft:quartz_pillar[axis=x]": {
-    "bedrock_identifier": "minecraft:quartz_block",
-    "bedrock_data": 6
-  },
-  "minecraft:quartz_pillar[axis=y]": {
-    "bedrock_identifier": "minecraft:quartz_block",
-    "bedrock_data": 2
-  },
-  "minecraft:quartz_pillar[axis=z]": {
-    "bedrock_identifier": "minecraft:quartz_block",
-    "bedrock_data": 10
-  },
-  "minecraft:quartz_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:quartz_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:quartz_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:quartz_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:quartz_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:quartz_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:quartz_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:quartz_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:quartz_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:activator_rail[powered=true,shape=north_south]": {
-    "bedrock_identifier": "minecraft:activator_rail",
-    "bedrock_data": 8
-  },
-  "minecraft:activator_rail[powered=true,shape=east_west]": {
-    "bedrock_identifier": "minecraft:activator_rail",
-    "bedrock_data": 9
-  },
-  "minecraft:activator_rail[powered=true,shape=ascending_east]": {
-    "bedrock_identifier": "minecraft:activator_rail",
-    "bedrock_data": 10
-  },
-  "minecraft:activator_rail[powered=true,shape=ascending_west]": {
-    "bedrock_identifier": "minecraft:activator_rail",
-    "bedrock_data": 11
-  },
-  "minecraft:activator_rail[powered=true,shape=ascending_north]": {
-    "bedrock_identifier": "minecraft:activator_rail",
-    "bedrock_data": 12
-  },
-  "minecraft:activator_rail[powered=true,shape=ascending_south]": {
-    "bedrock_identifier": "minecraft:activator_rail",
-    "bedrock_data": 13
-  },
-  "minecraft:activator_rail[powered=false,shape=north_south]": {
-    "bedrock_identifier": "minecraft:activator_rail",
-    "bedrock_data": 0
-  },
-  "minecraft:activator_rail[powered=false,shape=east_west]": {
-    "bedrock_identifier": "minecraft:activator_rail",
-    "bedrock_data": 1
-  },
-  "minecraft:activator_rail[powered=false,shape=ascending_east]": {
-    "bedrock_identifier": "minecraft:activator_rail",
-    "bedrock_data": 2
-  },
-  "minecraft:activator_rail[powered=false,shape=ascending_west]": {
-    "bedrock_identifier": "minecraft:activator_rail",
-    "bedrock_data": 3
-  },
-  "minecraft:activator_rail[powered=false,shape=ascending_north]": {
-    "bedrock_identifier": "minecraft:activator_rail",
-    "bedrock_data": 4
-  },
-  "minecraft:activator_rail[powered=false,shape=ascending_south]": {
-    "bedrock_identifier": "minecraft:activator_rail",
-    "bedrock_data": 5
-  },
-  "minecraft:dropper[facing=north,triggered=true]": {
-    "bedrock_identifier": "minecraft:dropper",
-    "bedrock_data": 10
-  },
-  "minecraft:dropper[facing=north,triggered=false]": {
-    "bedrock_identifier": "minecraft:dropper",
-    "bedrock_data": 2
-  },
-  "minecraft:dropper[facing=east,triggered=true]": {
-    "bedrock_identifier": "minecraft:dropper",
-    "bedrock_data": 13
-  },
-  "minecraft:dropper[facing=east,triggered=false]": {
-    "bedrock_identifier": "minecraft:dropper",
-    "bedrock_data": 5
-  },
-  "minecraft:dropper[facing=south,triggered=true]": {
-    "bedrock_identifier": "minecraft:dropper",
-    "bedrock_data": 11
-  },
-  "minecraft:dropper[facing=south,triggered=false]": {
-    "bedrock_identifier": "minecraft:dropper",
-    "bedrock_data": 3
-  },
-  "minecraft:dropper[facing=west,triggered=true]": {
-    "bedrock_identifier": "minecraft:dropper",
-    "bedrock_data": 12
-  },
-  "minecraft:dropper[facing=west,triggered=false]": {
-    "bedrock_identifier": "minecraft:dropper",
-    "bedrock_data": 4
-  },
-  "minecraft:dropper[facing=up,triggered=true]": {
-    "bedrock_identifier": "minecraft:dropper",
-    "bedrock_data": 9
-  },
-  "minecraft:dropper[facing=up,triggered=false]": {
-    "bedrock_identifier": "minecraft:dropper",
-    "bedrock_data": 1
-  },
-  "minecraft:dropper[facing=down,triggered=true]": {
-    "bedrock_identifier": "minecraft:dropper",
-    "bedrock_data": 8
-  },
-  "minecraft:dropper[facing=down,triggered=false]": {
-    "bedrock_identifier": "minecraft:dropper",
-    "bedrock_data": 0
-  },
-  "minecraft:white_terracotta": {
-    "bedrock_identifier": "minecraft:stained_hardened_clay",
-    "bedrock_data": 0
-  },
-  "minecraft:orange_terracotta": {
-    "bedrock_identifier": "minecraft:stained_hardened_clay",
-    "bedrock_data": 1
-  },
-  "minecraft:magenta_terracotta": {
-    "bedrock_identifier": "minecraft:stained_hardened_clay",
-    "bedrock_data": 2
-  },
-  "minecraft:light_blue_terracotta": {
-    "bedrock_identifier": "minecraft:stained_hardened_clay",
-    "bedrock_data": 3
-  },
-  "minecraft:yellow_terracotta": {
-    "bedrock_identifier": "minecraft:stained_hardened_clay",
-    "bedrock_data": 4
-  },
-  "minecraft:lime_terracotta": {
-    "bedrock_identifier": "minecraft:stained_hardened_clay",
-    "bedrock_data": 5
-  },
-  "minecraft:pink_terracotta": {
-    "bedrock_identifier": "minecraft:stained_hardened_clay",
-    "bedrock_data": 6
-  },
-  "minecraft:gray_terracotta": {
-    "bedrock_identifier": "minecraft:stained_hardened_clay",
-    "bedrock_data": 7
-  },
-  "minecraft:light_gray_terracotta": {
-    "bedrock_identifier": "minecraft:stained_hardened_clay",
-    "bedrock_data": 8
-  },
-  "minecraft:cyan_terracotta": {
-    "bedrock_identifier": "minecraft:stained_hardened_clay",
-    "bedrock_data": 9
-  },
-  "minecraft:purple_terracotta": {
-    "bedrock_identifier": "minecraft:stained_hardened_clay",
-    "bedrock_data": 10
-  },
-  "minecraft:blue_terracotta": {
-    "bedrock_identifier": "minecraft:stained_hardened_clay",
-    "bedrock_data": 11
-  },
-  "minecraft:brown_terracotta": {
-    "bedrock_identifier": "minecraft:stained_hardened_clay",
-    "bedrock_data": 12
-  },
-  "minecraft:green_terracotta": {
-    "bedrock_identifier": "minecraft:stained_hardened_clay",
-    "bedrock_data": 13
-  },
-  "minecraft:red_terracotta": {
-    "bedrock_identifier": "minecraft:stained_hardened_clay",
-    "bedrock_data": 14
-  },
-  "minecraft:black_terracotta": {
-    "bedrock_identifier": "minecraft:stained_hardened_clay",
-    "bedrock_data": 15
-  },
-  "minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 0
-  },
-  "minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 1
-  },
-  "minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 2
-  },
-  "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 3
-  },
-  "minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 4
-  },
-  "minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 5
-  },
-  "minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 6
-  },
-  "minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 7
-  },
-  "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 8
-  },
-  "minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 9
-  },
-  "minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 10
-  },
-  "minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 11
-  },
-  "minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 12
-  },
-  "minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 13
-  },
-  "minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 14
-  },
-  "minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:stained_glass_pane",
-    "bedrock_data": 15
-  },
-  "minecraft:acacia_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:acacia_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:slime_block": {
-    "bedrock_identifier": "minecraft:slime",
-    "bedrock_data": 0
-  },
-  "minecraft:barrier": {
-    "bedrock_identifier": "minecraft:barrier",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 15
-  },
-  "minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 7
-  },
-  "minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 11
-  },
-  "minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 3
-  },
-  "minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 14
-  },
-  "minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 6
-  },
-  "minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 10
-  },
-  "minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 2
-  },
-  "minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 13
-  },
-  "minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 5
-  },
-  "minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 9
-  },
-  "minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 1
-  },
-  "minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 12
-  },
-  "minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 4
-  },
-  "minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 8
-  },
-  "minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:iron_trapdoor",
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine": {
-    "bedrock_identifier": "minecraft:prismarine",
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_bricks": {
-    "bedrock_identifier": "minecraft:prismarine",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_prismarine": {
-    "bedrock_identifier": "minecraft:prismarine",
-    "bedrock_data": 1
-  },
-  "minecraft:prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:prismarine_bricks_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:dark_prismarine_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 10
-  },
-  "minecraft:prismarine_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 10
-  },
-  "minecraft:prismarine_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab2",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab2",
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_brick_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 12
-  },
-  "minecraft:prismarine_brick_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 12
-  },
-  "minecraft:prismarine_brick_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 4
-  },
-  "minecraft:prismarine_brick_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 4
-  },
-  "minecraft:prismarine_brick_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab2",
-    "bedrock_data": 4
-  },
-  "minecraft:prismarine_brick_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab2",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_prismarine_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 11
-  },
-  "minecraft:dark_prismarine_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 11
-  },
-  "minecraft:dark_prismarine_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_prismarine_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_prismarine_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab2",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_prismarine_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab2",
-    "bedrock_data": 3
-  },
-  "minecraft:sea_lantern": {
-    "bedrock_identifier": "minecraft:seaLantern",
-    "bedrock_data": 0
-  },
-  "minecraft:hay_block[axis=x]": {
-    "bedrock_identifier": "minecraft:hay_block",
-    "bedrock_data": 4
-  },
-  "minecraft:hay_block[axis=y]": {
-    "bedrock_identifier": "minecraft:hay_block",
-    "bedrock_data": 0
-  },
-  "minecraft:hay_block[axis=z]": {
-    "bedrock_identifier": "minecraft:hay_block",
-    "bedrock_data": 8
-  },
-  "minecraft:white_carpet": {
-    "bedrock_identifier": "minecraft:carpet",
-    "bedrock_data": 0
-  },
-  "minecraft:orange_carpet": {
-    "bedrock_identifier": "minecraft:carpet",
-    "bedrock_data": 1
-  },
-  "minecraft:magenta_carpet": {
-    "bedrock_identifier": "minecraft:carpet",
-    "bedrock_data": 2
-  },
-  "minecraft:light_blue_carpet": {
-    "bedrock_identifier": "minecraft:carpet",
-    "bedrock_data": 3
-  },
-  "minecraft:yellow_carpet": {
-    "bedrock_identifier": "minecraft:carpet",
-    "bedrock_data": 4
-  },
-  "minecraft:lime_carpet": {
-    "bedrock_identifier": "minecraft:carpet",
-    "bedrock_data": 5
-  },
-  "minecraft:pink_carpet": {
-    "bedrock_identifier": "minecraft:carpet",
-    "bedrock_data": 6
-  },
-  "minecraft:gray_carpet": {
-    "bedrock_identifier": "minecraft:carpet",
-    "bedrock_data": 7
-  },
-  "minecraft:light_gray_carpet": {
-    "bedrock_identifier": "minecraft:carpet",
-    "bedrock_data": 8
-  },
-  "minecraft:cyan_carpet": {
-    "bedrock_identifier": "minecraft:carpet",
-    "bedrock_data": 9
-  },
-  "minecraft:purple_carpet": {
-    "bedrock_identifier": "minecraft:carpet",
-    "bedrock_data": 10
-  },
-  "minecraft:blue_carpet": {
-    "bedrock_identifier": "minecraft:carpet",
-    "bedrock_data": 11
-  },
-  "minecraft:brown_carpet": {
-    "bedrock_identifier": "minecraft:carpet",
-    "bedrock_data": 12
-  },
-  "minecraft:green_carpet": {
-    "bedrock_identifier": "minecraft:carpet",
-    "bedrock_data": 13
-  },
-  "minecraft:red_carpet": {
-    "bedrock_identifier": "minecraft:carpet",
-    "bedrock_data": 14
-  },
-  "minecraft:black_carpet": {
-    "bedrock_identifier": "minecraft:carpet",
-    "bedrock_data": 15
-  },
-  "minecraft:terracotta": {
-    "bedrock_identifier": "minecraft:hardened_clay",
-    "bedrock_data": 0
-  },
-  "minecraft:coal_block": {
-    "bedrock_identifier": "minecraft:coal_block",
-    "bedrock_data": 0
-  },
-  "minecraft:packed_ice": {
-    "bedrock_identifier": "minecraft:packed_ice",
-    "bedrock_data": 0
-  },
-  "minecraft:sunflower[half=upper]": {
-    "bedrock_identifier": "minecraft:double_plant",
-    "bedrock_data": 8
-  },
-  "minecraft:sunflower[half=lower]": {
-    "bedrock_identifier": "minecraft:double_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:lilac[half=upper]": {
-    "bedrock_identifier": "minecraft:double_plant",
-    "bedrock_data": 8
-  },
-  "minecraft:lilac[half=lower]": {
-    "bedrock_identifier": "minecraft:double_plant",
-    "bedrock_data": 1
-  },
-  "minecraft:rose_bush[half=upper]": {
-    "bedrock_identifier": "minecraft:double_plant",
-    "bedrock_data": 8
-  },
-  "minecraft:rose_bush[half=lower]": {
-    "bedrock_identifier": "minecraft:double_plant",
-    "bedrock_data": 4
-  },
-  "minecraft:peony[half=upper]": {
-    "bedrock_identifier": "minecraft:double_plant",
-    "bedrock_data": 8
-  },
-  "minecraft:peony[half=lower]": {
-    "bedrock_identifier": "minecraft:double_plant",
-    "bedrock_data": 5
-  },
-  "minecraft:tall_grass[half=upper]": {
-    "bedrock_identifier": "minecraft:double_plant",
-    "bedrock_data": 8
-  },
-  "minecraft:tall_grass[half=lower]": {
-    "bedrock_identifier": "minecraft:double_plant",
-    "bedrock_data": 2
-  },
-  "minecraft:large_fern[half=upper]": {
-    "bedrock_identifier": "minecraft:double_plant",
-    "bedrock_data": 8
-  },
-  "minecraft:large_fern[half=lower]": {
-    "bedrock_identifier": "minecraft:double_plant",
-    "bedrock_data": 3
-  },
-  "minecraft:white_banner[rotation=0]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 0
-  },
-  "minecraft:white_banner[rotation=1]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 1
-  },
-  "minecraft:white_banner[rotation=2]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:white_banner[rotation=3]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:white_banner[rotation=4]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:white_banner[rotation=5]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:white_banner[rotation=6]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 6
-  },
-  "minecraft:white_banner[rotation=7]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 7
-  },
-  "minecraft:white_banner[rotation=8]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 8
-  },
-  "minecraft:white_banner[rotation=9]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 9
-  },
-  "minecraft:white_banner[rotation=10]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 10
-  },
-  "minecraft:white_banner[rotation=11]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 11
-  },
-  "minecraft:white_banner[rotation=12]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 12
-  },
-  "minecraft:white_banner[rotation=13]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 13
-  },
-  "minecraft:white_banner[rotation=14]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 14
-  },
-  "minecraft:white_banner[rotation=15]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 15
-  },
-  "minecraft:orange_banner[rotation=0]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 0
-  },
-  "minecraft:orange_banner[rotation=1]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_banner[rotation=2]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:orange_banner[rotation=3]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:orange_banner[rotation=4]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:orange_banner[rotation=5]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:orange_banner[rotation=6]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 6
-  },
-  "minecraft:orange_banner[rotation=7]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 7
-  },
-  "minecraft:orange_banner[rotation=8]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 8
-  },
-  "minecraft:orange_banner[rotation=9]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 9
-  },
-  "minecraft:orange_banner[rotation=10]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 10
-  },
-  "minecraft:orange_banner[rotation=11]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 11
-  },
-  "minecraft:orange_banner[rotation=12]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 12
-  },
-  "minecraft:orange_banner[rotation=13]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 13
-  },
-  "minecraft:orange_banner[rotation=14]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 14
-  },
-  "minecraft:orange_banner[rotation=15]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 15
-  },
-  "minecraft:magenta_banner[rotation=0]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 0
-  },
-  "minecraft:magenta_banner[rotation=1]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 1
-  },
-  "minecraft:magenta_banner[rotation=2]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_banner[rotation=3]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:magenta_banner[rotation=4]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:magenta_banner[rotation=5]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:magenta_banner[rotation=6]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 6
-  },
-  "minecraft:magenta_banner[rotation=7]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 7
-  },
-  "minecraft:magenta_banner[rotation=8]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 8
-  },
-  "minecraft:magenta_banner[rotation=9]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 9
-  },
-  "minecraft:magenta_banner[rotation=10]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 10
-  },
-  "minecraft:magenta_banner[rotation=11]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 11
-  },
-  "minecraft:magenta_banner[rotation=12]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 12
-  },
-  "minecraft:magenta_banner[rotation=13]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 13
-  },
-  "minecraft:magenta_banner[rotation=14]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 14
-  },
-  "minecraft:magenta_banner[rotation=15]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 15
-  },
-  "minecraft:light_blue_banner[rotation=0]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 0
-  },
-  "minecraft:light_blue_banner[rotation=1]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 1
-  },
-  "minecraft:light_blue_banner[rotation=2]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:light_blue_banner[rotation=3]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_banner[rotation=4]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:light_blue_banner[rotation=5]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:light_blue_banner[rotation=6]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 6
-  },
-  "minecraft:light_blue_banner[rotation=7]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 7
-  },
-  "minecraft:light_blue_banner[rotation=8]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 8
-  },
-  "minecraft:light_blue_banner[rotation=9]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 9
-  },
-  "minecraft:light_blue_banner[rotation=10]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 10
-  },
-  "minecraft:light_blue_banner[rotation=11]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 11
-  },
-  "minecraft:light_blue_banner[rotation=12]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 12
-  },
-  "minecraft:light_blue_banner[rotation=13]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 13
-  },
-  "minecraft:light_blue_banner[rotation=14]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 14
-  },
-  "minecraft:light_blue_banner[rotation=15]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 15
-  },
-  "minecraft:yellow_banner[rotation=0]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 0
-  },
-  "minecraft:yellow_banner[rotation=1]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 1
-  },
-  "minecraft:yellow_banner[rotation=2]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:yellow_banner[rotation=3]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:yellow_banner[rotation=4]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_banner[rotation=5]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:yellow_banner[rotation=6]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 6
-  },
-  "minecraft:yellow_banner[rotation=7]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 7
-  },
-  "minecraft:yellow_banner[rotation=8]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 8
-  },
-  "minecraft:yellow_banner[rotation=9]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 9
-  },
-  "minecraft:yellow_banner[rotation=10]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 10
-  },
-  "minecraft:yellow_banner[rotation=11]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 11
-  },
-  "minecraft:yellow_banner[rotation=12]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 12
-  },
-  "minecraft:yellow_banner[rotation=13]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 13
-  },
-  "minecraft:yellow_banner[rotation=14]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 14
-  },
-  "minecraft:yellow_banner[rotation=15]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 15
-  },
-  "minecraft:lime_banner[rotation=0]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 0
-  },
-  "minecraft:lime_banner[rotation=1]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 1
-  },
-  "minecraft:lime_banner[rotation=2]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:lime_banner[rotation=3]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:lime_banner[rotation=4]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:lime_banner[rotation=5]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_banner[rotation=6]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 6
-  },
-  "minecraft:lime_banner[rotation=7]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 7
-  },
-  "minecraft:lime_banner[rotation=8]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 8
-  },
-  "minecraft:lime_banner[rotation=9]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 9
-  },
-  "minecraft:lime_banner[rotation=10]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 10
-  },
-  "minecraft:lime_banner[rotation=11]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 11
-  },
-  "minecraft:lime_banner[rotation=12]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 12
-  },
-  "minecraft:lime_banner[rotation=13]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 13
-  },
-  "minecraft:lime_banner[rotation=14]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 14
-  },
-  "minecraft:lime_banner[rotation=15]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 15
-  },
-  "minecraft:pink_banner[rotation=0]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 0
-  },
-  "minecraft:pink_banner[rotation=1]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 1
-  },
-  "minecraft:pink_banner[rotation=2]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:pink_banner[rotation=3]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:pink_banner[rotation=4]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:pink_banner[rotation=5]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:pink_banner[rotation=6]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_banner[rotation=7]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 7
-  },
-  "minecraft:pink_banner[rotation=8]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 8
-  },
-  "minecraft:pink_banner[rotation=9]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 9
-  },
-  "minecraft:pink_banner[rotation=10]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 10
-  },
-  "minecraft:pink_banner[rotation=11]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 11
-  },
-  "minecraft:pink_banner[rotation=12]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 12
-  },
-  "minecraft:pink_banner[rotation=13]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 13
-  },
-  "minecraft:pink_banner[rotation=14]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 14
-  },
-  "minecraft:pink_banner[rotation=15]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 15
-  },
-  "minecraft:gray_banner[rotation=0]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 0
-  },
-  "minecraft:gray_banner[rotation=1]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 1
-  },
-  "minecraft:gray_banner[rotation=2]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:gray_banner[rotation=3]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:gray_banner[rotation=4]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:gray_banner[rotation=5]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:gray_banner[rotation=6]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 6
-  },
-  "minecraft:gray_banner[rotation=7]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_banner[rotation=8]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 8
-  },
-  "minecraft:gray_banner[rotation=9]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 9
-  },
-  "minecraft:gray_banner[rotation=10]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 10
-  },
-  "minecraft:gray_banner[rotation=11]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 11
-  },
-  "minecraft:gray_banner[rotation=12]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 12
-  },
-  "minecraft:gray_banner[rotation=13]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 13
-  },
-  "minecraft:gray_banner[rotation=14]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 14
-  },
-  "minecraft:gray_banner[rotation=15]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 15
-  },
-  "minecraft:light_gray_banner[rotation=0]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 0
-  },
-  "minecraft:light_gray_banner[rotation=1]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 1
-  },
-  "minecraft:light_gray_banner[rotation=2]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:light_gray_banner[rotation=3]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:light_gray_banner[rotation=4]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:light_gray_banner[rotation=5]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:light_gray_banner[rotation=6]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 6
-  },
-  "minecraft:light_gray_banner[rotation=7]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 7
-  },
-  "minecraft:light_gray_banner[rotation=8]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_banner[rotation=9]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 9
-  },
-  "minecraft:light_gray_banner[rotation=10]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 10
-  },
-  "minecraft:light_gray_banner[rotation=11]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 11
-  },
-  "minecraft:light_gray_banner[rotation=12]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 12
-  },
-  "minecraft:light_gray_banner[rotation=13]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 13
-  },
-  "minecraft:light_gray_banner[rotation=14]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 14
-  },
-  "minecraft:light_gray_banner[rotation=15]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 15
-  },
-  "minecraft:cyan_banner[rotation=0]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 0
-  },
-  "minecraft:cyan_banner[rotation=1]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 1
-  },
-  "minecraft:cyan_banner[rotation=2]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:cyan_banner[rotation=3]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:cyan_banner[rotation=4]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:cyan_banner[rotation=5]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:cyan_banner[rotation=6]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 6
-  },
-  "minecraft:cyan_banner[rotation=7]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 7
-  },
-  "minecraft:cyan_banner[rotation=8]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 8
-  },
-  "minecraft:cyan_banner[rotation=9]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_banner[rotation=10]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 10
-  },
-  "minecraft:cyan_banner[rotation=11]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 11
-  },
-  "minecraft:cyan_banner[rotation=12]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 12
-  },
-  "minecraft:cyan_banner[rotation=13]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 13
-  },
-  "minecraft:cyan_banner[rotation=14]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 14
-  },
-  "minecraft:cyan_banner[rotation=15]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 15
-  },
-  "minecraft:purple_banner[rotation=0]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 0
-  },
-  "minecraft:purple_banner[rotation=1]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 1
-  },
-  "minecraft:purple_banner[rotation=2]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:purple_banner[rotation=3]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:purple_banner[rotation=4]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:purple_banner[rotation=5]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:purple_banner[rotation=6]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 6
-  },
-  "minecraft:purple_banner[rotation=7]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 7
-  },
-  "minecraft:purple_banner[rotation=8]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 8
-  },
-  "minecraft:purple_banner[rotation=9]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 9
-  },
-  "minecraft:purple_banner[rotation=10]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_banner[rotation=11]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 11
-  },
-  "minecraft:purple_banner[rotation=12]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 12
-  },
-  "minecraft:purple_banner[rotation=13]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 13
-  },
-  "minecraft:purple_banner[rotation=14]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 14
-  },
-  "minecraft:purple_banner[rotation=15]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 15
-  },
-  "minecraft:blue_banner[rotation=0]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 0
-  },
-  "minecraft:blue_banner[rotation=1]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 1
-  },
-  "minecraft:blue_banner[rotation=2]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:blue_banner[rotation=3]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:blue_banner[rotation=4]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:blue_banner[rotation=5]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:blue_banner[rotation=6]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 6
-  },
-  "minecraft:blue_banner[rotation=7]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 7
-  },
-  "minecraft:blue_banner[rotation=8]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 8
-  },
-  "minecraft:blue_banner[rotation=9]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 9
-  },
-  "minecraft:blue_banner[rotation=10]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 10
-  },
-  "minecraft:blue_banner[rotation=11]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_banner[rotation=12]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 12
-  },
-  "minecraft:blue_banner[rotation=13]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 13
-  },
-  "minecraft:blue_banner[rotation=14]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 14
-  },
-  "minecraft:blue_banner[rotation=15]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 15
-  },
-  "minecraft:brown_banner[rotation=0]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 0
-  },
-  "minecraft:brown_banner[rotation=1]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 1
-  },
-  "minecraft:brown_banner[rotation=2]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:brown_banner[rotation=3]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:brown_banner[rotation=4]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:brown_banner[rotation=5]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:brown_banner[rotation=6]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 6
-  },
-  "minecraft:brown_banner[rotation=7]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 7
-  },
-  "minecraft:brown_banner[rotation=8]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 8
-  },
-  "minecraft:brown_banner[rotation=9]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 9
-  },
-  "minecraft:brown_banner[rotation=10]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 10
-  },
-  "minecraft:brown_banner[rotation=11]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 11
-  },
-  "minecraft:brown_banner[rotation=12]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_banner[rotation=13]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 13
-  },
-  "minecraft:brown_banner[rotation=14]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 14
-  },
-  "minecraft:brown_banner[rotation=15]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 15
-  },
-  "minecraft:green_banner[rotation=0]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 0
-  },
-  "minecraft:green_banner[rotation=1]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 1
-  },
-  "minecraft:green_banner[rotation=2]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:green_banner[rotation=3]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:green_banner[rotation=4]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:green_banner[rotation=5]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:green_banner[rotation=6]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 6
-  },
-  "minecraft:green_banner[rotation=7]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 7
-  },
-  "minecraft:green_banner[rotation=8]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 8
-  },
-  "minecraft:green_banner[rotation=9]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 9
-  },
-  "minecraft:green_banner[rotation=10]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 10
-  },
-  "minecraft:green_banner[rotation=11]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 11
-  },
-  "minecraft:green_banner[rotation=12]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 12
-  },
-  "minecraft:green_banner[rotation=13]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 13
-  },
-  "minecraft:green_banner[rotation=14]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 14
-  },
-  "minecraft:green_banner[rotation=15]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 15
-  },
-  "minecraft:red_banner[rotation=0]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 0
-  },
-  "minecraft:red_banner[rotation=1]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 1
-  },
-  "minecraft:red_banner[rotation=2]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:red_banner[rotation=3]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:red_banner[rotation=4]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:red_banner[rotation=5]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:red_banner[rotation=6]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 6
-  },
-  "minecraft:red_banner[rotation=7]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 7
-  },
-  "minecraft:red_banner[rotation=8]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 8
-  },
-  "minecraft:red_banner[rotation=9]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 9
-  },
-  "minecraft:red_banner[rotation=10]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 10
-  },
-  "minecraft:red_banner[rotation=11]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 11
-  },
-  "minecraft:red_banner[rotation=12]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 12
-  },
-  "minecraft:red_banner[rotation=13]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 13
-  },
-  "minecraft:red_banner[rotation=14]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 14
-  },
-  "minecraft:red_banner[rotation=15]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 15
-  },
-  "minecraft:black_banner[rotation=0]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 0
-  },
-  "minecraft:black_banner[rotation=1]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 1
-  },
-  "minecraft:black_banner[rotation=2]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:black_banner[rotation=3]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:black_banner[rotation=4]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:black_banner[rotation=5]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:black_banner[rotation=6]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 6
-  },
-  "minecraft:black_banner[rotation=7]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 7
-  },
-  "minecraft:black_banner[rotation=8]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 8
-  },
-  "minecraft:black_banner[rotation=9]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 9
-  },
-  "minecraft:black_banner[rotation=10]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 10
-  },
-  "minecraft:black_banner[rotation=11]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 11
-  },
-  "minecraft:black_banner[rotation=12]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 12
-  },
-  "minecraft:black_banner[rotation=13]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 13
-  },
-  "minecraft:black_banner[rotation=14]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 14
-  },
-  "minecraft:black_banner[rotation=15]": {
-    "bedrock_identifier": "minecraft:standing_banner",
-    "bedrock_data": 15
-  },
-  "minecraft:white_wall_banner[facing=north]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:white_wall_banner[facing=south]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:white_wall_banner[facing=west]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:white_wall_banner[facing=east]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:orange_wall_banner[facing=north]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:orange_wall_banner[facing=south]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:orange_wall_banner[facing=west]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:orange_wall_banner[facing=east]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:magenta_wall_banner[facing=north]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_wall_banner[facing=south]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:magenta_wall_banner[facing=west]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:magenta_wall_banner[facing=east]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:light_blue_wall_banner[facing=north]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:light_blue_wall_banner[facing=south]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_wall_banner[facing=west]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:light_blue_wall_banner[facing=east]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:yellow_wall_banner[facing=north]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:yellow_wall_banner[facing=south]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:yellow_wall_banner[facing=west]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_wall_banner[facing=east]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_wall_banner[facing=north]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:lime_wall_banner[facing=south]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:lime_wall_banner[facing=west]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:lime_wall_banner[facing=east]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:pink_wall_banner[facing=north]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:pink_wall_banner[facing=south]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:pink_wall_banner[facing=west]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:pink_wall_banner[facing=east]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:gray_wall_banner[facing=north]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:gray_wall_banner[facing=south]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:gray_wall_banner[facing=west]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:gray_wall_banner[facing=east]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:light_gray_wall_banner[facing=north]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:light_gray_wall_banner[facing=south]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:light_gray_wall_banner[facing=west]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:light_gray_wall_banner[facing=east]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:cyan_wall_banner[facing=north]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:cyan_wall_banner[facing=south]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:cyan_wall_banner[facing=west]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:cyan_wall_banner[facing=east]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:purple_wall_banner[facing=north]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:purple_wall_banner[facing=south]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:purple_wall_banner[facing=west]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:purple_wall_banner[facing=east]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:blue_wall_banner[facing=north]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:blue_wall_banner[facing=south]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:blue_wall_banner[facing=west]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:blue_wall_banner[facing=east]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:brown_wall_banner[facing=north]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:brown_wall_banner[facing=south]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:brown_wall_banner[facing=west]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:brown_wall_banner[facing=east]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:green_wall_banner[facing=north]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:green_wall_banner[facing=south]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:green_wall_banner[facing=west]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:green_wall_banner[facing=east]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:red_wall_banner[facing=north]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:red_wall_banner[facing=south]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:red_wall_banner[facing=west]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:red_wall_banner[facing=east]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:black_wall_banner[facing=north]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 2
-  },
-  "minecraft:black_wall_banner[facing=south]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 3
-  },
-  "minecraft:black_wall_banner[facing=west]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 4
-  },
-  "minecraft:black_wall_banner[facing=east]": {
-    "bedrock_identifier": "minecraft:wall_banner",
-    "bedrock_data": 5
-  },
-  "minecraft:red_sandstone": {
-    "bedrock_identifier": "minecraft:red_sandstone",
-    "bedrock_data": 0
-  },
-  "minecraft:chiseled_red_sandstone": {
-    "bedrock_identifier": "minecraft:red_sandstone",
-    "bedrock_data": 1
-  },
-  "minecraft:cut_red_sandstone": {
-    "bedrock_identifier": "minecraft:red_sandstone",
-    "bedrock_data": 2
-  },
-  "minecraft:red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 8
-  },
-  "minecraft:oak_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 8
-  },
-  "minecraft:oak_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_wooden_slab",
-    "bedrock_data": 0
-  },
-  "minecraft:oak_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_wooden_slab",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 9
-  },
-  "minecraft:spruce_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 9
-  },
-  "minecraft:spruce_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_wooden_slab",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_wooden_slab",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 10
-  },
-  "minecraft:birch_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 10
-  },
-  "minecraft:birch_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_wooden_slab",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_wooden_slab",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 11
-  },
-  "minecraft:jungle_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 11
-  },
-  "minecraft:jungle_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_wooden_slab",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_wooden_slab",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 12
-  },
-  "minecraft:acacia_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 12
-  },
-  "minecraft:acacia_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_wooden_slab",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_wooden_slab",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 13
-  },
-  "minecraft:dark_oak_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 13
-  },
-  "minecraft:dark_oak_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:wooden_slab",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_wooden_slab",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_wooden_slab",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab4",
-    "bedrock_data": 10
-  },
-  "minecraft:stone_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab4",
-    "bedrock_data": 10
-  },
-  "minecraft:stone_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab4",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab4",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab4",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab4",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_stone_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 8
-  },
-  "minecraft:smooth_stone_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 8
-  },
-  "minecraft:smooth_stone_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_stone_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_stone_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_stone_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab",
-    "bedrock_data": 0
-  },
-  "minecraft:sandstone_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 9
-  },
-  "minecraft:sandstone_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 9
-  },
-  "minecraft:sandstone_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 1
-  },
-  "minecraft:sandstone_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 1
-  },
-  "minecraft:sandstone_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab",
-    "bedrock_data": 1
-  },
-  "minecraft:sandstone_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab",
-    "bedrock_data": 1
-  },
-  "minecraft:cut_sandstone_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab4",
-    "bedrock_data": 11
-  },
-  "minecraft:cut_sandstone_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab4",
-    "bedrock_data": 11
-  },
-  "minecraft:cut_sandstone_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab4",
-    "bedrock_data": 3
-  },
-  "minecraft:cut_sandstone_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab4",
-    "bedrock_data": 3
-  },
-  "minecraft:cut_sandstone_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab4",
-    "bedrock_data": 3
-  },
-  "minecraft:cut_sandstone_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab4",
-    "bedrock_data": 3
-  },
-  "minecraft:petrified_oak_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 10
-  },
-  "minecraft:petrified_oak_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 10
-  },
-  "minecraft:petrified_oak_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 2
-  },
-  "minecraft:petrified_oak_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 2
-  },
-  "minecraft:petrified_oak_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab",
-    "bedrock_data": 2
-  },
-  "minecraft:petrified_oak_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab",
-    "bedrock_data": 2
-  },
-  "minecraft:cobblestone_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 11
-  },
-  "minecraft:cobblestone_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 11
-  },
-  "minecraft:cobblestone_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 3
-  },
-  "minecraft:cobblestone_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 3
-  },
-  "minecraft:cobblestone_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab",
-    "bedrock_data": 3
-  },
-  "minecraft:cobblestone_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab",
-    "bedrock_data": 3
-  },
-  "minecraft:brick_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 12
-  },
-  "minecraft:brick_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 12
-  },
-  "minecraft:brick_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 4
-  },
-  "minecraft:brick_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 4
-  },
-  "minecraft:brick_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab",
-    "bedrock_data": 4
-  },
-  "minecraft:brick_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab",
-    "bedrock_data": 4
-  },
-  "minecraft:stone_brick_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 13
-  },
-  "minecraft:stone_brick_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 13
-  },
-  "minecraft:stone_brick_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_brick_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_brick_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_brick_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab",
-    "bedrock_data": 5
-  },
-  "minecraft:nether_brick_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 15
-  },
-  "minecraft:nether_brick_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 15
-  },
-  "minecraft:nether_brick_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 7
-  },
-  "minecraft:nether_brick_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 7
-  },
-  "minecraft:nether_brick_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab",
-    "bedrock_data": 7
-  },
-  "minecraft:nether_brick_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab",
-    "bedrock_data": 7
-  },
-  "minecraft:quartz_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 14
-  },
-  "minecraft:quartz_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 14
-  },
-  "minecraft:quartz_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 6
-  },
-  "minecraft:quartz_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab",
-    "bedrock_data": 6
-  },
-  "minecraft:quartz_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab",
-    "bedrock_data": 6
-  },
-  "minecraft:quartz_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab",
-    "bedrock_data": 6
-  },
-  "minecraft:red_sandstone_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 8
-  },
-  "minecraft:red_sandstone_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 8
-  },
-  "minecraft:red_sandstone_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 0
-  },
-  "minecraft:red_sandstone_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 0
-  },
-  "minecraft:red_sandstone_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab2",
-    "bedrock_data": 0
-  },
-  "minecraft:red_sandstone_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab2",
-    "bedrock_data": 0
-  },
-  "minecraft:cut_red_sandstone_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab4",
-    "bedrock_data": 12
-  },
-  "minecraft:cut_red_sandstone_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab4",
-    "bedrock_data": 12
-  },
-  "minecraft:cut_red_sandstone_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab4",
-    "bedrock_data": 4
-  },
-  "minecraft:cut_red_sandstone_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab4",
-    "bedrock_data": 4
-  },
-  "minecraft:cut_red_sandstone_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab4",
-    "bedrock_data": 4
-  },
-  "minecraft:cut_red_sandstone_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab4",
-    "bedrock_data": 4
-  },
-  "minecraft:purpur_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 9
-  },
-  "minecraft:purpur_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 9
-  },
-  "minecraft:purpur_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 1
-  },
-  "minecraft:purpur_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 1
-  },
-  "minecraft:purpur_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab2",
-    "bedrock_data": 1
-  },
-  "minecraft:purpur_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab2",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_stone": {
-    "bedrock_identifier": "minecraft:smooth_stone",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_sandstone": {
-    "bedrock_identifier": "minecraft:sandstone",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_quartz": {
-    "bedrock_identifier": "minecraft:quartz_block",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_red_sandstone": {
-    "bedrock_identifier": "minecraft:red_sandstone",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_fence_gate[facing=north,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_fence_gate[facing=north,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_fence_gate[facing=north,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_fence_gate[facing=north,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_fence_gate[facing=north,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_fence_gate[facing=north,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_fence_gate[facing=north,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_fence_gate[facing=north,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_fence_gate[facing=south,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_fence_gate[facing=south,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_fence_gate[facing=south,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_fence_gate[facing=south,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_fence_gate[facing=south,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_fence_gate[facing=south,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_fence_gate[facing=south,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_fence_gate[facing=south,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_fence_gate[facing=west,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_fence_gate[facing=west,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_fence_gate[facing=west,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence_gate[facing=west,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence_gate[facing=west,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_fence_gate[facing=west,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_fence_gate[facing=west,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence_gate[facing=west,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence_gate[facing=east,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_fence_gate[facing=east,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_fence_gate[facing=east,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_fence_gate[facing=east,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_fence_gate[facing=east,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_fence_gate[facing=east,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_fence_gate[facing=east,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_fence_gate[facing=east,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_fence_gate[facing=north,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_fence_gate[facing=north,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_fence_gate[facing=north,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence_gate[facing=north,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence_gate[facing=north,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_fence_gate[facing=north,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_fence_gate[facing=north,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence_gate[facing=north,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence_gate[facing=south,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_fence_gate[facing=south,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_fence_gate[facing=south,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_fence_gate[facing=south,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_fence_gate[facing=south,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_fence_gate[facing=south,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_fence_gate[facing=south,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_fence_gate[facing=south,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_fence_gate[facing=west,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_fence_gate[facing=west,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_fence_gate[facing=west,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_fence_gate[facing=west,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_fence_gate[facing=west,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_fence_gate[facing=west,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_fence_gate[facing=west,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_fence_gate[facing=west,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_fence_gate[facing=east,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_fence_gate[facing=east,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_fence_gate[facing=east,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_fence_gate[facing=east,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_fence_gate[facing=east,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_fence_gate[facing=east,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_fence_gate[facing=east,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_fence_gate[facing=east,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence_gate[facing=north,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_fence_gate[facing=north,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_fence_gate[facing=north,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_fence_gate[facing=north,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_fence_gate[facing=north,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_fence_gate[facing=north,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_fence_gate[facing=north,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_fence_gate[facing=north,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_fence_gate[facing=south,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_fence_gate[facing=south,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_fence_gate[facing=south,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_fence_gate[facing=south,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_fence_gate[facing=south,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_fence_gate[facing=south,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_fence_gate[facing=south,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_fence_gate[facing=south,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_fence_gate[facing=west,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_fence_gate[facing=west,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_fence_gate[facing=west,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_fence_gate[facing=west,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_fence_gate[facing=west,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_fence_gate[facing=west,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_fence_gate[facing=west,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_fence_gate[facing=west,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_fence_gate[facing=east,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_fence_gate[facing=east,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_fence_gate[facing=east,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence_gate[facing=east,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence_gate[facing=east,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_fence_gate[facing=east,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_fence_gate[facing=east,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence_gate[facing=east,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_fence_gate[facing=north,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_fence_gate[facing=north,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_fence_gate[facing=north,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_fence_gate[facing=north,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_fence_gate[facing=north,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_fence_gate[facing=north,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_fence_gate[facing=north,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_fence_gate[facing=north,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_fence_gate[facing=south,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence_gate[facing=south,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence_gate[facing=south,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_fence_gate[facing=south,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_fence_gate[facing=south,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence_gate[facing=south,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence_gate[facing=south,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_fence_gate[facing=south,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_fence_gate[facing=west,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_fence_gate[facing=west,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_fence_gate[facing=west,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_fence_gate[facing=west,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_fence_gate[facing=west,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_fence_gate[facing=west,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_fence_gate[facing=west,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_fence_gate[facing=west,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_fence_gate[facing=east,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_fence_gate[facing=east,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_fence_gate[facing=east,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_fence_gate[facing=east,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_fence_gate[facing=east,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_fence_gate[facing=east,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_fence_gate[facing=east,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_fence_gate[facing=east,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_fence_gate",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_fence[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_fence[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:fence",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_door[facing=north,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 10
-  },
-  "minecraft:spruce_door[facing=north,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 8
-  },
-  "minecraft:spruce_door[facing=north,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 10
-  },
-  "minecraft:spruce_door[facing=north,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 8
-  },
-  "minecraft:spruce_door[facing=north,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 11
-  },
-  "minecraft:spruce_door[facing=north,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 9
-  },
-  "minecraft:spruce_door[facing=north,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 11
-  },
-  "minecraft:spruce_door[facing=north,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 9
-  },
-  "minecraft:spruce_door[facing=north,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_door[facing=north,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_door[facing=north,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_door[facing=north,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_door[facing=north,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_door[facing=north,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 7
-  },
-  "minecraft:spruce_door[facing=north,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_door[facing=north,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 3
-  },
-  "minecraft:spruce_door[facing=south,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 10
-  },
-  "minecraft:spruce_door[facing=south,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 8
-  },
-  "minecraft:spruce_door[facing=south,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 10
-  },
-  "minecraft:spruce_door[facing=south,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 8
-  },
-  "minecraft:spruce_door[facing=south,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 11
-  },
-  "minecraft:spruce_door[facing=south,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 9
-  },
-  "minecraft:spruce_door[facing=south,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 11
-  },
-  "minecraft:spruce_door[facing=south,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 9
-  },
-  "minecraft:spruce_door[facing=south,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_door[facing=south,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_door[facing=south,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_door[facing=south,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_door[facing=south,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_door[facing=south,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 5
-  },
-  "minecraft:spruce_door[facing=south,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_door[facing=south,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 1
-  },
-  "minecraft:spruce_door[facing=west,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 10
-  },
-  "minecraft:spruce_door[facing=west,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 8
-  },
-  "minecraft:spruce_door[facing=west,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 10
-  },
-  "minecraft:spruce_door[facing=west,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 8
-  },
-  "minecraft:spruce_door[facing=west,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 11
-  },
-  "minecraft:spruce_door[facing=west,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 9
-  },
-  "minecraft:spruce_door[facing=west,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 11
-  },
-  "minecraft:spruce_door[facing=west,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 9
-  },
-  "minecraft:spruce_door[facing=west,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_door[facing=west,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_door[facing=west,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_door[facing=west,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_door[facing=west,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_door[facing=west,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 6
-  },
-  "minecraft:spruce_door[facing=west,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_door[facing=west,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 2
-  },
-  "minecraft:spruce_door[facing=east,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 10
-  },
-  "minecraft:spruce_door[facing=east,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 8
-  },
-  "minecraft:spruce_door[facing=east,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 10
-  },
-  "minecraft:spruce_door[facing=east,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 8
-  },
-  "minecraft:spruce_door[facing=east,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 11
-  },
-  "minecraft:spruce_door[facing=east,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 9
-  },
-  "minecraft:spruce_door[facing=east,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 11
-  },
-  "minecraft:spruce_door[facing=east,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 9
-  },
-  "minecraft:spruce_door[facing=east,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_door[facing=east,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_door[facing=east,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_door[facing=east,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_door[facing=east,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_door[facing=east,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 4
-  },
-  "minecraft:spruce_door[facing=east,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_door[facing=east,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:spruce_door",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_door[facing=north,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 10
-  },
-  "minecraft:birch_door[facing=north,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 8
-  },
-  "minecraft:birch_door[facing=north,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 10
-  },
-  "minecraft:birch_door[facing=north,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 8
-  },
-  "minecraft:birch_door[facing=north,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 11
-  },
-  "minecraft:birch_door[facing=north,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 9
-  },
-  "minecraft:birch_door[facing=north,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 11
-  },
-  "minecraft:birch_door[facing=north,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 9
-  },
-  "minecraft:birch_door[facing=north,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_door[facing=north,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_door[facing=north,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_door[facing=north,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_door[facing=north,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_door[facing=north,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 7
-  },
-  "minecraft:birch_door[facing=north,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_door[facing=north,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 3
-  },
-  "minecraft:birch_door[facing=south,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 10
-  },
-  "minecraft:birch_door[facing=south,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 8
-  },
-  "minecraft:birch_door[facing=south,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 10
-  },
-  "minecraft:birch_door[facing=south,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 8
-  },
-  "minecraft:birch_door[facing=south,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 11
-  },
-  "minecraft:birch_door[facing=south,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 9
-  },
-  "minecraft:birch_door[facing=south,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 11
-  },
-  "minecraft:birch_door[facing=south,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 9
-  },
-  "minecraft:birch_door[facing=south,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_door[facing=south,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_door[facing=south,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_door[facing=south,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_door[facing=south,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_door[facing=south,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 5
-  },
-  "minecraft:birch_door[facing=south,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_door[facing=south,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 1
-  },
-  "minecraft:birch_door[facing=west,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 10
-  },
-  "minecraft:birch_door[facing=west,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 8
-  },
-  "minecraft:birch_door[facing=west,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 10
-  },
-  "minecraft:birch_door[facing=west,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 8
-  },
-  "minecraft:birch_door[facing=west,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 11
-  },
-  "minecraft:birch_door[facing=west,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 9
-  },
-  "minecraft:birch_door[facing=west,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 11
-  },
-  "minecraft:birch_door[facing=west,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 9
-  },
-  "minecraft:birch_door[facing=west,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_door[facing=west,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_door[facing=west,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_door[facing=west,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_door[facing=west,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_door[facing=west,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 6
-  },
-  "minecraft:birch_door[facing=west,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_door[facing=west,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 2
-  },
-  "minecraft:birch_door[facing=east,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 10
-  },
-  "minecraft:birch_door[facing=east,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 8
-  },
-  "minecraft:birch_door[facing=east,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 10
-  },
-  "minecraft:birch_door[facing=east,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 8
-  },
-  "minecraft:birch_door[facing=east,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 11
-  },
-  "minecraft:birch_door[facing=east,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 9
-  },
-  "minecraft:birch_door[facing=east,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 11
-  },
-  "minecraft:birch_door[facing=east,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 9
-  },
-  "minecraft:birch_door[facing=east,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_door[facing=east,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_door[facing=east,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_door[facing=east,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_door[facing=east,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_door[facing=east,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 4
-  },
-  "minecraft:birch_door[facing=east,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 0
-  },
-  "minecraft:birch_door[facing=east,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:birch_door",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_door[facing=north,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 10
-  },
-  "minecraft:jungle_door[facing=north,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 8
-  },
-  "minecraft:jungle_door[facing=north,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 10
-  },
-  "minecraft:jungle_door[facing=north,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 8
-  },
-  "minecraft:jungle_door[facing=north,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 11
-  },
-  "minecraft:jungle_door[facing=north,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 9
-  },
-  "minecraft:jungle_door[facing=north,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 11
-  },
-  "minecraft:jungle_door[facing=north,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 9
-  },
-  "minecraft:jungle_door[facing=north,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_door[facing=north,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_door[facing=north,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_door[facing=north,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_door[facing=north,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_door[facing=north,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 7
-  },
-  "minecraft:jungle_door[facing=north,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_door[facing=north,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 3
-  },
-  "minecraft:jungle_door[facing=south,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 10
-  },
-  "minecraft:jungle_door[facing=south,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 8
-  },
-  "minecraft:jungle_door[facing=south,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 10
-  },
-  "minecraft:jungle_door[facing=south,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 8
-  },
-  "minecraft:jungle_door[facing=south,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 11
-  },
-  "minecraft:jungle_door[facing=south,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 9
-  },
-  "minecraft:jungle_door[facing=south,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 11
-  },
-  "minecraft:jungle_door[facing=south,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 9
-  },
-  "minecraft:jungle_door[facing=south,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_door[facing=south,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_door[facing=south,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_door[facing=south,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_door[facing=south,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_door[facing=south,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 5
-  },
-  "minecraft:jungle_door[facing=south,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_door[facing=south,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 1
-  },
-  "minecraft:jungle_door[facing=west,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 10
-  },
-  "minecraft:jungle_door[facing=west,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 8
-  },
-  "minecraft:jungle_door[facing=west,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 10
-  },
-  "minecraft:jungle_door[facing=west,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 8
-  },
-  "minecraft:jungle_door[facing=west,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 11
-  },
-  "minecraft:jungle_door[facing=west,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 9
-  },
-  "minecraft:jungle_door[facing=west,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 11
-  },
-  "minecraft:jungle_door[facing=west,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 9
-  },
-  "minecraft:jungle_door[facing=west,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_door[facing=west,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_door[facing=west,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_door[facing=west,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_door[facing=west,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_door[facing=west,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 6
-  },
-  "minecraft:jungle_door[facing=west,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_door[facing=west,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_door[facing=east,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 10
-  },
-  "minecraft:jungle_door[facing=east,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 8
-  },
-  "minecraft:jungle_door[facing=east,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 10
-  },
-  "minecraft:jungle_door[facing=east,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 8
-  },
-  "minecraft:jungle_door[facing=east,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 11
-  },
-  "minecraft:jungle_door[facing=east,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 9
-  },
-  "minecraft:jungle_door[facing=east,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 11
-  },
-  "minecraft:jungle_door[facing=east,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 9
-  },
-  "minecraft:jungle_door[facing=east,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_door[facing=east,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_door[facing=east,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_door[facing=east,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_door[facing=east,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_door[facing=east,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 4
-  },
-  "minecraft:jungle_door[facing=east,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_door[facing=east,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:jungle_door",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_door[facing=north,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 10
-  },
-  "minecraft:acacia_door[facing=north,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 8
-  },
-  "minecraft:acacia_door[facing=north,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 10
-  },
-  "minecraft:acacia_door[facing=north,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 8
-  },
-  "minecraft:acacia_door[facing=north,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 11
-  },
-  "minecraft:acacia_door[facing=north,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 9
-  },
-  "minecraft:acacia_door[facing=north,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 11
-  },
-  "minecraft:acacia_door[facing=north,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 9
-  },
-  "minecraft:acacia_door[facing=north,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_door[facing=north,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_door[facing=north,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_door[facing=north,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_door[facing=north,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_door[facing=north,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 7
-  },
-  "minecraft:acacia_door[facing=north,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_door[facing=north,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_door[facing=south,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 10
-  },
-  "minecraft:acacia_door[facing=south,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 8
-  },
-  "minecraft:acacia_door[facing=south,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 10
-  },
-  "minecraft:acacia_door[facing=south,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 8
-  },
-  "minecraft:acacia_door[facing=south,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 11
-  },
-  "minecraft:acacia_door[facing=south,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 9
-  },
-  "minecraft:acacia_door[facing=south,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 11
-  },
-  "minecraft:acacia_door[facing=south,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 9
-  },
-  "minecraft:acacia_door[facing=south,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_door[facing=south,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_door[facing=south,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_door[facing=south,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_door[facing=south,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_door[facing=south,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 5
-  },
-  "minecraft:acacia_door[facing=south,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_door[facing=south,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 1
-  },
-  "minecraft:acacia_door[facing=west,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 10
-  },
-  "minecraft:acacia_door[facing=west,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 8
-  },
-  "minecraft:acacia_door[facing=west,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 10
-  },
-  "minecraft:acacia_door[facing=west,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 8
-  },
-  "minecraft:acacia_door[facing=west,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 11
-  },
-  "minecraft:acacia_door[facing=west,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 9
-  },
-  "minecraft:acacia_door[facing=west,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 11
-  },
-  "minecraft:acacia_door[facing=west,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 9
-  },
-  "minecraft:acacia_door[facing=west,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_door[facing=west,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_door[facing=west,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_door[facing=west,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_door[facing=west,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_door[facing=west,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 6
-  },
-  "minecraft:acacia_door[facing=west,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_door[facing=west,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 2
-  },
-  "minecraft:acacia_door[facing=east,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 10
-  },
-  "minecraft:acacia_door[facing=east,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 8
-  },
-  "minecraft:acacia_door[facing=east,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 10
-  },
-  "minecraft:acacia_door[facing=east,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 8
-  },
-  "minecraft:acacia_door[facing=east,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 11
-  },
-  "minecraft:acacia_door[facing=east,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 9
-  },
-  "minecraft:acacia_door[facing=east,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 11
-  },
-  "minecraft:acacia_door[facing=east,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 9
-  },
-  "minecraft:acacia_door[facing=east,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_door[facing=east,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_door[facing=east,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_door[facing=east,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_door[facing=east,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_door[facing=east,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 4
-  },
-  "minecraft:acacia_door[facing=east,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_door[facing=east,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:acacia_door",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 10
-  },
-  "minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 8
-  },
-  "minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 10
-  },
-  "minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 8
-  },
-  "minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 11
-  },
-  "minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 9
-  },
-  "minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 11
-  },
-  "minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 9
-  },
-  "minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 7
-  },
-  "minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 3
-  },
-  "minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 10
-  },
-  "minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 8
-  },
-  "minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 10
-  },
-  "minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 8
-  },
-  "minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 11
-  },
-  "minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 9
-  },
-  "minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 11
-  },
-  "minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 9
-  },
-  "minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 5
-  },
-  "minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 1
-  },
-  "minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 10
-  },
-  "minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 8
-  },
-  "minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 10
-  },
-  "minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 8
-  },
-  "minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 11
-  },
-  "minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 9
-  },
-  "minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 11
-  },
-  "minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 9
-  },
-  "minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 6
-  },
-  "minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 2
-  },
-  "minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 10
-  },
-  "minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 8
-  },
-  "minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 10
-  },
-  "minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 8
-  },
-  "minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 11
-  },
-  "minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 9
-  },
-  "minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 11
-  },
-  "minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 9
-  },
-  "minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=true,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=true,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=false,powered=true]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=false,powered=false]": {
-    "bedrock_identifier": "minecraft:dark_oak_door",
-    "bedrock_data": 0
-  },
-  "minecraft:end_rod[facing=north]": {
-    "bedrock_identifier": "minecraft:end_rod",
-    "bedrock_data": 3
-  },
-  "minecraft:end_rod[facing=east]": {
-    "bedrock_identifier": "minecraft:end_rod",
-    "bedrock_data": 4
-  },
-  "minecraft:end_rod[facing=south]": {
-    "bedrock_identifier": "minecraft:end_rod",
-    "bedrock_data": 2
-  },
-  "minecraft:end_rod[facing=west]": {
-    "bedrock_identifier": "minecraft:end_rod",
-    "bedrock_data": 5
-  },
-  "minecraft:end_rod[facing=up]": {
-    "bedrock_identifier": "minecraft:end_rod",
-    "bedrock_data": 1
-  },
-  "minecraft:end_rod[facing=down]": {
-    "bedrock_identifier": "minecraft:end_rod",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=true,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=true,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=false,west=true]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=false,west=false]": {
-    "bedrock_identifier": "minecraft:chorus_plant",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_flower[age=0]": {
-    "bedrock_identifier": "minecraft:chorus_flower",
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_flower[age=1]": {
-    "bedrock_identifier": "minecraft:chorus_flower",
-    "bedrock_data": 1
-  },
-  "minecraft:chorus_flower[age=2]": {
-    "bedrock_identifier": "minecraft:chorus_flower",
-    "bedrock_data": 2
-  },
-  "minecraft:chorus_flower[age=3]": {
-    "bedrock_identifier": "minecraft:chorus_flower",
-    "bedrock_data": 3
-  },
-  "minecraft:chorus_flower[age=4]": {
-    "bedrock_identifier": "minecraft:chorus_flower",
-    "bedrock_data": 4
-  },
-  "minecraft:chorus_flower[age=5]": {
-    "bedrock_identifier": "minecraft:chorus_flower",
-    "bedrock_data": 5
-  },
-  "minecraft:purpur_block": {
-    "bedrock_identifier": "minecraft:purpur_block",
-    "bedrock_data": 0
-  },
-  "minecraft:purpur_pillar[axis=x]": {
-    "bedrock_identifier": "minecraft:purpur_block",
-    "bedrock_data": 6
-  },
-  "minecraft:purpur_pillar[axis=y]": {
-    "bedrock_identifier": "minecraft:purpur_block",
-    "bedrock_data": 2
-  },
-  "minecraft:purpur_pillar[axis=z]": {
-    "bedrock_identifier": "minecraft:purpur_block",
-    "bedrock_data": 10
-  },
-  "minecraft:purpur_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:purpur_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:purpur_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:purpur_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:purpur_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:purpur_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:purpur_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:purpur_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:purpur_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:purpur_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:purpur_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:purpur_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:purpur_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:purpur_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:purpur_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:purpur_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:purpur_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:purpur_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:purpur_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:purpur_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:purpur_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:purpur_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:purpur_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:purpur_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:purpur_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:purpur_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:purpur_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:purpur_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:purpur_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:purpur_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:purpur_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:purpur_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:purpur_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:purpur_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:purpur_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:purpur_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:purpur_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:purpur_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:purpur_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:purpur_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:purpur_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:purpur_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:purpur_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:purpur_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:purpur_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:purpur_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:purpur_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:purpur_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:purpur_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:end_stone_bricks": {
-    "bedrock_identifier": "minecraft:end_bricks",
-    "bedrock_data": 0
-  },
-  "minecraft:beetroots[age=0]": {
-    "bedrock_identifier": "minecraft:beetroot",
-    "bedrock_data": 0
-  },
-  "minecraft:beetroots[age=1]": {
-    "bedrock_identifier": "minecraft:beetroot",
-    "bedrock_data": 3
-  },
-  "minecraft:beetroots[age=2]": {
-    "bedrock_identifier": "minecraft:beetroot",
-    "bedrock_data": 4
-  },
-  "minecraft:beetroots[age=3]": {
-    "bedrock_identifier": "minecraft:beetroot",
-    "bedrock_data": 7
-  },
-  "minecraft:grass_path": {
-    "bedrock_identifier": "minecraft:grass_path",
-    "bedrock_data": 0
-  },
-  "minecraft:end_gateway": {
-    "bedrock_identifier": "minecraft:end_gateway",
-    "bedrock_data": 0
-  },
-  "minecraft:repeating_command_block[conditional=true,facing=north]": {
-    "bedrock_identifier": "minecraft:repeating_command_block",
-    "bedrock_data": 10
-  },
-  "minecraft:repeating_command_block[conditional=true,facing=east]": {
-    "bedrock_identifier": "minecraft:repeating_command_block",
-    "bedrock_data": 13
-  },
-  "minecraft:repeating_command_block[conditional=true,facing=south]": {
-    "bedrock_identifier": "minecraft:repeating_command_block",
-    "bedrock_data": 11
-  },
-  "minecraft:repeating_command_block[conditional=true,facing=west]": {
-    "bedrock_identifier": "minecraft:repeating_command_block",
-    "bedrock_data": 12
-  },
-  "minecraft:repeating_command_block[conditional=true,facing=up]": {
-    "bedrock_identifier": "minecraft:repeating_command_block",
-    "bedrock_data": 9
-  },
-  "minecraft:repeating_command_block[conditional=true,facing=down]": {
-    "bedrock_identifier": "minecraft:repeating_command_block",
-    "bedrock_data": 8
-  },
-  "minecraft:repeating_command_block[conditional=false,facing=north]": {
-    "bedrock_identifier": "minecraft:repeating_command_block",
-    "bedrock_data": 2
-  },
-  "minecraft:repeating_command_block[conditional=false,facing=east]": {
-    "bedrock_identifier": "minecraft:repeating_command_block",
-    "bedrock_data": 5
-  },
-  "minecraft:repeating_command_block[conditional=false,facing=south]": {
-    "bedrock_identifier": "minecraft:repeating_command_block",
-    "bedrock_data": 3
-  },
-  "minecraft:repeating_command_block[conditional=false,facing=west]": {
-    "bedrock_identifier": "minecraft:repeating_command_block",
-    "bedrock_data": 4
-  },
-  "minecraft:repeating_command_block[conditional=false,facing=up]": {
-    "bedrock_identifier": "minecraft:repeating_command_block",
-    "bedrock_data": 1
-  },
-  "minecraft:repeating_command_block[conditional=false,facing=down]": {
-    "bedrock_identifier": "minecraft:repeating_command_block",
-    "bedrock_data": 0
-  },
-  "minecraft:chain_command_block[conditional=true,facing=north]": {
-    "bedrock_identifier": "minecraft:chain_command_block",
-    "bedrock_data": 10
-  },
-  "minecraft:chain_command_block[conditional=true,facing=east]": {
-    "bedrock_identifier": "minecraft:chain_command_block",
-    "bedrock_data": 13
-  },
-  "minecraft:chain_command_block[conditional=true,facing=south]": {
-    "bedrock_identifier": "minecraft:chain_command_block",
-    "bedrock_data": 11
-  },
-  "minecraft:chain_command_block[conditional=true,facing=west]": {
-    "bedrock_identifier": "minecraft:chain_command_block",
-    "bedrock_data": 12
-  },
-  "minecraft:chain_command_block[conditional=true,facing=up]": {
-    "bedrock_identifier": "minecraft:chain_command_block",
-    "bedrock_data": 9
-  },
-  "minecraft:chain_command_block[conditional=true,facing=down]": {
-    "bedrock_identifier": "minecraft:chain_command_block",
-    "bedrock_data": 8
-  },
-  "minecraft:chain_command_block[conditional=false,facing=north]": {
-    "bedrock_identifier": "minecraft:chain_command_block",
-    "bedrock_data": 2
-  },
-  "minecraft:chain_command_block[conditional=false,facing=east]": {
-    "bedrock_identifier": "minecraft:chain_command_block",
-    "bedrock_data": 5
-  },
-  "minecraft:chain_command_block[conditional=false,facing=south]": {
-    "bedrock_identifier": "minecraft:chain_command_block",
-    "bedrock_data": 3
-  },
-  "minecraft:chain_command_block[conditional=false,facing=west]": {
-    "bedrock_identifier": "minecraft:chain_command_block",
-    "bedrock_data": 4
-  },
-  "minecraft:chain_command_block[conditional=false,facing=up]": {
-    "bedrock_identifier": "minecraft:chain_command_block",
-    "bedrock_data": 1
-  },
-  "minecraft:chain_command_block[conditional=false,facing=down]": {
-    "bedrock_identifier": "minecraft:chain_command_block",
-    "bedrock_data": 0
-  },
-  "minecraft:frosted_ice[age=0]": {
-    "bedrock_identifier": "minecraft:frosted_ice",
-    "bedrock_data": 0
-  },
-  "minecraft:frosted_ice[age=1]": {
-    "bedrock_identifier": "minecraft:frosted_ice",
-    "bedrock_data": 1
-  },
-  "minecraft:frosted_ice[age=2]": {
-    "bedrock_identifier": "minecraft:frosted_ice",
-    "bedrock_data": 2
-  },
-  "minecraft:frosted_ice[age=3]": {
-    "bedrock_identifier": "minecraft:frosted_ice",
-    "bedrock_data": 3
-  },
-  "minecraft:magma_block": {
-    "bedrock_identifier": "minecraft:magma",
-    "bedrock_data": 0
-  },
-  "minecraft:nether_wart_block": {
-    "bedrock_identifier": "minecraft:nether_wart_block",
-    "bedrock_data": 0
-  },
-  "minecraft:red_nether_bricks": {
-    "bedrock_identifier": "minecraft:red_nether_brick",
-    "bedrock_data": 0
-  },
-  "minecraft:bone_block[axis=x]": {
-    "bedrock_identifier": "minecraft:bone_block",
-    "bedrock_data": 4
-  },
-  "minecraft:bone_block[axis=y]": {
-    "bedrock_identifier": "minecraft:bone_block",
-    "bedrock_data": 0
-  },
-  "minecraft:bone_block[axis=z]": {
-    "bedrock_identifier": "minecraft:bone_block",
-    "bedrock_data": 8
-  },
-  "minecraft:structure_void": {
-    "bedrock_identifier": "minecraft:structure_void",
-    "bedrock_data": 0
-  },
-  "minecraft:observer[facing=north,powered=true]": {
-    "bedrock_identifier": "minecraft:observer",
-    "bedrock_data": 10
-  },
-  "minecraft:observer[facing=north,powered=false]": {
-    "bedrock_identifier": "minecraft:observer",
-    "bedrock_data": 2
-  },
-  "minecraft:observer[facing=east,powered=true]": {
-    "bedrock_identifier": "minecraft:observer",
-    "bedrock_data": 13
-  },
-  "minecraft:observer[facing=east,powered=false]": {
-    "bedrock_identifier": "minecraft:observer",
-    "bedrock_data": 5
-  },
-  "minecraft:observer[facing=south,powered=true]": {
-    "bedrock_identifier": "minecraft:observer",
-    "bedrock_data": 11
-  },
-  "minecraft:observer[facing=south,powered=false]": {
-    "bedrock_identifier": "minecraft:observer",
-    "bedrock_data": 3
-  },
-  "minecraft:observer[facing=west,powered=true]": {
-    "bedrock_identifier": "minecraft:observer",
-    "bedrock_data": 12
-  },
-  "minecraft:observer[facing=west,powered=false]": {
-    "bedrock_identifier": "minecraft:observer",
-    "bedrock_data": 4
-  },
-  "minecraft:observer[facing=up,powered=true]": {
-    "bedrock_identifier": "minecraft:observer",
-    "bedrock_data": 9
-  },
-  "minecraft:observer[facing=up,powered=false]": {
-    "bedrock_identifier": "minecraft:observer",
-    "bedrock_data": 1
-  },
-  "minecraft:observer[facing=down,powered=true]": {
-    "bedrock_identifier": "minecraft:observer",
-    "bedrock_data": 8
-  },
-  "minecraft:observer[facing=down,powered=false]": {
-    "bedrock_identifier": "minecraft:observer",
-    "bedrock_data": 0
-  },
-  "minecraft:shulker_box[facing=north]": {
-    "bedrock_identifier": "minecraft:undyed_shulker_box",
-    "bedrock_data": 0
-  },
-  "minecraft:shulker_box[facing=east]": {
-    "bedrock_identifier": "minecraft:undyed_shulker_box",
-    "bedrock_data": 0
-  },
-  "minecraft:shulker_box[facing=south]": {
-    "bedrock_identifier": "minecraft:undyed_shulker_box",
-    "bedrock_data": 0
-  },
-  "minecraft:shulker_box[facing=west]": {
-    "bedrock_identifier": "minecraft:undyed_shulker_box",
-    "bedrock_data": 0
-  },
-  "minecraft:shulker_box[facing=up]": {
-    "bedrock_identifier": "minecraft:undyed_shulker_box",
-    "bedrock_data": 0
-  },
-  "minecraft:shulker_box[facing=down]": {
-    "bedrock_identifier": "minecraft:undyed_shulker_box",
-    "bedrock_data": 0
-  },
-  "minecraft:white_shulker_box[facing=north]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 0
-  },
-  "minecraft:white_shulker_box[facing=east]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 0
-  },
-  "minecraft:white_shulker_box[facing=south]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 0
-  },
-  "minecraft:white_shulker_box[facing=west]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 0
-  },
-  "minecraft:white_shulker_box[facing=up]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 0
-  },
-  "minecraft:white_shulker_box[facing=down]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 0
-  },
-  "minecraft:orange_shulker_box[facing=north]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_shulker_box[facing=east]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_shulker_box[facing=south]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_shulker_box[facing=west]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_shulker_box[facing=up]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 1
-  },
-  "minecraft:orange_shulker_box[facing=down]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 1
-  },
-  "minecraft:magenta_shulker_box[facing=north]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_shulker_box[facing=east]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_shulker_box[facing=south]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_shulker_box[facing=west]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_shulker_box[facing=up]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_shulker_box[facing=down]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 2
-  },
-  "minecraft:light_blue_shulker_box[facing=north]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_shulker_box[facing=east]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_shulker_box[facing=south]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_shulker_box[facing=west]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_shulker_box[facing=up]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_shulker_box[facing=down]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 3
-  },
-  "minecraft:yellow_shulker_box[facing=north]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_shulker_box[facing=east]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_shulker_box[facing=south]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_shulker_box[facing=west]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_shulker_box[facing=up]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_shulker_box[facing=down]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 4
-  },
-  "minecraft:lime_shulker_box[facing=north]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_shulker_box[facing=east]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_shulker_box[facing=south]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_shulker_box[facing=west]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_shulker_box[facing=up]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_shulker_box[facing=down]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 5
-  },
-  "minecraft:pink_shulker_box[facing=north]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_shulker_box[facing=east]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_shulker_box[facing=south]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_shulker_box[facing=west]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_shulker_box[facing=up]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 6
-  },
-  "minecraft:pink_shulker_box[facing=down]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 6
-  },
-  "minecraft:gray_shulker_box[facing=north]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_shulker_box[facing=east]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_shulker_box[facing=south]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_shulker_box[facing=west]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_shulker_box[facing=up]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 7
-  },
-  "minecraft:gray_shulker_box[facing=down]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 7
-  },
-  "minecraft:light_gray_shulker_box[facing=north]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_shulker_box[facing=east]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_shulker_box[facing=south]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_shulker_box[facing=west]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_shulker_box[facing=up]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_shulker_box[facing=down]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 8
-  },
-  "minecraft:cyan_shulker_box[facing=north]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_shulker_box[facing=east]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_shulker_box[facing=south]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_shulker_box[facing=west]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_shulker_box[facing=up]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 9
-  },
-  "minecraft:cyan_shulker_box[facing=down]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 9
-  },
-  "minecraft:purple_shulker_box[facing=north]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_shulker_box[facing=east]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_shulker_box[facing=south]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_shulker_box[facing=west]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_shulker_box[facing=up]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 10
-  },
-  "minecraft:purple_shulker_box[facing=down]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 10
-  },
-  "minecraft:blue_shulker_box[facing=north]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_shulker_box[facing=east]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_shulker_box[facing=south]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_shulker_box[facing=west]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_shulker_box[facing=up]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 11
-  },
-  "minecraft:blue_shulker_box[facing=down]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 11
-  },
-  "minecraft:brown_shulker_box[facing=north]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_shulker_box[facing=east]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_shulker_box[facing=south]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_shulker_box[facing=west]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_shulker_box[facing=up]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 12
-  },
-  "minecraft:brown_shulker_box[facing=down]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 12
-  },
-  "minecraft:green_shulker_box[facing=north]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 13
-  },
-  "minecraft:green_shulker_box[facing=east]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 13
-  },
-  "minecraft:green_shulker_box[facing=south]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 13
-  },
-  "minecraft:green_shulker_box[facing=west]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 13
-  },
-  "minecraft:green_shulker_box[facing=up]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 13
-  },
-  "minecraft:green_shulker_box[facing=down]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 13
-  },
-  "minecraft:red_shulker_box[facing=north]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 14
-  },
-  "minecraft:red_shulker_box[facing=east]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 14
-  },
-  "minecraft:red_shulker_box[facing=south]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 14
-  },
-  "minecraft:red_shulker_box[facing=west]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 14
-  },
-  "minecraft:red_shulker_box[facing=up]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 14
-  },
-  "minecraft:red_shulker_box[facing=down]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 14
-  },
-  "minecraft:black_shulker_box[facing=north]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 15
-  },
-  "minecraft:black_shulker_box[facing=east]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 15
-  },
-  "minecraft:black_shulker_box[facing=south]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 15
-  },
-  "minecraft:black_shulker_box[facing=west]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 15
-  },
-  "minecraft:black_shulker_box[facing=up]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 15
-  },
-  "minecraft:black_shulker_box[facing=down]": {
-    "bedrock_identifier": "minecraft:shulker_box",
-    "bedrock_data": 15
-  },
-  "minecraft:white_glazed_terracotta[facing=north]": {
-    "bedrock_identifier": "minecraft:white_glazed_terracotta",
-    "bedrock_data": 2
-  },
-  "minecraft:white_glazed_terracotta[facing=south]": {
-    "bedrock_identifier": "minecraft:white_glazed_terracotta",
-    "bedrock_data": 3
-  },
-  "minecraft:white_glazed_terracotta[facing=west]": {
-    "bedrock_identifier": "minecraft:white_glazed_terracotta",
-    "bedrock_data": 4
-  },
-  "minecraft:white_glazed_terracotta[facing=east]": {
-    "bedrock_identifier": "minecraft:white_glazed_terracotta",
-    "bedrock_data": 5
-  },
-  "minecraft:orange_glazed_terracotta[facing=north]": {
-    "bedrock_identifier": "minecraft:orange_glazed_terracotta",
-    "bedrock_data": 2
-  },
-  "minecraft:orange_glazed_terracotta[facing=south]": {
-    "bedrock_identifier": "minecraft:orange_glazed_terracotta",
-    "bedrock_data": 3
-  },
-  "minecraft:orange_glazed_terracotta[facing=west]": {
-    "bedrock_identifier": "minecraft:orange_glazed_terracotta",
-    "bedrock_data": 4
-  },
-  "minecraft:orange_glazed_terracotta[facing=east]": {
-    "bedrock_identifier": "minecraft:orange_glazed_terracotta",
-    "bedrock_data": 5
-  },
-  "minecraft:magenta_glazed_terracotta[facing=north]": {
-    "bedrock_identifier": "minecraft:magenta_glazed_terracotta",
-    "bedrock_data": 2
-  },
-  "minecraft:magenta_glazed_terracotta[facing=south]": {
-    "bedrock_identifier": "minecraft:magenta_glazed_terracotta",
-    "bedrock_data": 3
-  },
-  "minecraft:magenta_glazed_terracotta[facing=west]": {
-    "bedrock_identifier": "minecraft:magenta_glazed_terracotta",
-    "bedrock_data": 4
-  },
-  "minecraft:magenta_glazed_terracotta[facing=east]": {
-    "bedrock_identifier": "minecraft:magenta_glazed_terracotta",
-    "bedrock_data": 5
-  },
-  "minecraft:light_blue_glazed_terracotta[facing=north]": {
-    "bedrock_identifier": "minecraft:light_blue_glazed_terracotta",
-    "bedrock_data": 2
-  },
-  "minecraft:light_blue_glazed_terracotta[facing=south]": {
-    "bedrock_identifier": "minecraft:light_blue_glazed_terracotta",
-    "bedrock_data": 3
-  },
-  "minecraft:light_blue_glazed_terracotta[facing=west]": {
-    "bedrock_identifier": "minecraft:light_blue_glazed_terracotta",
-    "bedrock_data": 4
-  },
-  "minecraft:light_blue_glazed_terracotta[facing=east]": {
-    "bedrock_identifier": "minecraft:light_blue_glazed_terracotta",
-    "bedrock_data": 5
-  },
-  "minecraft:yellow_glazed_terracotta[facing=north]": {
-    "bedrock_identifier": "minecraft:yellow_glazed_terracotta",
-    "bedrock_data": 2
-  },
-  "minecraft:yellow_glazed_terracotta[facing=south]": {
-    "bedrock_identifier": "minecraft:yellow_glazed_terracotta",
-    "bedrock_data": 3
-  },
-  "minecraft:yellow_glazed_terracotta[facing=west]": {
-    "bedrock_identifier": "minecraft:yellow_glazed_terracotta",
-    "bedrock_data": 4
-  },
-  "minecraft:yellow_glazed_terracotta[facing=east]": {
-    "bedrock_identifier": "minecraft:yellow_glazed_terracotta",
-    "bedrock_data": 5
-  },
-  "minecraft:lime_glazed_terracotta[facing=north]": {
-    "bedrock_identifier": "minecraft:lime_glazed_terracotta",
-    "bedrock_data": 2
-  },
-  "minecraft:lime_glazed_terracotta[facing=south]": {
-    "bedrock_identifier": "minecraft:lime_glazed_terracotta",
-    "bedrock_data": 3
-  },
-  "minecraft:lime_glazed_terracotta[facing=west]": {
-    "bedrock_identifier": "minecraft:lime_glazed_terracotta",
-    "bedrock_data": 4
-  },
-  "minecraft:lime_glazed_terracotta[facing=east]": {
-    "bedrock_identifier": "minecraft:lime_glazed_terracotta",
-    "bedrock_data": 5
-  },
-  "minecraft:pink_glazed_terracotta[facing=north]": {
-    "bedrock_identifier": "minecraft:pink_glazed_terracotta",
-    "bedrock_data": 2
-  },
-  "minecraft:pink_glazed_terracotta[facing=south]": {
-    "bedrock_identifier": "minecraft:pink_glazed_terracotta",
-    "bedrock_data": 3
-  },
-  "minecraft:pink_glazed_terracotta[facing=west]": {
-    "bedrock_identifier": "minecraft:pink_glazed_terracotta",
-    "bedrock_data": 4
-  },
-  "minecraft:pink_glazed_terracotta[facing=east]": {
-    "bedrock_identifier": "minecraft:pink_glazed_terracotta",
-    "bedrock_data": 5
-  },
-  "minecraft:gray_glazed_terracotta[facing=north]": {
-    "bedrock_identifier": "minecraft:gray_glazed_terracotta",
-    "bedrock_data": 2
-  },
-  "minecraft:gray_glazed_terracotta[facing=south]": {
-    "bedrock_identifier": "minecraft:gray_glazed_terracotta",
-    "bedrock_data": 3
-  },
-  "minecraft:gray_glazed_terracotta[facing=west]": {
-    "bedrock_identifier": "minecraft:gray_glazed_terracotta",
-    "bedrock_data": 4
-  },
-  "minecraft:gray_glazed_terracotta[facing=east]": {
-    "bedrock_identifier": "minecraft:gray_glazed_terracotta",
-    "bedrock_data": 5
-  },
-  "minecraft:light_gray_glazed_terracotta[facing=north]": {
-    "bedrock_identifier": "minecraft:silver_glazed_terracotta",
-    "bedrock_data": 2
-  },
-  "minecraft:light_gray_glazed_terracotta[facing=south]": {
-    "bedrock_identifier": "minecraft:silver_glazed_terracotta",
-    "bedrock_data": 3
-  },
-  "minecraft:light_gray_glazed_terracotta[facing=west]": {
-    "bedrock_identifier": "minecraft:silver_glazed_terracotta",
-    "bedrock_data": 4
-  },
-  "minecraft:light_gray_glazed_terracotta[facing=east]": {
-    "bedrock_identifier": "minecraft:silver_glazed_terracotta",
-    "bedrock_data": 5
-  },
-  "minecraft:cyan_glazed_terracotta[facing=north]": {
-    "bedrock_identifier": "minecraft:cyan_glazed_terracotta",
-    "bedrock_data": 2
-  },
-  "minecraft:cyan_glazed_terracotta[facing=south]": {
-    "bedrock_identifier": "minecraft:cyan_glazed_terracotta",
-    "bedrock_data": 3
-  },
-  "minecraft:cyan_glazed_terracotta[facing=west]": {
-    "bedrock_identifier": "minecraft:cyan_glazed_terracotta",
-    "bedrock_data": 4
-  },
-  "minecraft:cyan_glazed_terracotta[facing=east]": {
-    "bedrock_identifier": "minecraft:cyan_glazed_terracotta",
-    "bedrock_data": 5
-  },
-  "minecraft:purple_glazed_terracotta[facing=north]": {
-    "bedrock_identifier": "minecraft:purple_glazed_terracotta",
-    "bedrock_data": 2
-  },
-  "minecraft:purple_glazed_terracotta[facing=south]": {
-    "bedrock_identifier": "minecraft:purple_glazed_terracotta",
-    "bedrock_data": 3
-  },
-  "minecraft:purple_glazed_terracotta[facing=west]": {
-    "bedrock_identifier": "minecraft:purple_glazed_terracotta",
-    "bedrock_data": 4
-  },
-  "minecraft:purple_glazed_terracotta[facing=east]": {
-    "bedrock_identifier": "minecraft:purple_glazed_terracotta",
-    "bedrock_data": 5
-  },
-  "minecraft:blue_glazed_terracotta[facing=north]": {
-    "bedrock_identifier": "minecraft:blue_glazed_terracotta",
-    "bedrock_data": 2
-  },
-  "minecraft:blue_glazed_terracotta[facing=south]": {
-    "bedrock_identifier": "minecraft:blue_glazed_terracotta",
-    "bedrock_data": 3
-  },
-  "minecraft:blue_glazed_terracotta[facing=west]": {
-    "bedrock_identifier": "minecraft:blue_glazed_terracotta",
-    "bedrock_data": 4
-  },
-  "minecraft:blue_glazed_terracotta[facing=east]": {
-    "bedrock_identifier": "minecraft:blue_glazed_terracotta",
-    "bedrock_data": 5
-  },
-  "minecraft:brown_glazed_terracotta[facing=north]": {
-    "bedrock_identifier": "minecraft:brown_glazed_terracotta",
-    "bedrock_data": 2
-  },
-  "minecraft:brown_glazed_terracotta[facing=south]": {
-    "bedrock_identifier": "minecraft:brown_glazed_terracotta",
-    "bedrock_data": 3
-  },
-  "minecraft:brown_glazed_terracotta[facing=west]": {
-    "bedrock_identifier": "minecraft:brown_glazed_terracotta",
-    "bedrock_data": 4
-  },
-  "minecraft:brown_glazed_terracotta[facing=east]": {
-    "bedrock_identifier": "minecraft:brown_glazed_terracotta",
-    "bedrock_data": 5
-  },
-  "minecraft:green_glazed_terracotta[facing=north]": {
-    "bedrock_identifier": "minecraft:green_glazed_terracotta",
-    "bedrock_data": 2
-  },
-  "minecraft:green_glazed_terracotta[facing=south]": {
-    "bedrock_identifier": "minecraft:green_glazed_terracotta",
-    "bedrock_data": 3
-  },
-  "minecraft:green_glazed_terracotta[facing=west]": {
-    "bedrock_identifier": "minecraft:green_glazed_terracotta",
-    "bedrock_data": 4
-  },
-  "minecraft:green_glazed_terracotta[facing=east]": {
-    "bedrock_identifier": "minecraft:green_glazed_terracotta",
-    "bedrock_data": 5
-  },
-  "minecraft:red_glazed_terracotta[facing=north]": {
-    "bedrock_identifier": "minecraft:red_glazed_terracotta",
-    "bedrock_data": 2
-  },
-  "minecraft:red_glazed_terracotta[facing=south]": {
-    "bedrock_identifier": "minecraft:red_glazed_terracotta",
-    "bedrock_data": 3
-  },
-  "minecraft:red_glazed_terracotta[facing=west]": {
-    "bedrock_identifier": "minecraft:red_glazed_terracotta",
-    "bedrock_data": 4
-  },
-  "minecraft:red_glazed_terracotta[facing=east]": {
-    "bedrock_identifier": "minecraft:red_glazed_terracotta",
-    "bedrock_data": 5
-  },
-  "minecraft:black_glazed_terracotta[facing=north]": {
-    "bedrock_identifier": "minecraft:black_glazed_terracotta",
-    "bedrock_data": 2
-  },
-  "minecraft:black_glazed_terracotta[facing=south]": {
-    "bedrock_identifier": "minecraft:black_glazed_terracotta",
-    "bedrock_data": 3
-  },
-  "minecraft:black_glazed_terracotta[facing=west]": {
-    "bedrock_identifier": "minecraft:black_glazed_terracotta",
-    "bedrock_data": 4
-  },
-  "minecraft:black_glazed_terracotta[facing=east]": {
-    "bedrock_identifier": "minecraft:black_glazed_terracotta",
-    "bedrock_data": 5
-  },
-  "minecraft:white_concrete": {
-    "bedrock_identifier": "minecraft:concrete",
-    "bedrock_data": 0
-  },
-  "minecraft:orange_concrete": {
-    "bedrock_identifier": "minecraft:concrete",
-    "bedrock_data": 1
-  },
-  "minecraft:magenta_concrete": {
-    "bedrock_identifier": "minecraft:concrete",
-    "bedrock_data": 2
-  },
-  "minecraft:light_blue_concrete": {
-    "bedrock_identifier": "minecraft:concrete",
-    "bedrock_data": 3
-  },
-  "minecraft:yellow_concrete": {
-    "bedrock_identifier": "minecraft:concrete",
-    "bedrock_data": 4
-  },
-  "minecraft:lime_concrete": {
-    "bedrock_identifier": "minecraft:concrete",
-    "bedrock_data": 5
-  },
-  "minecraft:pink_concrete": {
-    "bedrock_identifier": "minecraft:concrete",
-    "bedrock_data": 6
-  },
-  "minecraft:gray_concrete": {
-    "bedrock_identifier": "minecraft:concrete",
-    "bedrock_data": 7
-  },
-  "minecraft:light_gray_concrete": {
-    "bedrock_identifier": "minecraft:concrete",
-    "bedrock_data": 8
-  },
-  "minecraft:cyan_concrete": {
-    "bedrock_identifier": "minecraft:concrete",
-    "bedrock_data": 9
-  },
-  "minecraft:purple_concrete": {
-    "bedrock_identifier": "minecraft:concrete",
-    "bedrock_data": 10
-  },
-  "minecraft:blue_concrete": {
-    "bedrock_identifier": "minecraft:concrete",
-    "bedrock_data": 11
-  },
-  "minecraft:brown_concrete": {
-    "bedrock_identifier": "minecraft:concrete",
-    "bedrock_data": 12
-  },
-  "minecraft:green_concrete": {
-    "bedrock_identifier": "minecraft:concrete",
-    "bedrock_data": 13
-  },
-  "minecraft:red_concrete": {
-    "bedrock_identifier": "minecraft:concrete",
-    "bedrock_data": 14
-  },
-  "minecraft:black_concrete": {
-    "bedrock_identifier": "minecraft:concrete",
-    "bedrock_data": 15
-  },
-  "minecraft:white_concrete_powder": {
-    "bedrock_identifier": "minecraft:concretePowder",
-    "bedrock_data": 0
-  },
-  "minecraft:orange_concrete_powder": {
-    "bedrock_identifier": "minecraft:concretePowder",
-    "bedrock_data": 1
-  },
-  "minecraft:magenta_concrete_powder": {
-    "bedrock_identifier": "minecraft:concretePowder",
-    "bedrock_data": 2
-  },
-  "minecraft:light_blue_concrete_powder": {
-    "bedrock_identifier": "minecraft:concretePowder",
-    "bedrock_data": 3
-  },
-  "minecraft:yellow_concrete_powder": {
-    "bedrock_identifier": "minecraft:concretePowder",
-    "bedrock_data": 4
-  },
-  "minecraft:lime_concrete_powder": {
-    "bedrock_identifier": "minecraft:concretePowder",
-    "bedrock_data": 5
-  },
-  "minecraft:pink_concrete_powder": {
-    "bedrock_identifier": "minecraft:concretePowder",
-    "bedrock_data": 6
-  },
-  "minecraft:gray_concrete_powder": {
-    "bedrock_identifier": "minecraft:concretePowder",
-    "bedrock_data": 7
-  },
-  "minecraft:light_gray_concrete_powder": {
-    "bedrock_identifier": "minecraft:concretePowder",
-    "bedrock_data": 8
-  },
-  "minecraft:cyan_concrete_powder": {
-    "bedrock_identifier": "minecraft:concretePowder",
-    "bedrock_data": 9
-  },
-  "minecraft:purple_concrete_powder": {
-    "bedrock_identifier": "minecraft:concretePowder",
-    "bedrock_data": 10
-  },
-  "minecraft:blue_concrete_powder": {
-    "bedrock_identifier": "minecraft:concretePowder",
-    "bedrock_data": 11
-  },
-  "minecraft:brown_concrete_powder": {
-    "bedrock_identifier": "minecraft:concretePowder",
-    "bedrock_data": 12
-  },
-  "minecraft:green_concrete_powder": {
-    "bedrock_identifier": "minecraft:concretePowder",
-    "bedrock_data": 13
-  },
-  "minecraft:red_concrete_powder": {
-    "bedrock_identifier": "minecraft:concretePowder",
-    "bedrock_data": 14
-  },
-  "minecraft:black_concrete_powder": {
-    "bedrock_identifier": "minecraft:concretePowder",
-    "bedrock_data": 15
-  },
-  "minecraft:kelp[age=0]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=1]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=2]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=3]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=4]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=5]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=6]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=7]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=8]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=9]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=10]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=11]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=12]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=13]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=14]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=15]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=16]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=17]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=18]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=19]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=20]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=21]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=22]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=23]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=24]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp[age=25]": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:kelp_plant": {
-    "bedrock_identifier": "minecraft:kelp",
-    "bedrock_data": 0
-  },
-  "minecraft:dried_kelp_block": {
-    "bedrock_identifier": "minecraft:dried_kelp_block",
-    "bedrock_data": 0
-  },
-  "minecraft:turtle_egg[eggs=1,hatch=0]": {
-    "bedrock_identifier": "minecraft:turtle_egg",
-    "bedrock_data": 0
-  },
-  "minecraft:turtle_egg[eggs=1,hatch=1]": {
-    "bedrock_identifier": "minecraft:turtle_egg",
-    "bedrock_data": 4
-  },
-  "minecraft:turtle_egg[eggs=1,hatch=2]": {
-    "bedrock_identifier": "minecraft:turtle_egg",
-    "bedrock_data": 8
-  },
-  "minecraft:turtle_egg[eggs=2,hatch=0]": {
-    "bedrock_identifier": "minecraft:turtle_egg",
-    "bedrock_data": 1
-  },
-  "minecraft:turtle_egg[eggs=2,hatch=1]": {
-    "bedrock_identifier": "minecraft:turtle_egg",
-    "bedrock_data": 5
-  },
-  "minecraft:turtle_egg[eggs=2,hatch=2]": {
-    "bedrock_identifier": "minecraft:turtle_egg",
-    "bedrock_data": 9
-  },
-  "minecraft:turtle_egg[eggs=3,hatch=0]": {
-    "bedrock_identifier": "minecraft:turtle_egg",
-    "bedrock_data": 2
-  },
-  "minecraft:turtle_egg[eggs=3,hatch=1]": {
-    "bedrock_identifier": "minecraft:turtle_egg",
-    "bedrock_data": 6
-  },
-  "minecraft:turtle_egg[eggs=3,hatch=2]": {
-    "bedrock_identifier": "minecraft:turtle_egg",
-    "bedrock_data": 10
-  },
-  "minecraft:turtle_egg[eggs=4,hatch=0]": {
-    "bedrock_identifier": "minecraft:turtle_egg",
-    "bedrock_data": 3
-  },
-  "minecraft:turtle_egg[eggs=4,hatch=1]": {
-    "bedrock_identifier": "minecraft:turtle_egg",
-    "bedrock_data": 7
-  },
-  "minecraft:turtle_egg[eggs=4,hatch=2]": {
-    "bedrock_identifier": "minecraft:turtle_egg",
-    "bedrock_data": 11
-  },
-  "minecraft:dead_tube_coral_block": {
-    "bedrock_identifier": "minecraft:coral_block",
-    "bedrock_data": 8
-  },
-  "minecraft:dead_brain_coral_block": {
-    "bedrock_identifier": "minecraft:coral_block",
-    "bedrock_data": 9
-  },
-  "minecraft:dead_bubble_coral_block": {
-    "bedrock_identifier": "minecraft:coral_block",
-    "bedrock_data": 10
-  },
-  "minecraft:dead_fire_coral_block": {
-    "bedrock_identifier": "minecraft:coral_block",
-    "bedrock_data": 11
-  },
-  "minecraft:dead_horn_coral_block": {
-    "bedrock_identifier": "minecraft:coral_block",
-    "bedrock_data": 12
-  },
-  "minecraft:tube_coral_block": {
-    "bedrock_identifier": "minecraft:coral_block",
-    "bedrock_data": 0
-  },
-  "minecraft:brain_coral_block": {
-    "bedrock_identifier": "minecraft:coral_block",
-    "bedrock_data": 1
-  },
-  "minecraft:bubble_coral_block": {
-    "bedrock_identifier": "minecraft:coral_block",
-    "bedrock_data": 2
-  },
-  "minecraft:fire_coral_block": {
-    "bedrock_identifier": "minecraft:coral_block",
-    "bedrock_data": 3
-  },
-  "minecraft:horn_coral_block": {
-    "bedrock_identifier": "minecraft:coral_block",
-    "bedrock_data": 4
-  },
-  "minecraft:dead_tube_coral[waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral",
-    "bedrock_data": 8
-  },
-  "minecraft:dead_tube_coral[waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral",
-    "bedrock_data": 8
-  },
-  "minecraft:dead_brain_coral[waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral",
-    "bedrock_data": 9
-  },
-  "minecraft:dead_brain_coral[waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral",
-    "bedrock_data": 9
-  },
-  "minecraft:dead_bubble_coral[waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral",
-    "bedrock_data": 10
-  },
-  "minecraft:dead_bubble_coral[waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral",
-    "bedrock_data": 10
-  },
-  "minecraft:dead_fire_coral[waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral",
-    "bedrock_data": 11
-  },
-  "minecraft:dead_fire_coral[waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral",
-    "bedrock_data": 11
-  },
-  "minecraft:dead_horn_coral[waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral",
-    "bedrock_data": 12
-  },
-  "minecraft:dead_horn_coral[waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral",
-    "bedrock_data": 12
-  },
-  "minecraft:tube_coral[waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral",
-    "bedrock_data": 0
-  },
-  "minecraft:tube_coral[waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral",
-    "bedrock_data": 0
-  },
-  "minecraft:brain_coral[waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral",
-    "bedrock_data": 1
-  },
-  "minecraft:brain_coral[waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral",
-    "bedrock_data": 1
-  },
-  "minecraft:bubble_coral[waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral",
-    "bedrock_data": 2
-  },
-  "minecraft:bubble_coral[waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral",
-    "bedrock_data": 2
-  },
-  "minecraft:fire_coral[waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral",
-    "bedrock_data": 3
-  },
-  "minecraft:fire_coral[waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral",
-    "bedrock_data": 3
-  },
-  "minecraft:horn_coral[waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral",
-    "bedrock_data": 4
-  },
-  "minecraft:horn_coral[waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral",
-    "bedrock_data": 4
-  },
-  "minecraft:dead_tube_coral_fan[waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_dead",
-    "bedrock_data": 0
-  },
-  "minecraft:dead_tube_coral_fan[waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_dead",
-    "bedrock_data": 0
-  },
-  "minecraft:dead_brain_coral_fan[waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_dead",
-    "bedrock_data": 1
-  },
-  "minecraft:dead_brain_coral_fan[waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_dead",
-    "bedrock_data": 1
-  },
-  "minecraft:dead_bubble_coral_fan[waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_dead",
-    "bedrock_data": 2
-  },
-  "minecraft:dead_bubble_coral_fan[waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_dead",
-    "bedrock_data": 2
-  },
-  "minecraft:dead_fire_coral_fan[waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_dead",
-    "bedrock_data": 3
-  },
-  "minecraft:dead_fire_coral_fan[waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_dead",
-    "bedrock_data": 3
-  },
-  "minecraft:dead_horn_coral_fan[waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_dead",
-    "bedrock_data": 4
-  },
-  "minecraft:dead_horn_coral_fan[waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_dead",
-    "bedrock_data": 4
-  },
-  "minecraft:tube_coral_fan[waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan",
-    "bedrock_data": 0
-  },
-  "minecraft:tube_coral_fan[waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan",
-    "bedrock_data": 0
-  },
-  "minecraft:brain_coral_fan[waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan",
-    "bedrock_data": 1
-  },
-  "minecraft:brain_coral_fan[waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan",
-    "bedrock_data": 1
-  },
-  "minecraft:bubble_coral_fan[waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan",
-    "bedrock_data": 2
-  },
-  "minecraft:bubble_coral_fan[waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan",
-    "bedrock_data": 2
-  },
-  "minecraft:fire_coral_fan[waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan",
-    "bedrock_data": 3
-  },
-  "minecraft:fire_coral_fan[waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan",
-    "bedrock_data": 3
-  },
-  "minecraft:horn_coral_fan[waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan",
-    "bedrock_data": 4
-  },
-  "minecraft:horn_coral_fan[waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan",
-    "bedrock_data": 4
-  },
-  "minecraft:dead_tube_coral_wall_fan[facing=north,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 10
-  },
-  "minecraft:dead_tube_coral_wall_fan[facing=north,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 10
-  },
-  "minecraft:dead_tube_coral_wall_fan[facing=south,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 14
-  },
-  "minecraft:dead_tube_coral_wall_fan[facing=south,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 14
-  },
-  "minecraft:dead_tube_coral_wall_fan[facing=west,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 2
-  },
-  "minecraft:dead_tube_coral_wall_fan[facing=west,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 2
-  },
-  "minecraft:dead_tube_coral_wall_fan[facing=east,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 6
-  },
-  "minecraft:dead_tube_coral_wall_fan[facing=east,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 6
-  },
-  "minecraft:dead_brain_coral_wall_fan[facing=north,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 11
-  },
-  "minecraft:dead_brain_coral_wall_fan[facing=north,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 11
-  },
-  "minecraft:dead_brain_coral_wall_fan[facing=south,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 15
-  },
-  "minecraft:dead_brain_coral_wall_fan[facing=south,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 15
-  },
-  "minecraft:dead_brain_coral_wall_fan[facing=west,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 3
-  },
-  "minecraft:dead_brain_coral_wall_fan[facing=west,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 3
-  },
-  "minecraft:dead_brain_coral_wall_fan[facing=east,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 7
-  },
-  "minecraft:dead_brain_coral_wall_fan[facing=east,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 7
-  },
-  "minecraft:dead_bubble_coral_wall_fan[facing=north,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 10
-  },
-  "minecraft:dead_bubble_coral_wall_fan[facing=north,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 10
-  },
-  "minecraft:dead_bubble_coral_wall_fan[facing=south,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 14
-  },
-  "minecraft:dead_bubble_coral_wall_fan[facing=south,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 14
-  },
-  "minecraft:dead_bubble_coral_wall_fan[facing=west,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 2
-  },
-  "minecraft:dead_bubble_coral_wall_fan[facing=west,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 2
-  },
-  "minecraft:dead_bubble_coral_wall_fan[facing=east,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 6
-  },
-  "minecraft:dead_bubble_coral_wall_fan[facing=east,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 6
-  },
-  "minecraft:dead_fire_coral_wall_fan[facing=north,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 11
-  },
-  "minecraft:dead_fire_coral_wall_fan[facing=north,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 11
-  },
-  "minecraft:dead_fire_coral_wall_fan[facing=south,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 15
-  },
-  "minecraft:dead_fire_coral_wall_fan[facing=south,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 15
-  },
-  "minecraft:dead_fire_coral_wall_fan[facing=west,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 3
-  },
-  "minecraft:dead_fire_coral_wall_fan[facing=west,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 3
-  },
-  "minecraft:dead_fire_coral_wall_fan[facing=east,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 7
-  },
-  "minecraft:dead_fire_coral_wall_fan[facing=east,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 7
-  },
-  "minecraft:dead_horn_coral_wall_fan[facing=north,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang3",
-    "bedrock_data": 10
-  },
-  "minecraft:dead_horn_coral_wall_fan[facing=north,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang3",
-    "bedrock_data": 10
-  },
-  "minecraft:dead_horn_coral_wall_fan[facing=south,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang3",
-    "bedrock_data": 14
-  },
-  "minecraft:dead_horn_coral_wall_fan[facing=south,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang3",
-    "bedrock_data": 14
-  },
-  "minecraft:dead_horn_coral_wall_fan[facing=west,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang3",
-    "bedrock_data": 2
-  },
-  "minecraft:dead_horn_coral_wall_fan[facing=west,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang3",
-    "bedrock_data": 2
-  },
-  "minecraft:dead_horn_coral_wall_fan[facing=east,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang3",
-    "bedrock_data": 6
-  },
-  "minecraft:dead_horn_coral_wall_fan[facing=east,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang3",
-    "bedrock_data": 6
-  },
-  "minecraft:tube_coral_wall_fan[facing=north,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 8
-  },
-  "minecraft:tube_coral_wall_fan[facing=north,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 8
-  },
-  "minecraft:tube_coral_wall_fan[facing=south,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 12
-  },
-  "minecraft:tube_coral_wall_fan[facing=south,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 12
-  },
-  "minecraft:tube_coral_wall_fan[facing=west,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 0
-  },
-  "minecraft:tube_coral_wall_fan[facing=west,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 0
-  },
-  "minecraft:tube_coral_wall_fan[facing=east,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 4
-  },
-  "minecraft:tube_coral_wall_fan[facing=east,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 4
-  },
-  "minecraft:brain_coral_wall_fan[facing=north,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 9
-  },
-  "minecraft:brain_coral_wall_fan[facing=north,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 9
-  },
-  "minecraft:brain_coral_wall_fan[facing=south,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 13
-  },
-  "minecraft:brain_coral_wall_fan[facing=south,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 13
-  },
-  "minecraft:brain_coral_wall_fan[facing=west,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 1
-  },
-  "minecraft:brain_coral_wall_fan[facing=west,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 1
-  },
-  "minecraft:brain_coral_wall_fan[facing=east,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 5
-  },
-  "minecraft:brain_coral_wall_fan[facing=east,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang",
-    "bedrock_data": 5
-  },
-  "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 8
-  },
-  "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 8
-  },
-  "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 12
-  },
-  "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 12
-  },
-  "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 0
-  },
-  "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 0
-  },
-  "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 4
-  },
-  "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 4
-  },
-  "minecraft:fire_coral_wall_fan[facing=north,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 9
-  },
-  "minecraft:fire_coral_wall_fan[facing=north,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 9
-  },
-  "minecraft:fire_coral_wall_fan[facing=south,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 13
-  },
-  "minecraft:fire_coral_wall_fan[facing=south,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 13
-  },
-  "minecraft:fire_coral_wall_fan[facing=west,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 1
-  },
-  "minecraft:fire_coral_wall_fan[facing=west,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 1
-  },
-  "minecraft:fire_coral_wall_fan[facing=east,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 5
-  },
-  "minecraft:fire_coral_wall_fan[facing=east,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang2",
-    "bedrock_data": 5
-  },
-  "minecraft:horn_coral_wall_fan[facing=north,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang3",
-    "bedrock_data": 8
-  },
-  "minecraft:horn_coral_wall_fan[facing=north,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang3",
-    "bedrock_data": 8
-  },
-  "minecraft:horn_coral_wall_fan[facing=south,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang3",
-    "bedrock_data": 12
-  },
-  "minecraft:horn_coral_wall_fan[facing=south,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang3",
-    "bedrock_data": 12
-  },
-  "minecraft:horn_coral_wall_fan[facing=west,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang3",
-    "bedrock_data": 0
-  },
-  "minecraft:horn_coral_wall_fan[facing=west,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang3",
-    "bedrock_data": 0
-  },
-  "minecraft:horn_coral_wall_fan[facing=east,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang3",
-    "bedrock_data": 4
-  },
-  "minecraft:horn_coral_wall_fan[facing=east,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:coral_fan_hang3",
-    "bedrock_data": 4
-  },
-  "minecraft:sea_pickle[pickles=1,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sea_pickle",
-    "bedrock_data": 0
-  },
-  "minecraft:sea_pickle[pickles=1,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sea_pickle",
-    "bedrock_data": 4
-  },
-  "minecraft:sea_pickle[pickles=2,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sea_pickle",
-    "bedrock_data": 1
-  },
-  "minecraft:sea_pickle[pickles=2,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sea_pickle",
-    "bedrock_data": 5
-  },
-  "minecraft:sea_pickle[pickles=3,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sea_pickle",
-    "bedrock_data": 2
-  },
-  "minecraft:sea_pickle[pickles=3,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sea_pickle",
-    "bedrock_data": 6
-  },
-  "minecraft:sea_pickle[pickles=4,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:sea_pickle",
-    "bedrock_data": 3
-  },
-  "minecraft:sea_pickle[pickles=4,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:sea_pickle",
-    "bedrock_data": 7
-  },
-  "minecraft:blue_ice": {
-    "bedrock_identifier": "minecraft:blue_ice",
-    "bedrock_data": 0
-  },
-  "minecraft:conduit[waterlogged=true]": {
-    "bedrock_identifier": "minecraft:conduit",
-    "bedrock_data": 0
-  },
-  "minecraft:conduit[waterlogged=false]": {
-    "bedrock_identifier": "minecraft:conduit",
-    "bedrock_data": 0
-  },
-  "minecraft:bamboo_sapling": {
-    "bedrock_identifier": "minecraft:bamboo_sapling",
-    "bedrock_data": 0
-  },
-  "minecraft:bamboo[age=0,leaves=none,stage=0]": {
-    "bedrock_identifier": "minecraft:bamboo",
-    "bedrock_data": 0
-  },
-  "minecraft:bamboo[age=0,leaves=none,stage=1]": {
-    "bedrock_identifier": "minecraft:bamboo",
-    "bedrock_data": 0
-  },
-  "minecraft:bamboo[age=0,leaves=small,stage=0]": {
-    "bedrock_identifier": "minecraft:bamboo",
-    "bedrock_data": 2
-  },
-  "minecraft:bamboo[age=0,leaves=small,stage=1]": {
-    "bedrock_identifier": "minecraft:bamboo",
-    "bedrock_data": 2
-  },
-  "minecraft:bamboo[age=0,leaves=large,stage=0]": {
-    "bedrock_identifier": "minecraft:bamboo",
-    "bedrock_data": 4
-  },
-  "minecraft:bamboo[age=0,leaves=large,stage=1]": {
-    "bedrock_identifier": "minecraft:bamboo",
-    "bedrock_data": 4
-  },
-  "minecraft:bamboo[age=1,leaves=none,stage=0]": {
-    "bedrock_identifier": "minecraft:bamboo",
-    "bedrock_data": 1
-  },
-  "minecraft:bamboo[age=1,leaves=none,stage=1]": {
-    "bedrock_identifier": "minecraft:bamboo",
-    "bedrock_data": 1
-  },
-  "minecraft:bamboo[age=1,leaves=small,stage=0]": {
-    "bedrock_identifier": "minecraft:bamboo",
-    "bedrock_data": 3
-  },
-  "minecraft:bamboo[age=1,leaves=small,stage=1]": {
-    "bedrock_identifier": "minecraft:bamboo",
-    "bedrock_data": 3
-  },
-  "minecraft:bamboo[age=1,leaves=large,stage=0]": {
-    "bedrock_identifier": "minecraft:bamboo",
-    "bedrock_data": 5
-  },
-  "minecraft:bamboo[age=1,leaves=large,stage=1]": {
-    "bedrock_identifier": "minecraft:bamboo",
-    "bedrock_data": 5
-  },
-  "minecraft:potted_bamboo": {
-    "bedrock_identifier": "minecraft:flower_pot",
-    "bedrock_data": 0
-  },
-  "minecraft:void_air": {
-    "bedrock_identifier": "minecraft:air",
-    "bedrock_data": 0
-  },
-  "minecraft:cave_air": {
-    "bedrock_identifier": "minecraft:air",
-    "bedrock_data": 0
-  },
-  "minecraft:bubble_column[drag=true]": {
-    "bedrock_identifier": "minecraft:bubble_column",
-    "bedrock_data": 0
-  },
-  "minecraft:bubble_column[drag=false]": {
-    "bedrock_identifier": "minecraft:bubble_column",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_granite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_granite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_granite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_granite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_granite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_granite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_granite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_granite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_granite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_stone_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_diorite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_diorite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_diorite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_diorite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_diorite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_diorite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_diorite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_diorite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_diorite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:mossy_cobblestone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:end_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:stone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:stone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:stone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:stone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:stone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:stone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:stone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:stone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:stone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:stone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:stone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:stone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:stone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:stone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:stone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:stone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:stone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:stone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:stone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:stone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:stone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:stone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:stone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:stone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:stone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:stone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:stone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:stone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:stone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:stone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:stone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:stone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:stone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:normal_stone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_sandstone_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:smooth_quartz_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:granite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:granite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:granite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:granite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:granite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:granite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:granite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:granite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:andesite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:andesite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:andesite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:andesite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:andesite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:andesite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:andesite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:andesite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:red_nether_brick_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_andesite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_andesite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:polished_andesite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_andesite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_andesite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_andesite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:polished_andesite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_andesite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:polished_andesite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:diorite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:diorite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 7
-  },
-  "minecraft:diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:diorite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 6
-  },
-  "minecraft:diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 2
-  },
-  "minecraft:diorite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:diorite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 5
-  },
-  "minecraft:diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 1
-  },
-  "minecraft:diorite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:diorite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 4
-  },
-  "minecraft:diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:diorite_stairs",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_granite_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 15
-  },
-  "minecraft:polished_granite_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 15
-  },
-  "minecraft:polished_granite_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_granite_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_granite_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab3",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_granite_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab3",
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_red_sandstone_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 9
-  },
-  "minecraft:smooth_red_sandstone_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 9
-  },
-  "minecraft:smooth_red_sandstone_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_red_sandstone_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_red_sandstone_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab3",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_red_sandstone_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab3",
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_stone_brick_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab4",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab4",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab4",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_stone_brick_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab4",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_stone_brick_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab4",
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_stone_brick_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab4",
-    "bedrock_data": 0
-  },
-  "minecraft:polished_diorite_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 13
-  },
-  "minecraft:polished_diorite_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 13
-  },
-  "minecraft:polished_diorite_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_diorite_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_diorite_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab3",
-    "bedrock_data": 5
-  },
-  "minecraft:polished_diorite_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab3",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_cobblestone_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 13
-  },
-  "minecraft:mossy_cobblestone_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 13
-  },
-  "minecraft:mossy_cobblestone_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_cobblestone_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_cobblestone_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab2",
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_cobblestone_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab2",
-    "bedrock_data": 5
-  },
-  "minecraft:end_stone_brick_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 8
-  },
-  "minecraft:end_stone_brick_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 8
-  },
-  "minecraft:end_stone_brick_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 0
-  },
-  "minecraft:end_stone_brick_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 0
-  },
-  "minecraft:end_stone_brick_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab3",
-    "bedrock_data": 0
-  },
-  "minecraft:end_stone_brick_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab3",
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_sandstone_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 14
-  },
-  "minecraft:smooth_sandstone_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 14
-  },
-  "minecraft:smooth_sandstone_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_sandstone_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_sandstone_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab2",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_sandstone_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab2",
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_quartz_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab4",
-    "bedrock_data": 9
-  },
-  "minecraft:smooth_quartz_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab4",
-    "bedrock_data": 9
-  },
-  "minecraft:smooth_quartz_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab4",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_quartz_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab4",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_quartz_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab4",
-    "bedrock_data": 1
-  },
-  "minecraft:smooth_quartz_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab4",
-    "bedrock_data": 1
-  },
-  "minecraft:granite_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 14
-  },
-  "minecraft:granite_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 14
-  },
-  "minecraft:granite_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 6
-  },
-  "minecraft:granite_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 6
-  },
-  "minecraft:granite_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab3",
-    "bedrock_data": 6
-  },
-  "minecraft:granite_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab3",
-    "bedrock_data": 6
-  },
-  "minecraft:andesite_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 11
-  },
-  "minecraft:andesite_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 11
-  },
-  "minecraft:andesite_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 3
-  },
-  "minecraft:andesite_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 3
-  },
-  "minecraft:andesite_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab3",
-    "bedrock_data": 3
-  },
-  "minecraft:andesite_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab3",
-    "bedrock_data": 3
-  },
-  "minecraft:red_nether_brick_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 15
-  },
-  "minecraft:red_nether_brick_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 15
-  },
-  "minecraft:red_nether_brick_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 7
-  },
-  "minecraft:red_nether_brick_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab2",
-    "bedrock_data": 7
-  },
-  "minecraft:red_nether_brick_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab2",
-    "bedrock_data": 7
-  },
-  "minecraft:red_nether_brick_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab2",
-    "bedrock_data": 7
-  },
-  "minecraft:polished_andesite_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 10
-  },
-  "minecraft:polished_andesite_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 10
-  },
-  "minecraft:polished_andesite_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_andesite_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_andesite_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab3",
-    "bedrock_data": 2
-  },
-  "minecraft:polished_andesite_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab3",
-    "bedrock_data": 2
-  },
-  "minecraft:diorite_slab[type=top,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 12
-  },
-  "minecraft:diorite_slab[type=top,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 12
-  },
-  "minecraft:diorite_slab[type=bottom,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 4
-  },
-  "minecraft:diorite_slab[type=bottom,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:stone_slab3",
-    "bedrock_data": 4
-  },
-  "minecraft:diorite_slab[type=double,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:double_stone_slab3",
-    "bedrock_data": 4
-  },
-  "minecraft:diorite_slab[type=double,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:double_stone_slab3",
-    "bedrock_data": 4
-  },
-  "minecraft:brick_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:brick_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 6
-  },
-  "minecraft:prismarine_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:prismarine_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 11
-  },
-  "minecraft:red_sandstone_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:red_sandstone_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 12
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:mossy_stone_brick_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 8
-  },
-  "minecraft:granite_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:granite_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 2
-  },
-  "minecraft:stone_brick_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:stone_brick_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 7
-  },
-  "minecraft:nether_brick_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:nether_brick_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 9
-  },
-  "minecraft:andesite_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:andesite_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 4
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:red_nether_brick_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 13
-  },
-  "minecraft:sandstone_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:sandstone_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 5
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:end_stone_brick_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 10
-  },
-  "minecraft:diorite_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=true,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=true,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=true,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=true,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=true,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=true,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=true,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=true,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=true,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=false,south=true,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=false,south=true,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=false,south=true,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=false,south=true,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=false,south=false,up=true,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=false,south=false,up=false,waterlogged=true,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=true]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:diorite_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=false]": {
-    "bedrock_identifier": "minecraft:cobblestone_wall",
-    "bedrock_data": 3
-  },
-  "minecraft:scaffolding[bottom=true,distance=0,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=true,distance=0,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=true,distance=1,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=true,distance=1,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=true,distance=2,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=true,distance=2,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=true,distance=3,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=true,distance=3,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=true,distance=4,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=true,distance=4,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=true,distance=5,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=true,distance=5,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=true,distance=6,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=true,distance=6,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=true,distance=7,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=true,distance=7,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=false,distance=0,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=false,distance=0,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=false,distance=1,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=false,distance=1,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=false,distance=2,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=false,distance=2,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=false,distance=3,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=false,distance=3,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=false,distance=4,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=false,distance=4,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=false,distance=5,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=false,distance=5,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=false,distance=6,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=false,distance=6,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=false,distance=7,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:scaffolding[bottom=false,distance=7,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:scaffolding",
-    "bedrock_data": 0
-  },
-  "minecraft:loom[facing=north]": {
-    "bedrock_identifier": "minecraft:loom",
-    "bedrock_data": 2
-  },
-  "minecraft:loom[facing=south]": {
-    "bedrock_identifier": "minecraft:loom",
-    "bedrock_data": 0
-  },
-  "minecraft:loom[facing=west]": {
-    "bedrock_identifier": "minecraft:loom",
-    "bedrock_data": 1
-  },
-  "minecraft:loom[facing=east]": {
-    "bedrock_identifier": "minecraft:loom",
-    "bedrock_data": 3
-  },
-  "minecraft:barrel[facing=north,open=true]": {
-    "bedrock_identifier": "minecraft:barrel",
-    "bedrock_data": 2
-  },
-  "minecraft:barrel[facing=north,open=false]": {
-    "bedrock_identifier": "minecraft:barrel",
-    "bedrock_data": 2
-  },
-  "minecraft:barrel[facing=east,open=true]": {
-    "bedrock_identifier": "minecraft:barrel",
-    "bedrock_data": 5
-  },
-  "minecraft:barrel[facing=east,open=false]": {
-    "bedrock_identifier": "minecraft:barrel",
-    "bedrock_data": 5
-  },
-  "minecraft:barrel[facing=south,open=true]": {
-    "bedrock_identifier": "minecraft:barrel",
-    "bedrock_data": 3
-  },
-  "minecraft:barrel[facing=south,open=false]": {
-    "bedrock_identifier": "minecraft:barrel",
-    "bedrock_data": 3
-  },
-  "minecraft:barrel[facing=west,open=true]": {
-    "bedrock_identifier": "minecraft:barrel",
-    "bedrock_data": 4
-  },
-  "minecraft:barrel[facing=west,open=false]": {
-    "bedrock_identifier": "minecraft:barrel",
-    "bedrock_data": 4
-  },
-  "minecraft:barrel[facing=up,open=true]": {
-    "bedrock_identifier": "minecraft:barrel",
-    "bedrock_data": 1
-  },
-  "minecraft:barrel[facing=up,open=false]": {
-    "bedrock_identifier": "minecraft:barrel",
-    "bedrock_data": 1
-  },
-  "minecraft:barrel[facing=down,open=true]": {
-    "bedrock_identifier": "minecraft:barrel",
-    "bedrock_data": 0
-  },
-  "minecraft:barrel[facing=down,open=false]": {
-    "bedrock_identifier": "minecraft:barrel",
-    "bedrock_data": 0
-  },
-  "minecraft:smoker[facing=north,lit=true]": {
-    "bedrock_identifier": "minecraft:lit_smoker",
-    "bedrock_data": 2
-  },
-  "minecraft:smoker[facing=north,lit=false]": {
-    "bedrock_identifier": "minecraft:smoker",
-    "bedrock_data": 2
-  },
-  "minecraft:smoker[facing=south,lit=true]": {
-    "bedrock_identifier": "minecraft:lit_smoker",
-    "bedrock_data": 3
-  },
-  "minecraft:smoker[facing=south,lit=false]": {
-    "bedrock_identifier": "minecraft:smoker",
-    "bedrock_data": 3
-  },
-  "minecraft:smoker[facing=west,lit=true]": {
-    "bedrock_identifier": "minecraft:lit_smoker",
-    "bedrock_data": 4
-  },
-  "minecraft:smoker[facing=west,lit=false]": {
-    "bedrock_identifier": "minecraft:smoker",
-    "bedrock_data": 4
-  },
-  "minecraft:smoker[facing=east,lit=true]": {
-    "bedrock_identifier": "minecraft:lit_smoker",
-    "bedrock_data": 5
-  },
-  "minecraft:smoker[facing=east,lit=false]": {
-    "bedrock_identifier": "minecraft:smoker",
-    "bedrock_data": 5
-  },
-  "minecraft:blast_furnace[facing=north,lit=true]": {
-    "bedrock_identifier": "minecraft:lit_blast_furnace",
-    "bedrock_data": 2
-  },
-  "minecraft:blast_furnace[facing=north,lit=false]": {
-    "bedrock_identifier": "minecraft:blast_furnace",
-    "bedrock_data": 2
-  },
-  "minecraft:blast_furnace[facing=south,lit=true]": {
-    "bedrock_identifier": "minecraft:lit_blast_furnace",
-    "bedrock_data": 3
-  },
-  "minecraft:blast_furnace[facing=south,lit=false]": {
-    "bedrock_identifier": "minecraft:blast_furnace",
-    "bedrock_data": 3
-  },
-  "minecraft:blast_furnace[facing=west,lit=true]": {
-    "bedrock_identifier": "minecraft:lit_blast_furnace",
-    "bedrock_data": 4
-  },
-  "minecraft:blast_furnace[facing=west,lit=false]": {
-    "bedrock_identifier": "minecraft:blast_furnace",
-    "bedrock_data": 4
-  },
-  "minecraft:blast_furnace[facing=east,lit=true]": {
-    "bedrock_identifier": "minecraft:lit_blast_furnace",
-    "bedrock_data": 5
-  },
-  "minecraft:blast_furnace[facing=east,lit=false]": {
-    "bedrock_identifier": "minecraft:blast_furnace",
-    "bedrock_data": 5
-  },
-  "minecraft:cartography_table": {
-    "bedrock_identifier": "minecraft:cartography_table",
-    "bedrock_data": 0
-  },
-  "minecraft:fletching_table": {
-    "bedrock_identifier": "minecraft:fletching_table",
-    "bedrock_data": 0
-  },
-  "minecraft:grindstone[face=floor,facing=north]": {
-    "bedrock_identifier": "minecraft:grindstone",
-    "bedrock_data": 2
-  },
-  "minecraft:grindstone[face=floor,facing=south]": {
-    "bedrock_identifier": "minecraft:grindstone",
-    "bedrock_data": 0
-  },
-  "minecraft:grindstone[face=floor,facing=west]": {
-    "bedrock_identifier": "minecraft:grindstone",
-    "bedrock_data": 1
-  },
-  "minecraft:grindstone[face=floor,facing=east]": {
-    "bedrock_identifier": "minecraft:grindstone",
-    "bedrock_data": 3
-  },
-  "minecraft:grindstone[face=wall,facing=north]": {
-    "bedrock_identifier": "minecraft:grindstone",
-    "bedrock_data": 10
-  },
-  "minecraft:grindstone[face=wall,facing=south]": {
-    "bedrock_identifier": "minecraft:grindstone",
-    "bedrock_data": 8
-  },
-  "minecraft:grindstone[face=wall,facing=west]": {
-    "bedrock_identifier": "minecraft:grindstone",
-    "bedrock_data": 9
-  },
-  "minecraft:grindstone[face=wall,facing=east]": {
-    "bedrock_identifier": "minecraft:grindstone",
-    "bedrock_data": 11
-  },
-  "minecraft:grindstone[face=ceiling,facing=north]": {
-    "bedrock_identifier": "minecraft:grindstone",
-    "bedrock_data": 6
-  },
-  "minecraft:grindstone[face=ceiling,facing=south]": {
-    "bedrock_identifier": "minecraft:grindstone",
-    "bedrock_data": 4
-  },
-  "minecraft:grindstone[face=ceiling,facing=west]": {
-    "bedrock_identifier": "minecraft:grindstone",
-    "bedrock_data": 5
-  },
-  "minecraft:grindstone[face=ceiling,facing=east]": {
-    "bedrock_identifier": "minecraft:grindstone",
-    "bedrock_data": 7
-  },
-  "minecraft:lectern[facing=north,has_book=true,powered=true]": {
-    "bedrock_identifier": "minecraft:lectern",
-    "bedrock_data": 6
-  },
-  "minecraft:lectern[facing=north,has_book=true,powered=false]": {
-    "bedrock_identifier": "minecraft:lectern",
-    "bedrock_data": 2
-  },
-  "minecraft:lectern[facing=north,has_book=false,powered=true]": {
-    "bedrock_identifier": "minecraft:lectern",
-    "bedrock_data": 6
-  },
-  "minecraft:lectern[facing=north,has_book=false,powered=false]": {
-    "bedrock_identifier": "minecraft:lectern",
-    "bedrock_data": 2
-  },
-  "minecraft:lectern[facing=south,has_book=true,powered=true]": {
-    "bedrock_identifier": "minecraft:lectern",
-    "bedrock_data": 4
-  },
-  "minecraft:lectern[facing=south,has_book=true,powered=false]": {
-    "bedrock_identifier": "minecraft:lectern",
-    "bedrock_data": 0
-  },
-  "minecraft:lectern[facing=south,has_book=false,powered=true]": {
-    "bedrock_identifier": "minecraft:lectern",
-    "bedrock_data": 4
-  },
-  "minecraft:lectern[facing=south,has_book=false,powered=false]": {
-    "bedrock_identifier": "minecraft:lectern",
-    "bedrock_data": 0
-  },
-  "minecraft:lectern[facing=west,has_book=true,powered=true]": {
-    "bedrock_identifier": "minecraft:lectern",
-    "bedrock_data": 5
-  },
-  "minecraft:lectern[facing=west,has_book=true,powered=false]": {
-    "bedrock_identifier": "minecraft:lectern",
-    "bedrock_data": 1
-  },
-  "minecraft:lectern[facing=west,has_book=false,powered=true]": {
-    "bedrock_identifier": "minecraft:lectern",
-    "bedrock_data": 5
-  },
-  "minecraft:lectern[facing=west,has_book=false,powered=false]": {
-    "bedrock_identifier": "minecraft:lectern",
-    "bedrock_data": 1
-  },
-  "minecraft:lectern[facing=east,has_book=true,powered=true]": {
-    "bedrock_identifier": "minecraft:lectern",
-    "bedrock_data": 7
-  },
-  "minecraft:lectern[facing=east,has_book=true,powered=false]": {
-    "bedrock_identifier": "minecraft:lectern",
-    "bedrock_data": 3
-  },
-  "minecraft:lectern[facing=east,has_book=false,powered=true]": {
-    "bedrock_identifier": "minecraft:lectern",
-    "bedrock_data": 7
-  },
-  "minecraft:lectern[facing=east,has_book=false,powered=false]": {
-    "bedrock_identifier": "minecraft:lectern",
-    "bedrock_data": 3
-  },
-  "minecraft:smithing_table": {
-    "bedrock_identifier": "minecraft:smithing_table",
-    "bedrock_data": 0
-  },
-  "minecraft:stonecutter[facing=north]": {
-    "bedrock_identifier": "minecraft:stonecutter_block",
-    "bedrock_data": 7
-  },
-  "minecraft:stonecutter[facing=south]": {
-    "bedrock_identifier": "minecraft:stonecutter_block",
-    "bedrock_data": 6
-  },
-  "minecraft:stonecutter[facing=west]": {
-    "bedrock_identifier": "minecraft:stonecutter_block",
-    "bedrock_data": 5
-  },
-  "minecraft:stonecutter[facing=east]": {
-    "bedrock_identifier": "minecraft:stonecutter_block",
-    "bedrock_data": 4
-  },
-  "minecraft:bell[attachment=floor,facing=north]": {
-    "bedrock_identifier": "minecraft:bell",
-    "bedrock_data": 2
-  },
-  "minecraft:bell[attachment=floor,facing=south]": {
-    "bedrock_identifier": "minecraft:bell",
-    "bedrock_data": 0
-  },
-  "minecraft:bell[attachment=floor,facing=west]": {
-    "bedrock_identifier": "minecraft:bell",
-    "bedrock_data": 1
-  },
-  "minecraft:bell[attachment=floor,facing=east]": {
-    "bedrock_identifier": "minecraft:bell",
-    "bedrock_data": 3
-  },
-  "minecraft:bell[attachment=ceiling,facing=north]": {
-    "bedrock_identifier": "minecraft:bell",
-    "bedrock_data": 6
-  },
-  "minecraft:bell[attachment=ceiling,facing=south]": {
-    "bedrock_identifier": "minecraft:bell",
-    "bedrock_data": 4
-  },
-  "minecraft:bell[attachment=ceiling,facing=west]": {
-    "bedrock_identifier": "minecraft:bell",
-    "bedrock_data": 5
-  },
-  "minecraft:bell[attachment=ceiling,facing=east]": {
-    "bedrock_identifier": "minecraft:bell",
-    "bedrock_data": 7
-  },
-  "minecraft:bell[attachment=single_wall,facing=north]": {
-    "bedrock_identifier": "minecraft:bell",
-    "bedrock_data": 10
-  },
-  "minecraft:bell[attachment=single_wall,facing=south]": {
-    "bedrock_identifier": "minecraft:bell",
-    "bedrock_data": 8
-  },
-  "minecraft:bell[attachment=single_wall,facing=west]": {
-    "bedrock_identifier": "minecraft:bell",
-    "bedrock_data": 9
-  },
-  "minecraft:bell[attachment=single_wall,facing=east]": {
-    "bedrock_identifier": "minecraft:bell",
-    "bedrock_data": 11
-  },
-  "minecraft:bell[attachment=double_wall,facing=north]": {
-    "bedrock_identifier": "minecraft:bell",
-    "bedrock_data": 14
-  },
-  "minecraft:bell[attachment=double_wall,facing=south]": {
-    "bedrock_identifier": "minecraft:bell",
-    "bedrock_data": 12
-  },
-  "minecraft:bell[attachment=double_wall,facing=west]": {
-    "bedrock_identifier": "minecraft:bell",
-    "bedrock_data": 13
-  },
-  "minecraft:bell[attachment=double_wall,facing=east]": {
-    "bedrock_identifier": "minecraft:bell",
-    "bedrock_data": 15
-  },
-  "minecraft:lantern[hanging=true]": {
-    "bedrock_identifier": "minecraft:lantern",
-    "bedrock_data": 1
-  },
-  "minecraft:lantern[hanging=false]": {
-    "bedrock_identifier": "minecraft:lantern",
-    "bedrock_data": 0
-  },
-  "minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 2
-  },
-  "minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 2
-  },
-  "minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 2
-  },
-  "minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 2
-  },
-  "minecraft:campfire[facing=north,lit=false,signal_fire=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 6
-  },
-  "minecraft:campfire[facing=north,lit=false,signal_fire=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 6
-  },
-  "minecraft:campfire[facing=north,lit=false,signal_fire=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 6
-  },
-  "minecraft:campfire[facing=north,lit=false,signal_fire=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 6
-  },
-  "minecraft:campfire[facing=south,lit=true,signal_fire=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 0
-  },
-  "minecraft:campfire[facing=south,lit=true,signal_fire=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 0
-  },
-  "minecraft:campfire[facing=south,lit=true,signal_fire=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 0
-  },
-  "minecraft:campfire[facing=south,lit=true,signal_fire=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 0
-  },
-  "minecraft:campfire[facing=south,lit=false,signal_fire=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 4
-  },
-  "minecraft:campfire[facing=south,lit=false,signal_fire=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 4
-  },
-  "minecraft:campfire[facing=south,lit=false,signal_fire=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 4
-  },
-  "minecraft:campfire[facing=south,lit=false,signal_fire=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 4
-  },
-  "minecraft:campfire[facing=west,lit=true,signal_fire=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 1
-  },
-  "minecraft:campfire[facing=west,lit=true,signal_fire=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 1
-  },
-  "minecraft:campfire[facing=west,lit=true,signal_fire=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 1
-  },
-  "minecraft:campfire[facing=west,lit=true,signal_fire=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 1
-  },
-  "minecraft:campfire[facing=west,lit=false,signal_fire=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 5
-  },
-  "minecraft:campfire[facing=west,lit=false,signal_fire=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 5
-  },
-  "minecraft:campfire[facing=west,lit=false,signal_fire=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 5
-  },
-  "minecraft:campfire[facing=west,lit=false,signal_fire=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 5
-  },
-  "minecraft:campfire[facing=east,lit=true,signal_fire=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 3
-  },
-  "minecraft:campfire[facing=east,lit=true,signal_fire=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 3
-  },
-  "minecraft:campfire[facing=east,lit=true,signal_fire=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 3
-  },
-  "minecraft:campfire[facing=east,lit=true,signal_fire=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 3
-  },
-  "minecraft:campfire[facing=east,lit=false,signal_fire=true,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 7
-  },
-  "minecraft:campfire[facing=east,lit=false,signal_fire=true,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 7
-  },
-  "minecraft:campfire[facing=east,lit=false,signal_fire=false,waterlogged=true]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 7
-  },
-  "minecraft:campfire[facing=east,lit=false,signal_fire=false,waterlogged=false]": {
-    "bedrock_identifier": "minecraft:campfire",
-    "bedrock_data": 7
-  },
-  "minecraft:sweet_berry_bush[age=0]": {
-    "bedrock_identifier": "minecraft:sweet_berry_bush",
-    "bedrock_data": 0
-  },
-  "minecraft:sweet_berry_bush[age=1]": {
-    "bedrock_identifier": "minecraft:sweet_berry_bush",
-    "bedrock_data": 1
-  },
-  "minecraft:sweet_berry_bush[age=2]": {
-    "bedrock_identifier": "minecraft:sweet_berry_bush",
-    "bedrock_data": 2
-  },
-  "minecraft:sweet_berry_bush[age=3]": {
-    "bedrock_identifier": "minecraft:sweet_berry_bush",
-    "bedrock_data": 3
-  },
-  "minecraft:structure_block[mode=save]": {
-    "bedrock_identifier": "minecraft:structure_block",
-    "bedrock_data": 2
-  },
-  "minecraft:structure_block[mode=load]": {
-    "bedrock_identifier": "minecraft:structure_block",
-    "bedrock_data": 3
-  },
-  "minecraft:structure_block[mode=corner]": {
-    "bedrock_identifier": "minecraft:structure_block",
-    "bedrock_data": 4
-  },
-  "minecraft:structure_block[mode=data]": {
-    "bedrock_identifier": "minecraft:structure_block",
-    "bedrock_data": 1
-  },
-  "minecraft:jigsaw[facing=north]": {
-    "bedrock_identifier": "minecraft:jigsaw",
-    "bedrock_data": 2
-  },
-  "minecraft:jigsaw[facing=east]": {
-    "bedrock_identifier": "minecraft:jigsaw",
-    "bedrock_data": 5
-  },
-  "minecraft:jigsaw[facing=south]": {
-    "bedrock_identifier": "minecraft:jigsaw",
-    "bedrock_data": 3
-  },
-  "minecraft:jigsaw[facing=west]": {
-    "bedrock_identifier": "minecraft:jigsaw",
-    "bedrock_data": 4
-  },
-  "minecraft:jigsaw[facing=up]": {
-    "bedrock_identifier": "minecraft:jigsaw",
-    "bedrock_data": 1
-  },
-  "minecraft:jigsaw[facing=down]": {
-    "bedrock_identifier": "minecraft:jigsaw",
-    "bedrock_data": 0
-  },
-  "minecraft:composter[level=0]": {
-    "bedrock_identifier": "minecraft:composter",
-    "bedrock_data": 0
-  },
-  "minecraft:composter[level=1]": {
-    "bedrock_identifier": "minecraft:composter",
-    "bedrock_data": 1
-  },
-  "minecraft:composter[level=2]": {
-    "bedrock_identifier": "minecraft:composter",
-    "bedrock_data": 2
-  },
-  "minecraft:composter[level=3]": {
-    "bedrock_identifier": "minecraft:composter",
-    "bedrock_data": 3
-  },
-  "minecraft:composter[level=4]": {
-    "bedrock_identifier": "minecraft:composter",
-    "bedrock_data": 4
-  },
-  "minecraft:composter[level=5]": {
-    "bedrock_identifier": "minecraft:composter",
-    "bedrock_data": 5
-  },
-  "minecraft:composter[level=6]": {
-    "bedrock_identifier": "minecraft:composter",
-    "bedrock_data": 6
-  },
-  "minecraft:composter[level=7]": {
-    "bedrock_identifier": "minecraft:composter",
-    "bedrock_data": 7
-  },
-  "minecraft:composter[level=8]": {
-    "bedrock_identifier": "minecraft:composter",
-    "bedrock_data": 8
-  }
-}
diff --git a/connector/src/main/resources/items.json b/connector/src/main/resources/items.json
deleted file mode 100644
index 746b30b4c..000000000
--- a/connector/src/main/resources/items.json
+++ /dev/null
@@ -1,3510 +0,0 @@
-{
-  "minecraft:air": {
-    "bedrock_id": -158,
-    "bedrock_data": 0
-  },
-  "minecraft:stone": {
-    "bedrock_id": 1,
-    "bedrock_data": 0
-  },
-  "minecraft:granite": {
-    "bedrock_id": 1,
-    "bedrock_data": 1
-  },
-  "minecraft:polished_granite": {
-    "bedrock_id": 1,
-    "bedrock_data": 2
-  },
-  "minecraft:diorite": {
-    "bedrock_id": 1,
-    "bedrock_data": 3
-  },
-  "minecraft:polished_diorite": {
-    "bedrock_id": 1,
-    "bedrock_data": 4
-  },
-  "minecraft:andesite": {
-    "bedrock_id": 1,
-    "bedrock_data": 5
-  },
-  "minecraft:polished_andesite": {
-    "bedrock_id": 1,
-    "bedrock_data": 6
-  },
-  "minecraft:grass_block": {
-    "bedrock_id": 2,
-    "bedrock_data": 0
-  },
-  "minecraft:dirt": {
-    "bedrock_id": 3,
-    "bedrock_data": 0
-  },
-  "minecraft:coarse_dirt": {
-    "bedrock_id": 3,
-    "bedrock_data": 1
-  },
-  "minecraft:podzol": {
-    "bedrock_id": 243,
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone": {
-    "bedrock_id": 4,
-    "bedrock_data": 0
-  },
-  "minecraft:oak_planks": {
-    "bedrock_id": 5,
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_planks": {
-    "bedrock_id": 5,
-    "bedrock_data": 1
-  },
-  "minecraft:birch_planks": {
-    "bedrock_id": 5,
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_planks": {
-    "bedrock_id": 5,
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_planks": {
-    "bedrock_id": 5,
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_planks": {
-    "bedrock_id": 5,
-    "bedrock_data": 5
-  },
-  "minecraft:oak_sapling": {
-    "bedrock_id": 6,
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_sapling": {
-    "bedrock_id": 6,
-    "bedrock_data": 1
-  },
-  "minecraft:birch_sapling": {
-    "bedrock_id": 6,
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_sapling": {
-    "bedrock_id": 6,
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_sapling": {
-    "bedrock_id": 6,
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_sapling": {
-    "bedrock_id": 6,
-    "bedrock_data": 5
-  },
-  "minecraft:bedrock": {
-    "bedrock_id": 7,
-    "bedrock_data": 0
-  },
-  "minecraft:sand": {
-    "bedrock_id": 12,
-    "bedrock_data": 0
-  },
-  "minecraft:red_sand": {
-    "bedrock_id": 12,
-    "bedrock_data": 1
-  },
-  "minecraft:gravel": {
-    "bedrock_id": 13,
-    "bedrock_data": 0
-  },
-  "minecraft:gold_ore": {
-    "bedrock_id": 14,
-    "bedrock_data": 0
-  },
-  "minecraft:iron_ore": {
-    "bedrock_id": 15,
-    "bedrock_data": 0
-  },
-  "minecraft:coal_ore": {
-    "bedrock_id": 16,
-    "bedrock_data": 0
-  },
-  "minecraft:oak_log": {
-    "bedrock_id": 17,
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_log": {
-    "bedrock_id": 17,
-    "bedrock_data": 1
-  },
-  "minecraft:birch_log": {
-    "bedrock_id": 17,
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_log": {
-    "bedrock_id": 17,
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_log": {
-    "bedrock_id": 162,
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_log": {
-    "bedrock_id": 162,
-    "bedrock_data": 1
-  },
-  "minecraft:stripped_oak_log": {
-    "bedrock_id": -10,
-    "bedrock_data": 0
-  },
-  "minecraft:stripped_spruce_log": {
-    "bedrock_id": -5,
-    "bedrock_data": 0
-  },
-  "minecraft:stripped_birch_log": {
-    "bedrock_id": -6,
-    "bedrock_data": 0
-  },
-  "minecraft:stripped_jungle_log": {
-    "bedrock_id": -7,
-    "bedrock_data": 0
-  },
-  "minecraft:stripped_acacia_log": {
-    "bedrock_id": -8,
-    "bedrock_data": 0
-  },
-  "minecraft:stripped_dark_oak_log": {
-    "bedrock_id": -9,
-    "bedrock_data": 0
-  },
-  "minecraft:stripped_oak_wood": {
-    "bedrock_id": -212,
-    "bedrock_data": 8
-  },
-  "minecraft:stripped_spruce_wood": {
-    "bedrock_id": -212,
-    "bedrock_data": 9
-  },
-  "minecraft:stripped_birch_wood": {
-    "bedrock_id": -212,
-    "bedrock_data": 10
-  },
-  "minecraft:stripped_jungle_wood": {
-    "bedrock_id": -212,
-    "bedrock_data": 11
-  },
-  "minecraft:stripped_acacia_wood": {
-    "bedrock_id": -212,
-    "bedrock_data": 12
-  },
-  "minecraft:stripped_dark_oak_wood": {
-    "bedrock_id": -212,
-    "bedrock_data": 13
-  },
-  "minecraft:oak_wood": {
-    "bedrock_id": -212,
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_wood": {
-    "bedrock_id": -212,
-    "bedrock_data": 1
-  },
-  "minecraft:birch_wood": {
-    "bedrock_id": -212,
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_wood": {
-    "bedrock_id": -212,
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_wood": {
-    "bedrock_id": -212,
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_wood": {
-    "bedrock_id": -212,
-    "bedrock_data": 5
-  },
-  "minecraft:oak_leaves": {
-    "bedrock_id": 18,
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_leaves": {
-    "bedrock_id": 18,
-    "bedrock_data": 1
-  },
-  "minecraft:birch_leaves": {
-    "bedrock_id": 18,
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_leaves": {
-    "bedrock_id": 18,
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_leaves": {
-    "bedrock_id": 161,
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_leaves": {
-    "bedrock_id": 161,
-    "bedrock_data": 1
-  },
-  "minecraft:sponge": {
-    "bedrock_id": 19,
-    "bedrock_data": 0
-  },
-  "minecraft:wet_sponge": {
-    "bedrock_id": 19,
-    "bedrock_data": 1
-  },
-  "minecraft:glass": {
-    "bedrock_id": 20,
-    "bedrock_data": 0
-  },
-  "minecraft:lapis_ore": {
-    "bedrock_id": 21,
-    "bedrock_data": 0
-  },
-  "minecraft:lapis_block": {
-    "bedrock_id": 22,
-    "bedrock_data": 0
-  },
-  "minecraft:dispenser": {
-    "bedrock_id": 23,
-    "bedrock_data": 0
-  },
-  "minecraft:sandstone": {
-    "bedrock_id": 24,
-    "bedrock_data": 0
-  },
-  "minecraft:chiseled_sandstone": {
-    "bedrock_id": 24,
-    "bedrock_data": 1
-  },
-  "minecraft:cut_sandstone": {
-    "bedrock_id": 24,
-    "bedrock_data": 2
-  },
-  "minecraft:note_block": {
-    "bedrock_id": 25,
-    "bedrock_data": 0
-  },
-  "minecraft:powered_rail": {
-    "bedrock_id": 27,
-    "bedrock_data": 0
-  },
-  "minecraft:detector_rail": {
-    "bedrock_id": 28,
-    "bedrock_data": 0
-  },
-  "minecraft:sticky_piston": {
-    "bedrock_id": 29,
-    "bedrock_data": 0
-  },
-  "minecraft:cobweb": {
-    "bedrock_id": 30,
-    "bedrock_data": 0
-  },
-  "minecraft:grass": {
-    "bedrock_id": 31,
-    "bedrock_data": 1
-  },
-  "minecraft:fern": {
-    "bedrock_id": 31,
-    "bedrock_data": 2
-  },
-  "minecraft:dead_bush": {
-    "bedrock_id": 32,
-    "bedrock_data": 0
-  },
-  "minecraft:seagrass": {
-    "bedrock_id": -130,
-    "bedrock_data": 0
-  },
-  "minecraft:sea_pickle": {
-    "bedrock_id": -156,
-    "bedrock_data": 0
-  },
-  "minecraft:piston": {
-    "bedrock_id": 33,
-    "bedrock_data": 0
-  },
-  "minecraft:white_wool": {
-    "bedrock_id": 35,
-    "bedrock_data": 0
-  },
-  "minecraft:orange_wool": {
-    "bedrock_id": 35,
-    "bedrock_data": 1
-  },
-  "minecraft:magenta_wool": {
-    "bedrock_id": 35,
-    "bedrock_data": 2
-  },
-  "minecraft:light_blue_wool": {
-    "bedrock_id": 35,
-    "bedrock_data": 3
-  },
-  "minecraft:yellow_wool": {
-    "bedrock_id": 35,
-    "bedrock_data": 4
-  },
-  "minecraft:lime_wool": {
-    "bedrock_id": 35,
-    "bedrock_data": 5
-  },
-  "minecraft:pink_wool": {
-    "bedrock_id": 35,
-    "bedrock_data": 6
-  },
-  "minecraft:gray_wool": {
-    "bedrock_id": 35,
-    "bedrock_data": 7
-  },
-  "minecraft:light_gray_wool": {
-    "bedrock_id": 35,
-    "bedrock_data": 8
-  },
-  "minecraft:cyan_wool": {
-    "bedrock_id": 35,
-    "bedrock_data": 9
-  },
-  "minecraft:purple_wool": {
-    "bedrock_id": 35,
-    "bedrock_data": 10
-  },
-  "minecraft:blue_wool": {
-    "bedrock_id": 35,
-    "bedrock_data": 11
-  },
-  "minecraft:brown_wool": {
-    "bedrock_id": 35,
-    "bedrock_data": 12
-  },
-  "minecraft:green_wool": {
-    "bedrock_id": 35,
-    "bedrock_data": 13
-  },
-  "minecraft:red_wool": {
-    "bedrock_id": 35,
-    "bedrock_data": 14
-  },
-  "minecraft:black_wool": {
-    "bedrock_id": 35,
-    "bedrock_data": 15
-  },
-  "minecraft:dandelion": {
-    "bedrock_id": 37,
-    "bedrock_data": 0
-  },
-  "minecraft:poppy": {
-    "bedrock_id": 38,
-    "bedrock_data": 0
-  },
-  "minecraft:blue_orchid": {
-    "bedrock_id": 38,
-    "bedrock_data": 1
-  },
-  "minecraft:allium": {
-    "bedrock_id": 38,
-    "bedrock_data": 2
-  },
-  "minecraft:azure_bluet": {
-    "bedrock_id": 38,
-    "bedrock_data": 3
-  },
-  "minecraft:red_tulip": {
-    "bedrock_id": 38,
-    "bedrock_data": 4
-  },
-  "minecraft:orange_tulip": {
-    "bedrock_id": 38,
-    "bedrock_data": 5
-  },
-  "minecraft:white_tulip": {
-    "bedrock_id": 38,
-    "bedrock_data": 6
-  },
-  "minecraft:pink_tulip": {
-    "bedrock_id": 38,
-    "bedrock_data": 7
-  },
-  "minecraft:oxeye_daisy": {
-    "bedrock_id": 38,
-    "bedrock_data": 8
-  },
-  "minecraft:cornflower": {
-    "bedrock_id": 38,
-    "bedrock_data": 9
-  },
-  "minecraft:lily_of_the_valley": {
-    "bedrock_id": 38,
-    "bedrock_data": 10
-  },
-  "minecraft:wither_rose": {
-    "bedrock_id": -216,
-    "bedrock_data": 0
-  },
-  "minecraft:brown_mushroom": {
-    "bedrock_id": 39,
-    "bedrock_data": 0
-  },
-  "minecraft:red_mushroom": {
-    "bedrock_id": 40,
-    "bedrock_data": 0
-  },
-  "minecraft:gold_block": {
-    "bedrock_id": 41,
-    "bedrock_data": 0
-  },
-  "minecraft:iron_block": {
-    "bedrock_id": 42,
-    "bedrock_data": 0
-  },
-  "minecraft:oak_slab": {
-    "bedrock_id": 158,
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_slab": {
-    "bedrock_id": 158,
-    "bedrock_data": 1
-  },
-  "minecraft:birch_slab": {
-    "bedrock_id": 158,
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_slab": {
-    "bedrock_id": 158,
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_slab": {
-    "bedrock_id": 158,
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_slab": {
-    "bedrock_id": 158,
-    "bedrock_data": 5
-  },
-  "minecraft:stone_slab": {
-    "bedrock_id": -166,
-    "bedrock_data": 2
-  },
-  "minecraft:smooth_stone_slab": {
-    "bedrock_id": 44,
-    "bedrock_data": 0
-  },
-  "minecraft:sandstone_slab": {
-    "bedrock_id": 44,
-    "bedrock_data": 1
-  },
-  "minecraft:cut_sandstone_slab": {
-    "bedrock_id": -166,
-    "bedrock_data": 3
-  },
-  "minecraft:petrified_oak_slab": {
-    "bedrock_id": 44,
-    "bedrock_data": 2
-  },
-  "minecraft:cobblestone_slab": {
-    "bedrock_id": 44,
-    "bedrock_data": 3
-  },
-  "minecraft:brick_slab": {
-    "bedrock_id": 44,
-    "bedrock_data": 4
-  },
-  "minecraft:stone_brick_slab": {
-    "bedrock_id": 44,
-    "bedrock_data": 5
-  },
-  "minecraft:nether_brick_slab": {
-    "bedrock_id": 44,
-    "bedrock_data": 7
-  },
-  "minecraft:quartz_slab": {
-    "bedrock_id": 44,
-    "bedrock_data": 6
-  },
-  "minecraft:red_sandstone_slab": {
-    "bedrock_id": 182,
-    "bedrock_data": 0
-  },
-  "minecraft:cut_red_sandstone_slab": {
-    "bedrock_id": -166,
-    "bedrock_data": 4
-  },
-  "minecraft:purpur_slab": {
-    "bedrock_id": 182,
-    "bedrock_data": 1
-  },
-  "minecraft:prismarine_slab": {
-    "bedrock_id": 182,
-    "bedrock_data": 2
-  },
-  "minecraft:prismarine_brick_slab": {
-    "bedrock_id": 182,
-    "bedrock_data": 4
-  },
-  "minecraft:dark_prismarine_slab": {
-    "bedrock_id": 182,
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_quartz": {
-    "bedrock_id": 155,
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_red_sandstone": {
-    "bedrock_id": 179,
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_sandstone": {
-    "bedrock_id": 24,
-    "bedrock_data": 3
-  },
-  "minecraft:smooth_stone": {
-    "bedrock_id": -183,
-    "bedrock_data": 0
-  },
-  "minecraft:bricks": {
-    "bedrock_id": 45,
-    "bedrock_data": 0
-  },
-  "minecraft:tnt": {
-    "bedrock_id": 46,
-    "bedrock_data": 0
-  },
-  "minecraft:bookshelf": {
-    "bedrock_id": 47,
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_cobblestone": {
-    "bedrock_id": 48,
-    "bedrock_data": 0
-  },
-  "minecraft:obsidian": {
-    "bedrock_id": 49,
-    "bedrock_data": 0
-  },
-  "minecraft:torch": {
-    "bedrock_id": 50,
-    "bedrock_data": 0
-  },
-  "minecraft:end_rod": {
-    "bedrock_id": 208,
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_plant": {
-    "bedrock_id": 240,
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_flower": {
-    "bedrock_id": 200,
-    "bedrock_data": 0
-  },
-  "minecraft:purpur_block": {
-    "bedrock_id": 201,
-    "bedrock_data": 0
-  },
-  "minecraft:purpur_pillar": {
-    "bedrock_id": 201,
-    "bedrock_data": 2
-  },
-  "minecraft:purpur_stairs": {
-    "bedrock_id": 203,
-    "bedrock_data": 0
-  },
-  "minecraft:spawner": {
-    "bedrock_id": 52,
-    "bedrock_data": 0
-  },
-  "minecraft:oak_stairs": {
-    "bedrock_id": 53,
-    "bedrock_data": 0
-  },
-  "minecraft:chest": {
-    "bedrock_id": 54,
-    "bedrock_data": 0
-  },
-  "minecraft:diamond_ore": {
-    "bedrock_id": 56,
-    "bedrock_data": 0
-  },
-  "minecraft:diamond_block": {
-    "bedrock_id": 57,
-    "bedrock_data": 0
-  },
-  "minecraft:crafting_table": {
-    "bedrock_id": 58,
-    "bedrock_data": 0
-  },
-  "minecraft:farmland": {
-    "bedrock_id": 60,
-    "bedrock_data": 0
-  },
-  "minecraft:furnace": {
-    "bedrock_id": 61,
-    "bedrock_data": 0
-  },
-  "minecraft:ladder": {
-    "bedrock_id": 65,
-    "bedrock_data": 0
-  },
-  "minecraft:rail": {
-    "bedrock_id": 66,
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_stairs": {
-    "bedrock_id": 67,
-    "bedrock_data": 0
-  },
-  "minecraft:lever": {
-    "bedrock_id": 69,
-    "bedrock_data": 0
-  },
-  "minecraft:stone_pressure_plate": {
-    "bedrock_id": 70,
-    "bedrock_data": 0
-  },
-  "minecraft:oak_pressure_plate": {
-    "bedrock_id": 72,
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_pressure_plate": {
-    "bedrock_id": -154,
-    "bedrock_data": 0
-  },
-  "minecraft:birch_pressure_plate": {
-    "bedrock_id": -151,
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_pressure_plate": {
-    "bedrock_id": -153,
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_pressure_plate": {
-    "bedrock_id": -150,
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_pressure_plate": {
-    "bedrock_id": -152,
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_ore": {
-    "bedrock_id": 73,
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_torch": {
-    "bedrock_id": 76,
-    "bedrock_data": 0
-  },
-  "minecraft:stone_button": {
-    "bedrock_id": 77,
-    "bedrock_data": 0
-  },
-  "minecraft:snow": {
-    "bedrock_id": 78,
-    "bedrock_data": 0
-  },
-  "minecraft:ice": {
-    "bedrock_id": 79,
-    "bedrock_data": 0
-  },
-  "minecraft:snow_block": {
-    "bedrock_id": 80,
-    "bedrock_data": 0
-  },
-  "minecraft:cactus": {
-    "bedrock_id": 81,
-    "bedrock_data": 0
-  },
-  "minecraft:clay": {
-    "bedrock_id": 82,
-    "bedrock_data": 0
-  },
-  "minecraft:jukebox": {
-    "bedrock_id": 84,
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence": {
-    "bedrock_id": 85,
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_fence": {
-    "bedrock_id": 85,
-    "bedrock_data": 1
-  },
-  "minecraft:birch_fence": {
-    "bedrock_id": 85,
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_fence": {
-    "bedrock_id": 85,
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_fence": {
-    "bedrock_id": 85,
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_fence": {
-    "bedrock_id": 85,
-    "bedrock_data": 5
-  },
-  "minecraft:pumpkin": {
-    "bedrock_id": 86,
-    "bedrock_data": 0
-  },
-  "minecraft:carved_pumpkin": {
-    "bedrock_id": -155,
-    "bedrock_data": 0
-  },
-  "minecraft:netherrack": {
-    "bedrock_id": 87,
-    "bedrock_data": 0
-  },
-  "minecraft:soul_sand": {
-    "bedrock_id": 88,
-    "bedrock_data": 0
-  },
-  "minecraft:glowstone": {
-    "bedrock_id": 89,
-    "bedrock_data": 0
-  },
-  "minecraft:jack_o_lantern": {
-    "bedrock_id": 91,
-    "bedrock_data": 0
-  },
-  "minecraft:oak_trapdoor": {
-    "bedrock_id": 96,
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_trapdoor": {
-    "bedrock_id": -149,
-    "bedrock_data": 0
-  },
-  "minecraft:birch_trapdoor": {
-    "bedrock_id": -146,
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_trapdoor": {
-    "bedrock_id": -148,
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_trapdoor": {
-    "bedrock_id": -145,
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_trapdoor": {
-    "bedrock_id": -147,
-    "bedrock_data": 0
-  },
-  "minecraft:infested_stone": {
-    "bedrock_id": 97,
-    "bedrock_data": 0
-  },
-  "minecraft:infested_cobblestone": {
-    "bedrock_id": 97,
-    "bedrock_data": 1
-  },
-  "minecraft:infested_stone_bricks": {
-    "bedrock_id": 97,
-    "bedrock_data": 2
-  },
-  "minecraft:infested_mossy_stone_bricks": {
-    "bedrock_id": 97,
-    "bedrock_data": 3
-  },
-  "minecraft:infested_cracked_stone_bricks": {
-    "bedrock_id": 97,
-    "bedrock_data": 4
-  },
-  "minecraft:infested_chiseled_stone_bricks": {
-    "bedrock_id": 97,
-    "bedrock_data": 5
-  },
-  "minecraft:stone_bricks": {
-    "bedrock_id": 98,
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_stone_bricks": {
-    "bedrock_id": 98,
-    "bedrock_data": 1
-  },
-  "minecraft:cracked_stone_bricks": {
-    "bedrock_id": 98,
-    "bedrock_data": 2
-  },
-  "minecraft:chiseled_stone_bricks": {
-    "bedrock_id": 98,
-    "bedrock_data": 3
-  },
-  "minecraft:brown_mushroom_block": {
-    "bedrock_id": 99,
-    "bedrock_data": 14
-  },
-  "minecraft:red_mushroom_block": {
-    "bedrock_id": 100,
-    "bedrock_data": 14
-  },
-  "minecraft:mushroom_stem": {
-    "bedrock_id": 99,
-    "bedrock_data": 15
-  },
-  "minecraft:iron_bars": {
-    "bedrock_id": 101,
-    "bedrock_data": 0
-  },
-  "minecraft:glass_pane": {
-    "bedrock_id": 102,
-    "bedrock_data": 0
-  },
-  "minecraft:melon": {
-    "bedrock_id": 103,
-    "bedrock_data": 0
-  },
-  "minecraft:vine": {
-    "bedrock_id": 106,
-    "bedrock_data": 0
-  },
-  "minecraft:oak_fence_gate": {
-    "bedrock_id": 107,
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_fence_gate": {
-    "bedrock_id": 183,
-    "bedrock_data": 0
-  },
-  "minecraft:birch_fence_gate": {
-    "bedrock_id": 184,
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_fence_gate": {
-    "bedrock_id": 185,
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_fence_gate": {
-    "bedrock_id": 187,
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_fence_gate": {
-    "bedrock_id": 186,
-    "bedrock_data": 0
-  },
-  "minecraft:brick_stairs": {
-    "bedrock_id": 108,
-    "bedrock_data": 0
-  },
-  "minecraft:stone_brick_stairs": {
-    "bedrock_id": 109,
-    "bedrock_data": 0
-  },
-  "minecraft:mycelium": {
-    "bedrock_id": 110,
-    "bedrock_data": 0
-  },
-  "minecraft:lily_pad": {
-    "bedrock_id": 111,
-    "bedrock_data": 0
-  },
-  "minecraft:nether_bricks": {
-    "bedrock_id": 112,
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_fence": {
-    "bedrock_id": 113,
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick_stairs": {
-    "bedrock_id": 114,
-    "bedrock_data": 0
-  },
-  "minecraft:enchanting_table": {
-    "bedrock_id": 116,
-    "bedrock_data": 0
-  },
-  "minecraft:end_portal_frame": {
-    "bedrock_id": 120,
-    "bedrock_data": 0
-  },
-  "minecraft:end_stone": {
-    "bedrock_id": 121,
-    "bedrock_data": 0
-  },
-  "minecraft:end_stone_bricks": {
-    "bedrock_id": 206,
-    "bedrock_data": 0
-  },
-  "minecraft:dragon_egg": {
-    "bedrock_id": 122,
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_lamp": {
-    "bedrock_id": 123,
-    "bedrock_data": 0
-  },
-  "minecraft:sandstone_stairs": {
-    "bedrock_id": 128,
-    "bedrock_data": 0
-  },
-  "minecraft:emerald_ore": {
-    "bedrock_id": 129,
-    "bedrock_data": 0
-  },
-  "minecraft:ender_chest": {
-    "bedrock_id": 130,
-    "bedrock_data": 0
-  },
-  "minecraft:tripwire_hook": {
-    "bedrock_id": 131,
-    "bedrock_data": 0
-  },
-  "minecraft:emerald_block": {
-    "bedrock_id": 133,
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_stairs": {
-    "bedrock_id": 134,
-    "bedrock_data": 0
-  },
-  "minecraft:birch_stairs": {
-    "bedrock_id": 135,
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_stairs": {
-    "bedrock_id": 136,
-    "bedrock_data": 0
-  },
-  "minecraft:command_block": {
-    "bedrock_id": 137,
-    "bedrock_data": 0
-  },
-  "minecraft:beacon": {
-    "bedrock_id": 138,
-    "bedrock_data": 0
-  },
-  "minecraft:cobblestone_wall": {
-    "bedrock_id": 139,
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_cobblestone_wall": {
-    "bedrock_id": 139,
-    "bedrock_data": 1
-  },
-  "minecraft:brick_wall": {
-    "bedrock_id": 139,
-    "bedrock_data": 6
-  },
-  "minecraft:prismarine_wall": {
-    "bedrock_id": 139,
-    "bedrock_data": 11
-  },
-  "minecraft:red_sandstone_wall": {
-    "bedrock_id": 139,
-    "bedrock_data": 12
-  },
-  "minecraft:mossy_stone_brick_wall": {
-    "bedrock_id": 139,
-    "bedrock_data": 8
-  },
-  "minecraft:granite_wall": {
-    "bedrock_id": 139,
-    "bedrock_data": 2
-  },
-  "minecraft:stone_brick_wall": {
-    "bedrock_id": 139,
-    "bedrock_data": 7
-  },
-  "minecraft:nether_brick_wall": {
-    "bedrock_id": 139,
-    "bedrock_data": 9
-  },
-  "minecraft:andesite_wall": {
-    "bedrock_id": 139,
-    "bedrock_data": 4
-  },
-  "minecraft:red_nether_brick_wall": {
-    "bedrock_id": 139,
-    "bedrock_data": 13
-  },
-  "minecraft:sandstone_wall": {
-    "bedrock_id": 139,
-    "bedrock_data": 5
-  },
-  "minecraft:end_stone_brick_wall": {
-    "bedrock_id": 139,
-    "bedrock_data": 10
-  },
-  "minecraft:diorite_wall": {
-    "bedrock_id": 139,
-    "bedrock_data": 3
-  },
-  "minecraft:oak_button": {
-    "bedrock_id": 143,
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_button": {
-    "bedrock_id": -144,
-    "bedrock_data": 0
-  },
-  "minecraft:birch_button": {
-    "bedrock_id": -141,
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_button": {
-    "bedrock_id": -143,
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_button": {
-    "bedrock_id": -140,
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_button": {
-    "bedrock_id": -142,
-    "bedrock_data": 0
-  },
-  "minecraft:anvil": {
-    "bedrock_id": 145,
-    "bedrock_data": 0
-  },
-  "minecraft:chipped_anvil": {
-    "bedrock_id": 145,
-    "bedrock_data": 4
-  },
-  "minecraft:damaged_anvil": {
-    "bedrock_id": 145,
-    "bedrock_data": 8
-  },
-  "minecraft:trapped_chest": {
-    "bedrock_id": 146,
-    "bedrock_data": 0
-  },
-  "minecraft:light_weighted_pressure_plate": {
-    "bedrock_id": 147,
-    "bedrock_data": 0
-  },
-  "minecraft:heavy_weighted_pressure_plate": {
-    "bedrock_id": 148,
-    "bedrock_data": 0
-  },
-  "minecraft:daylight_detector": {
-    "bedrock_id": 151,
-    "bedrock_data": 0
-  },
-  "minecraft:redstone_block": {
-    "bedrock_id": 152,
-    "bedrock_data": 0
-  },
-  "minecraft:nether_quartz_ore": {
-    "bedrock_id": 153,
-    "bedrock_data": 0
-  },
-  "minecraft:hopper": {
-    "bedrock_id": 410,
-    "bedrock_data": 0
-  },
-  "minecraft:chiseled_quartz_block": {
-    "bedrock_id": 155,
-    "bedrock_data": 1
-  },
-  "minecraft:quartz_block": {
-    "bedrock_id": 155,
-    "bedrock_data": 0
-  },
-  "minecraft:quartz_pillar": {
-    "bedrock_id": 155,
-    "bedrock_data": 2
-  },
-  "minecraft:quartz_stairs": {
-    "bedrock_id": 156,
-    "bedrock_data": 0
-  },
-  "minecraft:activator_rail": {
-    "bedrock_id": 126,
-    "bedrock_data": 0
-  },
-  "minecraft:dropper": {
-    "bedrock_id": 125,
-    "bedrock_data": 0
-  },
-  "minecraft:white_terracotta": {
-    "bedrock_id": 159,
-    "bedrock_data": 0
-  },
-  "minecraft:orange_terracotta": {
-    "bedrock_id": 159,
-    "bedrock_data": 1
-  },
-  "minecraft:magenta_terracotta": {
-    "bedrock_id": 159,
-    "bedrock_data": 2
-  },
-  "minecraft:light_blue_terracotta": {
-    "bedrock_id": 159,
-    "bedrock_data": 3
-  },
-  "minecraft:yellow_terracotta": {
-    "bedrock_id": 159,
-    "bedrock_data": 4
-  },
-  "minecraft:lime_terracotta": {
-    "bedrock_id": 159,
-    "bedrock_data": 5
-  },
-  "minecraft:pink_terracotta": {
-    "bedrock_id": 159,
-    "bedrock_data": 6
-  },
-  "minecraft:gray_terracotta": {
-    "bedrock_id": 159,
-    "bedrock_data": 7
-  },
-  "minecraft:light_gray_terracotta": {
-    "bedrock_id": 159,
-    "bedrock_data": 8
-  },
-  "minecraft:cyan_terracotta": {
-    "bedrock_id": 159,
-    "bedrock_data": 9
-  },
-  "minecraft:purple_terracotta": {
-    "bedrock_id": 159,
-    "bedrock_data": 10
-  },
-  "minecraft:blue_terracotta": {
-    "bedrock_id": 159,
-    "bedrock_data": 11
-  },
-  "minecraft:brown_terracotta": {
-    "bedrock_id": 159,
-    "bedrock_data": 12
-  },
-  "minecraft:green_terracotta": {
-    "bedrock_id": 159,
-    "bedrock_data": 13
-  },
-  "minecraft:red_terracotta": {
-    "bedrock_id": 159,
-    "bedrock_data": 14
-  },
-  "minecraft:black_terracotta": {
-    "bedrock_id": 159,
-    "bedrock_data": 15
-  },
-  "minecraft:barrier": {
-    "bedrock_id": -161,
-    "bedrock_data": 0
-  },
-  "minecraft:iron_trapdoor": {
-    "bedrock_id": 167,
-    "bedrock_data": 0
-  },
-  "minecraft:hay_block": {
-    "bedrock_id": 170,
-    "bedrock_data": 0
-  },
-  "minecraft:white_carpet": {
-    "bedrock_id": 171,
-    "bedrock_data": 0
-  },
-  "minecraft:orange_carpet": {
-    "bedrock_id": 171,
-    "bedrock_data": 1
-  },
-  "minecraft:magenta_carpet": {
-    "bedrock_id": 171,
-    "bedrock_data": 2
-  },
-  "minecraft:light_blue_carpet": {
-    "bedrock_id": 171,
-    "bedrock_data": 3
-  },
-  "minecraft:yellow_carpet": {
-    "bedrock_id": 171,
-    "bedrock_data": 4
-  },
-  "minecraft:lime_carpet": {
-    "bedrock_id": 171,
-    "bedrock_data": 5
-  },
-  "minecraft:pink_carpet": {
-    "bedrock_id": 171,
-    "bedrock_data": 6
-  },
-  "minecraft:gray_carpet": {
-    "bedrock_id": 171,
-    "bedrock_data": 7
-  },
-  "minecraft:light_gray_carpet": {
-    "bedrock_id": 171,
-    "bedrock_data": 8
-  },
-  "minecraft:cyan_carpet": {
-    "bedrock_id": 171,
-    "bedrock_data": 9
-  },
-  "minecraft:purple_carpet": {
-    "bedrock_id": 171,
-    "bedrock_data": 10
-  },
-  "minecraft:blue_carpet": {
-    "bedrock_id": 171,
-    "bedrock_data": 11
-  },
-  "minecraft:brown_carpet": {
-    "bedrock_id": 171,
-    "bedrock_data": 12
-  },
-  "minecraft:green_carpet": {
-    "bedrock_id": 171,
-    "bedrock_data": 13
-  },
-  "minecraft:red_carpet": {
-    "bedrock_id": 171,
-    "bedrock_data": 14
-  },
-  "minecraft:black_carpet": {
-    "bedrock_id": 171,
-    "bedrock_data": 15
-  },
-  "minecraft:terracotta": {
-    "bedrock_id": 172,
-    "bedrock_data": 0
-  },
-  "minecraft:coal_block": {
-    "bedrock_id": 173,
-    "bedrock_data": 0
-  },
-  "minecraft:packed_ice": {
-    "bedrock_id": 174,
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_stairs": {
-    "bedrock_id": 163,
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_stairs": {
-    "bedrock_id": 164,
-    "bedrock_data": 0
-  },
-  "minecraft:slime_block": {
-    "bedrock_id": 165,
-    "bedrock_data": 0
-  },
-  "minecraft:grass_path": {
-    "bedrock_id": 198,
-    "bedrock_data": 0
-  },
-  "minecraft:sunflower": {
-    "bedrock_id": 175,
-    "bedrock_data": 0
-  },
-  "minecraft:lilac": {
-    "bedrock_id": 175,
-    "bedrock_data": 1
-  },
-  "minecraft:rose_bush": {
-    "bedrock_id": 175,
-    "bedrock_data": 4
-  },
-  "minecraft:peony": {
-    "bedrock_id": 175,
-    "bedrock_data": 5
-  },
-  "minecraft:tall_grass": {
-    "bedrock_id": 175,
-    "bedrock_data": 2
-  },
-  "minecraft:large_fern": {
-    "bedrock_id": 175,
-    "bedrock_data": 3
-  },
-  "minecraft:white_stained_glass": {
-    "bedrock_id": 241,
-    "bedrock_data": 0
-  },
-  "minecraft:orange_stained_glass": {
-    "bedrock_id": 241,
-    "bedrock_data": 1
-  },
-  "minecraft:magenta_stained_glass": {
-    "bedrock_id": 241,
-    "bedrock_data": 2
-  },
-  "minecraft:light_blue_stained_glass": {
-    "bedrock_id": 241,
-    "bedrock_data": 3
-  },
-  "minecraft:yellow_stained_glass": {
-    "bedrock_id": 241,
-    "bedrock_data": 4
-  },
-  "minecraft:lime_stained_glass": {
-    "bedrock_id": 241,
-    "bedrock_data": 5
-  },
-  "minecraft:pink_stained_glass": {
-    "bedrock_id": 241,
-    "bedrock_data": 6
-  },
-  "minecraft:gray_stained_glass": {
-    "bedrock_id": 241,
-    "bedrock_data": 7
-  },
-  "minecraft:light_gray_stained_glass": {
-    "bedrock_id": 241,
-    "bedrock_data": 8
-  },
-  "minecraft:cyan_stained_glass": {
-    "bedrock_id": 241,
-    "bedrock_data": 9
-  },
-  "minecraft:purple_stained_glass": {
-    "bedrock_id": 241,
-    "bedrock_data": 10
-  },
-  "minecraft:blue_stained_glass": {
-    "bedrock_id": 241,
-    "bedrock_data": 11
-  },
-  "minecraft:brown_stained_glass": {
-    "bedrock_id": 241,
-    "bedrock_data": 12
-  },
-  "minecraft:green_stained_glass": {
-    "bedrock_id": 241,
-    "bedrock_data": 13
-  },
-  "minecraft:red_stained_glass": {
-    "bedrock_id": 241,
-    "bedrock_data": 14
-  },
-  "minecraft:black_stained_glass": {
-    "bedrock_id": 241,
-    "bedrock_data": 15
-  },
-  "minecraft:white_stained_glass_pane": {
-    "bedrock_id": 160,
-    "bedrock_data": 0
-  },
-  "minecraft:orange_stained_glass_pane": {
-    "bedrock_id": 160,
-    "bedrock_data": 1
-  },
-  "minecraft:magenta_stained_glass_pane": {
-    "bedrock_id": 160,
-    "bedrock_data": 2
-  },
-  "minecraft:light_blue_stained_glass_pane": {
-    "bedrock_id": 160,
-    "bedrock_data": 3
-  },
-  "minecraft:yellow_stained_glass_pane": {
-    "bedrock_id": 160,
-    "bedrock_data": 4
-  },
-  "minecraft:lime_stained_glass_pane": {
-    "bedrock_id": 160,
-    "bedrock_data": 5
-  },
-  "minecraft:pink_stained_glass_pane": {
-    "bedrock_id": 160,
-    "bedrock_data": 6
-  },
-  "minecraft:gray_stained_glass_pane": {
-    "bedrock_id": 160,
-    "bedrock_data": 7
-  },
-  "minecraft:light_gray_stained_glass_pane": {
-    "bedrock_id": 160,
-    "bedrock_data": 8
-  },
-  "minecraft:cyan_stained_glass_pane": {
-    "bedrock_id": 160,
-    "bedrock_data": 9
-  },
-  "minecraft:purple_stained_glass_pane": {
-    "bedrock_id": 160,
-    "bedrock_data": 10
-  },
-  "minecraft:blue_stained_glass_pane": {
-    "bedrock_id": 160,
-    "bedrock_data": 11
-  },
-  "minecraft:brown_stained_glass_pane": {
-    "bedrock_id": 160,
-    "bedrock_data": 12
-  },
-  "minecraft:green_stained_glass_pane": {
-    "bedrock_id": 160,
-    "bedrock_data": 13
-  },
-  "minecraft:red_stained_glass_pane": {
-    "bedrock_id": 160,
-    "bedrock_data": 14
-  },
-  "minecraft:black_stained_glass_pane": {
-    "bedrock_id": 160,
-    "bedrock_data": 15
-  },
-  "minecraft:prismarine": {
-    "bedrock_id": 168,
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_bricks": {
-    "bedrock_id": 168,
-    "bedrock_data": 2
-  },
-  "minecraft:dark_prismarine": {
-    "bedrock_id": 168,
-    "bedrock_data": 1
-  },
-  "minecraft:prismarine_stairs": {
-    "bedrock_id": -2,
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_brick_stairs": {
-    "bedrock_id": -4,
-    "bedrock_data": 0
-  },
-  "minecraft:dark_prismarine_stairs": {
-    "bedrock_id": -3,
-    "bedrock_data": 0
-  },
-  "minecraft:sea_lantern": {
-    "bedrock_id": 169,
-    "bedrock_data": 0
-  },
-  "minecraft:red_sandstone": {
-    "bedrock_id": 179,
-    "bedrock_data": 0
-  },
-  "minecraft:chiseled_red_sandstone": {
-    "bedrock_id": 179,
-    "bedrock_data": 1
-  },
-  "minecraft:cut_red_sandstone": {
-    "bedrock_id": 179,
-    "bedrock_data": 2
-  },
-  "minecraft:red_sandstone_stairs": {
-    "bedrock_id": 180,
-    "bedrock_data": 0
-  },
-  "minecraft:repeating_command_block": {
-    "bedrock_id": 188,
-    "bedrock_data": 0
-  },
-  "minecraft:chain_command_block": {
-    "bedrock_id": 189,
-    "bedrock_data": 0
-  },
-  "minecraft:magma_block": {
-    "bedrock_id": 213,
-    "bedrock_data": 0
-  },
-  "minecraft:nether_wart_block": {
-    "bedrock_id": 214,
-    "bedrock_data": 0
-  },
-  "minecraft:red_nether_bricks": {
-    "bedrock_id": 215,
-    "bedrock_data": 0
-  },
-  "minecraft:bone_block": {
-    "bedrock_id": 216,
-    "bedrock_data": 0
-  },
-  "minecraft:structure_void": {
-    "bedrock_id": 217,
-    "bedrock_data": 0
-  },
-  "minecraft:observer": {
-    "bedrock_id": 251,
-    "bedrock_data": 0
-  },
-  "minecraft:shulker_box": {
-    "bedrock_id": 205,
-    "bedrock_data": 0
-  },
-  "minecraft:white_shulker_box": {
-    "bedrock_id": 218,
-    "bedrock_data": 0
-  },
-  "minecraft:orange_shulker_box": {
-    "bedrock_id": 218,
-    "bedrock_data": 1
-  },
-  "minecraft:magenta_shulker_box": {
-    "bedrock_id": 218,
-    "bedrock_data": 2
-  },
-  "minecraft:light_blue_shulker_box": {
-    "bedrock_id": 218,
-    "bedrock_data": 3
-  },
-  "minecraft:yellow_shulker_box": {
-    "bedrock_id": 218,
-    "bedrock_data": 4
-  },
-  "minecraft:lime_shulker_box": {
-    "bedrock_id": 218,
-    "bedrock_data": 5
-  },
-  "minecraft:pink_shulker_box": {
-    "bedrock_id": 218,
-    "bedrock_data": 6
-  },
-  "minecraft:gray_shulker_box": {
-    "bedrock_id": 218,
-    "bedrock_data": 7
-  },
-  "minecraft:light_gray_shulker_box": {
-    "bedrock_id": 218,
-    "bedrock_data": 8
-  },
-  "minecraft:cyan_shulker_box": {
-    "bedrock_id": 218,
-    "bedrock_data": 9
-  },
-  "minecraft:purple_shulker_box": {
-    "bedrock_id": 218,
-    "bedrock_data": 10
-  },
-  "minecraft:blue_shulker_box": {
-    "bedrock_id": 218,
-    "bedrock_data": 11
-  },
-  "minecraft:brown_shulker_box": {
-    "bedrock_id": 218,
-    "bedrock_data": 12
-  },
-  "minecraft:green_shulker_box": {
-    "bedrock_id": 218,
-    "bedrock_data": 13
-  },
-  "minecraft:red_shulker_box": {
-    "bedrock_id": 218,
-    "bedrock_data": 14
-  },
-  "minecraft:black_shulker_box": {
-    "bedrock_id": 218,
-    "bedrock_data": 15
-  },
-  "minecraft:white_glazed_terracotta": {
-    "bedrock_id": 220,
-    "bedrock_data": 0
-  },
-  "minecraft:orange_glazed_terracotta": {
-    "bedrock_id": 221,
-    "bedrock_data": 0
-  },
-  "minecraft:magenta_glazed_terracotta": {
-    "bedrock_id": 222,
-    "bedrock_data": 0
-  },
-  "minecraft:light_blue_glazed_terracotta": {
-    "bedrock_id": 223,
-    "bedrock_data": 0
-  },
-  "minecraft:yellow_glazed_terracotta": {
-    "bedrock_id": 224,
-    "bedrock_data": 0
-  },
-  "minecraft:lime_glazed_terracotta": {
-    "bedrock_id": 225,
-    "bedrock_data": 0
-  },
-  "minecraft:pink_glazed_terracotta": {
-    "bedrock_id": 226,
-    "bedrock_data": 0
-  },
-  "minecraft:gray_glazed_terracotta": {
-    "bedrock_id": 227,
-    "bedrock_data": 0
-  },
-  "minecraft:light_gray_glazed_terracotta": {
-    "bedrock_id": 228,
-    "bedrock_data": 0
-  },
-  "minecraft:cyan_glazed_terracotta": {
-    "bedrock_id": 229,
-    "bedrock_data": 0
-  },
-  "minecraft:purple_glazed_terracotta": {
-    "bedrock_id": 219,
-    "bedrock_data": 0
-  },
-  "minecraft:blue_glazed_terracotta": {
-    "bedrock_id": 231,
-    "bedrock_data": 0
-  },
-  "minecraft:brown_glazed_terracotta": {
-    "bedrock_id": 232,
-    "bedrock_data": 0
-  },
-  "minecraft:green_glazed_terracotta": {
-    "bedrock_id": 233,
-    "bedrock_data": 0
-  },
-  "minecraft:red_glazed_terracotta": {
-    "bedrock_id": 234,
-    "bedrock_data": 0
-  },
-  "minecraft:black_glazed_terracotta": {
-    "bedrock_id": 235,
-    "bedrock_data": 0
-  },
-  "minecraft:white_concrete": {
-    "bedrock_id": 236,
-    "bedrock_data": 0
-  },
-  "minecraft:orange_concrete": {
-    "bedrock_id": 236,
-    "bedrock_data": 1
-  },
-  "minecraft:magenta_concrete": {
-    "bedrock_id": 236,
-    "bedrock_data": 2
-  },
-  "minecraft:light_blue_concrete": {
-    "bedrock_id": 236,
-    "bedrock_data": 3
-  },
-  "minecraft:yellow_concrete": {
-    "bedrock_id": 236,
-    "bedrock_data": 4
-  },
-  "minecraft:lime_concrete": {
-    "bedrock_id": 236,
-    "bedrock_data": 5
-  },
-  "minecraft:pink_concrete": {
-    "bedrock_id": 236,
-    "bedrock_data": 6
-  },
-  "minecraft:gray_concrete": {
-    "bedrock_id": 236,
-    "bedrock_data": 7
-  },
-  "minecraft:light_gray_concrete": {
-    "bedrock_id": 236,
-    "bedrock_data": 8
-  },
-  "minecraft:cyan_concrete": {
-    "bedrock_id": 236,
-    "bedrock_data": 9
-  },
-  "minecraft:purple_concrete": {
-    "bedrock_id": 236,
-    "bedrock_data": 10
-  },
-  "minecraft:blue_concrete": {
-    "bedrock_id": 236,
-    "bedrock_data": 11
-  },
-  "minecraft:brown_concrete": {
-    "bedrock_id": 236,
-    "bedrock_data": 12
-  },
-  "minecraft:green_concrete": {
-    "bedrock_id": 236,
-    "bedrock_data": 13
-  },
-  "minecraft:red_concrete": {
-    "bedrock_id": 236,
-    "bedrock_data": 14
-  },
-  "minecraft:black_concrete": {
-    "bedrock_id": 236,
-    "bedrock_data": 15
-  },
-  "minecraft:white_concrete_powder": {
-    "bedrock_id": 237,
-    "bedrock_data": 0
-  },
-  "minecraft:orange_concrete_powder": {
-    "bedrock_id": 237,
-    "bedrock_data": 1
-  },
-  "minecraft:magenta_concrete_powder": {
-    "bedrock_id": 237,
-    "bedrock_data": 2
-  },
-  "minecraft:light_blue_concrete_powder": {
-    "bedrock_id": 237,
-    "bedrock_data": 3
-  },
-  "minecraft:yellow_concrete_powder": {
-    "bedrock_id": 237,
-    "bedrock_data": 4
-  },
-  "minecraft:lime_concrete_powder": {
-    "bedrock_id": 237,
-    "bedrock_data": 5
-  },
-  "minecraft:pink_concrete_powder": {
-    "bedrock_id": 237,
-    "bedrock_data": 6
-  },
-  "minecraft:gray_concrete_powder": {
-    "bedrock_id": 237,
-    "bedrock_data": 7
-  },
-  "minecraft:light_gray_concrete_powder": {
-    "bedrock_id": 237,
-    "bedrock_data": 8
-  },
-  "minecraft:cyan_concrete_powder": {
-    "bedrock_id": 237,
-    "bedrock_data": 9
-  },
-  "minecraft:purple_concrete_powder": {
-    "bedrock_id": 237,
-    "bedrock_data": 10
-  },
-  "minecraft:blue_concrete_powder": {
-    "bedrock_id": 237,
-    "bedrock_data": 11
-  },
-  "minecraft:brown_concrete_powder": {
-    "bedrock_id": 237,
-    "bedrock_data": 12
-  },
-  "minecraft:green_concrete_powder": {
-    "bedrock_id": 237,
-    "bedrock_data": 13
-  },
-  "minecraft:red_concrete_powder": {
-    "bedrock_id": 237,
-    "bedrock_data": 14
-  },
-  "minecraft:black_concrete_powder": {
-    "bedrock_id": 237,
-    "bedrock_data": 15
-  },
-  "minecraft:turtle_egg": {
-    "bedrock_id": -159,
-    "bedrock_data": 0
-  },
-  "minecraft:dead_tube_coral_block": {
-    "bedrock_id": -132,
-    "bedrock_data": 8
-  },
-  "minecraft:dead_brain_coral_block": {
-    "bedrock_id": -132,
-    "bedrock_data": 9
-  },
-  "minecraft:dead_bubble_coral_block": {
-    "bedrock_id": -132,
-    "bedrock_data": 10
-  },
-  "minecraft:dead_fire_coral_block": {
-    "bedrock_id": -132,
-    "bedrock_data": 11
-  },
-  "minecraft:dead_horn_coral_block": {
-    "bedrock_id": -132,
-    "bedrock_data": 12
-  },
-  "minecraft:tube_coral_block": {
-    "bedrock_id": -132,
-    "bedrock_data": 0
-  },
-  "minecraft:brain_coral_block": {
-    "bedrock_id": -132,
-    "bedrock_data": 1
-  },
-  "minecraft:bubble_coral_block": {
-    "bedrock_id": -132,
-    "bedrock_data": 2
-  },
-  "minecraft:fire_coral_block": {
-    "bedrock_id": -132,
-    "bedrock_data": 3
-  },
-  "minecraft:horn_coral_block": {
-    "bedrock_id": -132,
-    "bedrock_data": 4
-  },
-  "minecraft:tube_coral": {
-    "bedrock_id": -131,
-    "bedrock_data": 0
-  },
-  "minecraft:brain_coral": {
-    "bedrock_id": -131,
-    "bedrock_data": 1
-  },
-  "minecraft:bubble_coral": {
-    "bedrock_id": -131,
-    "bedrock_data": 2
-  },
-  "minecraft:fire_coral": {
-    "bedrock_id": -131,
-    "bedrock_data": 3
-  },
-  "minecraft:horn_coral": {
-    "bedrock_id": -131,
-    "bedrock_data": 4
-  },
-  "minecraft:dead_brain_coral": {
-    "bedrock_id": -131,
-    "bedrock_data": 9
-  },
-  "minecraft:dead_bubble_coral": {
-    "bedrock_id": -131,
-    "bedrock_data": 10
-  },
-  "minecraft:dead_fire_coral": {
-    "bedrock_id": -131,
-    "bedrock_data": 11
-  },
-  "minecraft:dead_horn_coral": {
-    "bedrock_id": -131,
-    "bedrock_data": 12
-  },
-  "minecraft:dead_tube_coral": {
-    "bedrock_id": -131,
-    "bedrock_data": 8
-  },
-  "minecraft:tube_coral_fan": {
-    "bedrock_id": -133,
-    "bedrock_data": 0
-  },
-  "minecraft:brain_coral_fan": {
-    "bedrock_id": -133,
-    "bedrock_data": 1
-  },
-  "minecraft:bubble_coral_fan": {
-    "bedrock_id": -133,
-    "bedrock_data": 2
-  },
-  "minecraft:fire_coral_fan": {
-    "bedrock_id": -133,
-    "bedrock_data": 3
-  },
-  "minecraft:horn_coral_fan": {
-    "bedrock_id": -133,
-    "bedrock_data": 4
-  },
-  "minecraft:dead_tube_coral_fan": {
-    "bedrock_id": -134,
-    "bedrock_data": 0
-  },
-  "minecraft:dead_brain_coral_fan": {
-    "bedrock_id": -134,
-    "bedrock_data": 1
-  },
-  "minecraft:dead_bubble_coral_fan": {
-    "bedrock_id": -134,
-    "bedrock_data": 2
-  },
-  "minecraft:dead_fire_coral_fan": {
-    "bedrock_id": -134,
-    "bedrock_data": 3
-  },
-  "minecraft:dead_horn_coral_fan": {
-    "bedrock_id": -134,
-    "bedrock_data": 4
-  },
-  "minecraft:blue_ice": {
-    "bedrock_id": -11,
-    "bedrock_data": 0
-  },
-  "minecraft:conduit": {
-    "bedrock_id": -157,
-    "bedrock_data": 0
-  },
-  "minecraft:polished_granite_stairs": {
-    "bedrock_id": -172,
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_red_sandstone_stairs": {
-    "bedrock_id": -176,
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_stone_brick_stairs": {
-    "bedrock_id": -175,
-    "bedrock_data": 0
-  },
-  "minecraft:polished_diorite_stairs": {
-    "bedrock_id": -173,
-    "bedrock_data": 0
-  },
-  "minecraft:mossy_cobblestone_stairs": {
-    "bedrock_id": -179,
-    "bedrock_data": 0
-  },
-  "minecraft:end_stone_brick_stairs": {
-    "bedrock_id": -178,
-    "bedrock_data": 0
-  },
-  "minecraft:stone_stairs": {
-    "bedrock_id": -180,
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_sandstone_stairs": {
-    "bedrock_id": -177,
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_quartz_stairs": {
-    "bedrock_id": -185,
-    "bedrock_data": 0
-  },
-  "minecraft:granite_stairs": {
-    "bedrock_id": -169,
-    "bedrock_data": 0
-  },
-  "minecraft:andesite_stairs": {
-    "bedrock_id": -171,
-    "bedrock_data": 0
-  },
-  "minecraft:red_nether_brick_stairs": {
-    "bedrock_id": -184,
-    "bedrock_data": 0
-  },
-  "minecraft:polished_andesite_stairs": {
-    "bedrock_id": -174,
-    "bedrock_data": 0
-  },
-  "minecraft:diorite_stairs": {
-    "bedrock_id": -170,
-    "bedrock_data": 0
-  },
-  "minecraft:polished_granite_slab": {
-    "bedrock_id": -162,
-    "bedrock_data": 7
-  },
-  "minecraft:smooth_red_sandstone_slab": {
-    "bedrock_id": -162,
-    "bedrock_data": 1
-  },
-  "minecraft:mossy_stone_brick_slab": {
-    "bedrock_id": -166,
-    "bedrock_data": 0
-  },
-  "minecraft:polished_diorite_slab": {
-    "bedrock_id": -162,
-    "bedrock_data": 5
-  },
-  "minecraft:mossy_cobblestone_slab": {
-    "bedrock_id": 182,
-    "bedrock_data": 5
-  },
-  "minecraft:end_stone_brick_slab": {
-    "bedrock_id": -162,
-    "bedrock_data": 0
-  },
-  "minecraft:smooth_sandstone_slab": {
-    "bedrock_id": 182,
-    "bedrock_data": 6
-  },
-  "minecraft:smooth_quartz_slab": {
-    "bedrock_id": -166,
-    "bedrock_data": 1
-  },
-  "minecraft:granite_slab": {
-    "bedrock_id": -162,
-    "bedrock_data": 6
-  },
-  "minecraft:andesite_slab": {
-    "bedrock_id": -162,
-    "bedrock_data": 3
-  },
-  "minecraft:red_nether_brick_slab": {
-    "bedrock_id": 182,
-    "bedrock_data": 7
-  },
-  "minecraft:polished_andesite_slab": {
-    "bedrock_id": -162,
-    "bedrock_data": 2
-  },
-  "minecraft:diorite_slab": {
-    "bedrock_id": -162,
-    "bedrock_data": 4
-  },
-  "minecraft:scaffolding": {
-    "bedrock_id": -165,
-    "bedrock_data": 0
-  },
-  "minecraft:iron_door": {
-    "bedrock_id": 330,
-    "bedrock_data": 0
-  },
-  "minecraft:oak_door": {
-    "bedrock_id": 324,
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_door": {
-    "bedrock_id": 427,
-    "bedrock_data": 0
-  },
-  "minecraft:birch_door": {
-    "bedrock_id": 428,
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_door": {
-    "bedrock_id": 429,
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_door": {
-    "bedrock_id": 430,
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_door": {
-    "bedrock_id": 431,
-    "bedrock_data": 0
-  },
-  "minecraft:repeater": {
-    "bedrock_id": 356,
-    "bedrock_data": 0
-  },
-  "minecraft:comparator": {
-    "bedrock_id": 404,
-    "bedrock_data": 0
-  },
-  "minecraft:structure_block": {
-    "bedrock_id": 252,
-    "bedrock_data": 0
-  },
-  "minecraft:jigsaw": {
-    "bedrock_id": -211,
-    "bedrock_data": 0
-  },
-  "minecraft:composter": {
-    "bedrock_id": -213,
-    "bedrock_data": 0
-  },
-  "minecraft:turtle_helmet": {
-    "bedrock_id": 469,
-    "bedrock_data": 0
-  },
-  "minecraft:scute": {
-    "bedrock_id": 468,
-    "bedrock_data": 0
-  },
-  "minecraft:iron_shovel": {
-    "bedrock_id": 256,
-    "bedrock_data": 0
-  },
-  "minecraft:iron_pickaxe": {
-    "bedrock_id": 257,
-    "bedrock_data": 0
-  },
-  "minecraft:iron_axe": {
-    "bedrock_id": 258,
-    "bedrock_data": 0
-  },
-  "minecraft:flint_and_steel": {
-    "bedrock_id": 259,
-    "bedrock_data": 0
-  },
-  "minecraft:apple": {
-    "bedrock_id": 260,
-    "bedrock_data": 0
-  },
-  "minecraft:bow": {
-    "bedrock_id": 261,
-    "bedrock_data": 0
-  },
-  "minecraft:arrow": {
-    "bedrock_id": 262,
-    "bedrock_data": 0
-  },
-  "minecraft:coal": {
-    "bedrock_id": 263,
-    "bedrock_data": 0
-  },
-  "minecraft:charcoal": {
-    "bedrock_id": 263,
-    "bedrock_data": 1
-  },
-  "minecraft:diamond": {
-    "bedrock_id": 264,
-    "bedrock_data": 0
-  },
-  "minecraft:iron_ingot": {
-    "bedrock_id": 265,
-    "bedrock_data": 0
-  },
-  "minecraft:gold_ingot": {
-    "bedrock_id": 266,
-    "bedrock_data": 0
-  },
-  "minecraft:iron_sword": {
-    "bedrock_id": 267,
-    "bedrock_data": 0
-  },
-  "minecraft:wooden_sword": {
-    "bedrock_id": 268,
-    "bedrock_data": 0
-  },
-  "minecraft:wooden_shovel": {
-    "bedrock_id": 269,
-    "bedrock_data": 0
-  },
-  "minecraft:wooden_pickaxe": {
-    "bedrock_id": 270,
-    "bedrock_data": 0
-  },
-  "minecraft:wooden_axe": {
-    "bedrock_id": 271,
-    "bedrock_data": 0
-  },
-  "minecraft:stone_sword": {
-    "bedrock_id": 272,
-    "bedrock_data": 0
-  },
-  "minecraft:stone_shovel": {
-    "bedrock_id": 273,
-    "bedrock_data": 0
-  },
-  "minecraft:stone_pickaxe": {
-    "bedrock_id": 274,
-    "bedrock_data": 0
-  },
-  "minecraft:stone_axe": {
-    "bedrock_id": 275,
-    "bedrock_data": 0
-  },
-  "minecraft:diamond_sword": {
-    "bedrock_id": 276,
-    "bedrock_data": 0
-  },
-  "minecraft:diamond_shovel": {
-    "bedrock_id": 277,
-    "bedrock_data": 0
-  },
-  "minecraft:diamond_pickaxe": {
-    "bedrock_id": 278,
-    "bedrock_data": 0
-  },
-  "minecraft:diamond_axe": {
-    "bedrock_id": 279,
-    "bedrock_data": 0
-  },
-  "minecraft:stick": {
-    "bedrock_id": 280,
-    "bedrock_data": 0
-  },
-  "minecraft:bowl": {
-    "bedrock_id": 281,
-    "bedrock_data": 0
-  },
-  "minecraft:mushroom_stew": {
-    "bedrock_id": 282,
-    "bedrock_data": 0
-  },
-  "minecraft:golden_sword": {
-    "bedrock_id": 283,
-    "bedrock_data": 0
-  },
-  "minecraft:golden_shovel": {
-    "bedrock_id": 284,
-    "bedrock_data": 0
-  },
-  "minecraft:golden_pickaxe": {
-    "bedrock_id": 285,
-    "bedrock_data": 0
-  },
-  "minecraft:golden_axe": {
-    "bedrock_id": 286,
-    "bedrock_data": 0
-  },
-  "minecraft:string": {
-    "bedrock_id": 287,
-    "bedrock_data": 0
-  },
-  "minecraft:feather": {
-    "bedrock_id": 288,
-    "bedrock_data": 0
-  },
-  "minecraft:gunpowder": {
-    "bedrock_id": 289,
-    "bedrock_data": 0
-  },
-  "minecraft:wooden_hoe": {
-    "bedrock_id": 290,
-    "bedrock_data": 0
-  },
-  "minecraft:stone_hoe": {
-    "bedrock_id": 291,
-    "bedrock_data": 0
-  },
-  "minecraft:iron_hoe": {
-    "bedrock_id": 292,
-    "bedrock_data": 0
-  },
-  "minecraft:diamond_hoe": {
-    "bedrock_id": 293,
-    "bedrock_data": 0
-  },
-  "minecraft:golden_hoe": {
-    "bedrock_id": 294,
-    "bedrock_data": 0
-  },
-  "minecraft:wheat_seeds": {
-    "bedrock_id": 295,
-    "bedrock_data": 0
-  },
-  "minecraft:wheat": {
-    "bedrock_id": 296,
-    "bedrock_data": 0
-  },
-  "minecraft:bread": {
-    "bedrock_id": 297,
-    "bedrock_data": 0
-  },
-  "minecraft:leather_helmet": {
-    "bedrock_id": 298,
-    "bedrock_data": 0
-  },
-  "minecraft:leather_chestplate": {
-    "bedrock_id": 299,
-    "bedrock_data": 0
-  },
-  "minecraft:leather_leggings": {
-    "bedrock_id": 300,
-    "bedrock_data": 0
-  },
-  "minecraft:leather_boots": {
-    "bedrock_id": 301,
-    "bedrock_data": 0
-  },
-  "minecraft:chainmail_helmet": {
-    "bedrock_id": 302,
-    "bedrock_data": 0
-  },
-  "minecraft:chainmail_chestplate": {
-    "bedrock_id": 303,
-    "bedrock_data": 0
-  },
-  "minecraft:chainmail_leggings": {
-    "bedrock_id": 304,
-    "bedrock_data": 0
-  },
-  "minecraft:chainmail_boots": {
-    "bedrock_id": 305,
-    "bedrock_data": 0
-  },
-  "minecraft:iron_helmet": {
-    "bedrock_id": 306,
-    "bedrock_data": 0
-  },
-  "minecraft:iron_chestplate": {
-    "bedrock_id": 307,
-    "bedrock_data": 0
-  },
-  "minecraft:iron_leggings": {
-    "bedrock_id": 308,
-    "bedrock_data": 0
-  },
-  "minecraft:iron_boots": {
-    "bedrock_id": 309,
-    "bedrock_data": 0
-  },
-  "minecraft:diamond_helmet": {
-    "bedrock_id": 310,
-    "bedrock_data": 0
-  },
-  "minecraft:diamond_chestplate": {
-    "bedrock_id": 311,
-    "bedrock_data": 0
-  },
-  "minecraft:diamond_leggings": {
-    "bedrock_id": 312,
-    "bedrock_data": 0
-  },
-  "minecraft:diamond_boots": {
-    "bedrock_id": 313,
-    "bedrock_data": 0
-  },
-  "minecraft:golden_helmet": {
-    "bedrock_id": 314,
-    "bedrock_data": 0
-  },
-  "minecraft:golden_chestplate": {
-    "bedrock_id": 315,
-    "bedrock_data": 0
-  },
-  "minecraft:golden_leggings": {
-    "bedrock_id": 316,
-    "bedrock_data": 0
-  },
-  "minecraft:golden_boots": {
-    "bedrock_id": 317,
-    "bedrock_data": 0
-  },
-  "minecraft:flint": {
-    "bedrock_id": 318,
-    "bedrock_data": 0
-  },
-  "minecraft:porkchop": {
-    "bedrock_id": 319,
-    "bedrock_data": 0
-  },
-  "minecraft:cooked_porkchop": {
-    "bedrock_id": 320,
-    "bedrock_data": 0
-  },
-  "minecraft:painting": {
-    "bedrock_id": 321,
-    "bedrock_data": 0
-  },
-  "minecraft:golden_apple": {
-    "bedrock_id": 322,
-    "bedrock_data": 0
-  },
-  "minecraft:enchanted_golden_apple": {
-    "bedrock_id": 466,
-    "bedrock_data": 0
-  },
-  "minecraft:oak_sign": {
-    "bedrock_id": 323,
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_sign": {
-    "bedrock_id": 472,
-    "bedrock_data": 0
-  },
-  "minecraft:birch_sign": {
-    "bedrock_id": 473,
-    "bedrock_data": 0
-  },
-  "minecraft:jungle_sign": {
-    "bedrock_id": 474,
-    "bedrock_data": 0
-  },
-  "minecraft:acacia_sign": {
-    "bedrock_id": 475,
-    "bedrock_data": 0
-  },
-  "minecraft:dark_oak_sign": {
-    "bedrock_id": 476,
-    "bedrock_data": 0
-  },
-  "minecraft:bucket": {
-    "bedrock_id": 325,
-    "bedrock_data": 0
-  },
-  "minecraft:water_bucket": {
-    "bedrock_id": 325,
-    "bedrock_data": 8
-  },
-  "minecraft:lava_bucket": {
-    "bedrock_id": 325,
-    "bedrock_data": 10
-  },
-  "minecraft:minecart": {
-    "bedrock_id": 328,
-    "bedrock_data": 0
-  },
-  "minecraft:saddle": {
-    "bedrock_id": 329,
-    "bedrock_data": 0
-  },
-  "minecraft:redstone": {
-    "bedrock_id": 331,
-    "bedrock_data": 0
-  },
-  "minecraft:snowball": {
-    "bedrock_id": 332,
-    "bedrock_data": 0
-  },
-  "minecraft:oak_boat": {
-    "bedrock_id": 333,
-    "bedrock_data": 0
-  },
-  "minecraft:leather": {
-    "bedrock_id": 334,
-    "bedrock_data": 0
-  },
-  "minecraft:milk_bucket": {
-    "bedrock_id": 325,
-    "bedrock_data": 1
-  },
-  "minecraft:pufferfish_bucket": {
-    "bedrock_id": 325,
-    "bedrock_data": 5
-  },
-  "minecraft:salmon_bucket": {
-    "bedrock_id": 325,
-    "bedrock_data": 3
-  },
-  "minecraft:cod_bucket": {
-    "bedrock_id": 325,
-    "bedrock_data": 2
-  },
-  "minecraft:tropical_fish_bucket": {
-    "bedrock_id": 325,
-    "bedrock_data": 4
-  },
-  "minecraft:brick": {
-    "bedrock_id": 336,
-    "bedrock_data": 0
-  },
-  "minecraft:clay_ball": {
-    "bedrock_id": 337,
-    "bedrock_data": 0
-  },
-  "minecraft:sugar_cane": {
-    "bedrock_id": 338,
-    "bedrock_data": 0
-  },
-  "minecraft:kelp": {
-    "bedrock_id": 335,
-    "bedrock_data": 0
-  },
-  "minecraft:dried_kelp_block": {
-    "bedrock_id": -139,
-    "bedrock_data": 0
-  },
-  "minecraft:bamboo": {
-    "bedrock_id": -163,
-    "bedrock_data": 0
-  },
-  "minecraft:paper": {
-    "bedrock_id": 339,
-    "bedrock_data": 0
-  },
-  "minecraft:book": {
-    "bedrock_id": 340,
-    "bedrock_data": 0
-  },
-  "minecraft:slime_ball": {
-    "bedrock_id": 341,
-    "bedrock_data": 0
-  },
-  "minecraft:chest_minecart": {
-    "bedrock_id": 342,
-    "bedrock_data": 0
-  },
-  "minecraft:furnace_minecart": {
-    "bedrock_id": 408,
-    "bedrock_data": 0
-  },
-  "minecraft:egg": {
-    "bedrock_id": 344,
-    "bedrock_data": 0
-  },
-  "minecraft:compass": {
-    "bedrock_id": 345,
-    "bedrock_data": 0
-  },
-  "minecraft:fishing_rod": {
-    "bedrock_id": 346,
-    "bedrock_data": 0
-  },
-  "minecraft:clock": {
-    "bedrock_id": 347,
-    "bedrock_data": 0
-  },
-  "minecraft:glowstone_dust": {
-    "bedrock_id": 348,
-    "bedrock_data": 0
-  },
-  "minecraft:cod": {
-    "bedrock_id": 349,
-    "bedrock_data": 0
-  },
-  "minecraft:salmon": {
-    "bedrock_id": 460,
-    "bedrock_data": 0
-  },
-  "minecraft:tropical_fish": {
-    "bedrock_id": 461,
-    "bedrock_data": 0
-  },
-  "minecraft:pufferfish": {
-    "bedrock_id": 462,
-    "bedrock_data": 0
-  },
-  "minecraft:cooked_cod": {
-    "bedrock_id": 350,
-    "bedrock_data": 0
-  },
-  "minecraft:cooked_salmon": {
-    "bedrock_id": 463,
-    "bedrock_data": 0
-  },
-  "minecraft:ink_sac": {
-    "bedrock_id": 351,
-    "bedrock_data": 0
-  },
-  "minecraft:red_dye": {
-    "bedrock_id": 351,
-    "bedrock_data": 1
-  },
-  "minecraft:green_dye": {
-    "bedrock_id": 351,
-    "bedrock_data": 2
-  },
-  "minecraft:cocoa_beans": {
-    "bedrock_id": 351,
-    "bedrock_data": 3
-  },
-  "minecraft:lapis_lazuli": {
-    "bedrock_id": 351,
-    "bedrock_data": 4
-  },
-  "minecraft:purple_dye": {
-    "bedrock_id": 351,
-    "bedrock_data": 5
-  },
-  "minecraft:cyan_dye": {
-    "bedrock_id": 351,
-    "bedrock_data": 6
-  },
-  "minecraft:light_gray_dye": {
-    "bedrock_id": 351,
-    "bedrock_data": 7
-  },
-  "minecraft:gray_dye": {
-    "bedrock_id": 351,
-    "bedrock_data": 8
-  },
-  "minecraft:pink_dye": {
-    "bedrock_id": 351,
-    "bedrock_data": 9
-  },
-  "minecraft:lime_dye": {
-    "bedrock_id": 351,
-    "bedrock_data": 10
-  },
-  "minecraft:yellow_dye": {
-    "bedrock_id": 351,
-    "bedrock_data": 11
-  },
-  "minecraft:light_blue_dye": {
-    "bedrock_id": 351,
-    "bedrock_data": 12
-  },
-  "minecraft:magenta_dye": {
-    "bedrock_id": 351,
-    "bedrock_data": 13
-  },
-  "minecraft:orange_dye": {
-    "bedrock_id": 351,
-    "bedrock_data": 14
-  },
-  "minecraft:bone_meal": {
-    "bedrock_id": 351,
-    "bedrock_data": 15
-  },
-  "minecraft:blue_dye": {
-    "bedrock_id": 351,
-    "bedrock_data": 18
-  },
-  "minecraft:brown_dye": {
-    "bedrock_id": 351,
-    "bedrock_data": 17
-  },
-  "minecraft:black_dye": {
-    "bedrock_id": 351,
-    "bedrock_data": 16
-  },
-  "minecraft:white_dye": {
-    "bedrock_id": 351,
-    "bedrock_data": 19
-  },
-  "minecraft:bone": {
-    "bedrock_id": 352,
-    "bedrock_data": 0
-  },
-  "minecraft:sugar": {
-    "bedrock_id": 353,
-    "bedrock_data": 0
-  },
-  "minecraft:cake": {
-    "bedrock_id": 354,
-    "bedrock_data": 0
-  },
-  "minecraft:white_bed": {
-    "bedrock_id": 355,
-    "bedrock_data": 0
-  },
-  "minecraft:orange_bed": {
-    "bedrock_id": 355,
-    "bedrock_data": 1
-  },
-  "minecraft:magenta_bed": {
-    "bedrock_id": 355,
-    "bedrock_data": 2
-  },
-  "minecraft:light_blue_bed": {
-    "bedrock_id": 355,
-    "bedrock_data": 3
-  },
-  "minecraft:yellow_bed": {
-    "bedrock_id": 355,
-    "bedrock_data": 4
-  },
-  "minecraft:lime_bed": {
-    "bedrock_id": 355,
-    "bedrock_data": 5
-  },
-  "minecraft:pink_bed": {
-    "bedrock_id": 355,
-    "bedrock_data": 6
-  },
-  "minecraft:gray_bed": {
-    "bedrock_id": 355,
-    "bedrock_data": 7
-  },
-  "minecraft:light_gray_bed": {
-    "bedrock_id": 355,
-    "bedrock_data": 8
-  },
-  "minecraft:cyan_bed": {
-    "bedrock_id": 355,
-    "bedrock_data": 9
-  },
-  "minecraft:purple_bed": {
-    "bedrock_id": 355,
-    "bedrock_data": 10
-  },
-  "minecraft:blue_bed": {
-    "bedrock_id": 355,
-    "bedrock_data": 11
-  },
-  "minecraft:brown_bed": {
-    "bedrock_id": 355,
-    "bedrock_data": 12
-  },
-  "minecraft:green_bed": {
-    "bedrock_id": 355,
-    "bedrock_data": 13
-  },
-  "minecraft:red_bed": {
-    "bedrock_id": 355,
-    "bedrock_data": 14
-  },
-  "minecraft:black_bed": {
-    "bedrock_id": 355,
-    "bedrock_data": 15
-  },
-  "minecraft:cookie": {
-    "bedrock_id": 357,
-    "bedrock_data": 0
-  },
-  "minecraft:filled_map": {
-    "bedrock_id": 358,
-    "bedrock_data": 0
-  },
-  "minecraft:shears": {
-    "bedrock_id": 359,
-    "bedrock_data": 0
-  },
-  "minecraft:melon_slice": {
-    "bedrock_id": 360,
-    "bedrock_data": 0
-  },
-  "minecraft:dried_kelp": {
-    "bedrock_id": 464,
-    "bedrock_data": 0
-  },
-  "minecraft:pumpkin_seeds": {
-    "bedrock_id": 361,
-    "bedrock_data": 0
-  },
-  "minecraft:melon_seeds": {
-    "bedrock_id": 362,
-    "bedrock_data": 0
-  },
-  "minecraft:beef": {
-    "bedrock_id": 363,
-    "bedrock_data": 0
-  },
-  "minecraft:cooked_beef": {
-    "bedrock_id": 364,
-    "bedrock_data": 0
-  },
-  "minecraft:chicken": {
-    "bedrock_id": 365,
-    "bedrock_data": 0
-  },
-  "minecraft:cooked_chicken": {
-    "bedrock_id": 366,
-    "bedrock_data": 0
-  },
-  "minecraft:rotten_flesh": {
-    "bedrock_id": 367,
-    "bedrock_data": 0
-  },
-  "minecraft:ender_pearl": {
-    "bedrock_id": 368,
-    "bedrock_data": 0
-  },
-  "minecraft:blaze_rod": {
-    "bedrock_id": 369,
-    "bedrock_data": 0
-  },
-  "minecraft:ghast_tear": {
-    "bedrock_id": 370,
-    "bedrock_data": 0
-  },
-  "minecraft:gold_nugget": {
-    "bedrock_id": 371,
-    "bedrock_data": 0
-  },
-  "minecraft:nether_wart": {
-    "bedrock_id": 372,
-    "bedrock_data": 0
-  },
-  "minecraft:potion": {
-    "bedrock_id": 373,
-    "bedrock_data": 0
-  },
-  "minecraft:glass_bottle": {
-    "bedrock_id": 374,
-    "bedrock_data": 0
-  },
-  "minecraft:spider_eye": {
-    "bedrock_id": 375,
-    "bedrock_data": 0
-  },
-  "minecraft:fermented_spider_eye": {
-    "bedrock_id": 376,
-    "bedrock_data": 0
-  },
-  "minecraft:blaze_powder": {
-    "bedrock_id": 377,
-    "bedrock_data": 0
-  },
-  "minecraft:magma_cream": {
-    "bedrock_id": 378,
-    "bedrock_data": 0
-  },
-  "minecraft:brewing_stand": {
-    "bedrock_id": 379,
-    "bedrock_data": 0
-  },
-  "minecraft:cauldron": {
-    "bedrock_id": 380,
-    "bedrock_data": 0
-  },
-  "minecraft:ender_eye": {
-    "bedrock_id": 381,
-    "bedrock_data": 0
-  },
-  "minecraft:glistering_melon_slice": {
-    "bedrock_id": 382,
-    "bedrock_data": 0
-  },
-  "minecraft:bat_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 19
-  },
-  "minecraft:blaze_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 43
-  },
-  "minecraft:cat_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 75
-  },
-  "minecraft:cave_spider_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 40
-  },
-  "minecraft:chicken_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 10
-  },
-  "minecraft:cod_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 112
-  },
-  "minecraft:cow_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 11
-  },
-  "minecraft:creeper_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 33
-  },
-  "minecraft:dolphin_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 31
-  },
-  "minecraft:donkey_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 24
-  },
-  "minecraft:drowned_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 110
-  },
-  "minecraft:elder_guardian_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 50
-  },
-  "minecraft:enderman_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 38
-  },
-  "minecraft:endermite_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 55
-  },
-  "minecraft:evoker_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 104
-  },
-  "minecraft:fox_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 121
-  },
-  "minecraft:ghast_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 41
-  },
-  "minecraft:guardian_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 49
-  },
-  "minecraft:horse_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 23
-  },
-  "minecraft:husk_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 47
-  },
-  "minecraft:llama_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 29
-  },
-  "minecraft:magma_cube_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 42
-  },
-  "minecraft:mooshroom_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 16
-  },
-  "minecraft:mule_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 25
-  },
-  "minecraft:ocelot_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 22
-  },
-  "minecraft:panda_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 113
-  },
-  "minecraft:parrot_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 30
-  },
-  "minecraft:phantom_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 58
-  },
-  "minecraft:pig_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 12
-  },
-  "minecraft:pillager_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 114
-  },
-  "minecraft:polar_bear_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 28
-  },
-  "minecraft:pufferfish_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 108
-  },
-  "minecraft:rabbit_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 18
-  },
-  "minecraft:ravager_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 59
-  },
-  "minecraft:salmon_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 109
-  },
-  "minecraft:sheep_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 13
-  },
-  "minecraft:shulker_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 54
-  },
-  "minecraft:silverfish_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 39
-  },
-  "minecraft:skeleton_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 34
-  },
-  "minecraft:skeleton_horse_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 26
-  },
-  "minecraft:slime_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 37
-  },
-  "minecraft:spider_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 35
-  },
-  "minecraft:squid_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 17
-  },
-  "minecraft:stray_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 46
-  },
-  "minecraft:trader_llama_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 29
-  },
-  "minecraft:tropical_fish_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 111
-  },
-  "minecraft:turtle_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 74
-  },
-  "minecraft:vex_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 105
-  },
-  "minecraft:villager_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 15
-  },
-  "minecraft:vindicator_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 57
-  },
-  "minecraft:wandering_trader_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 118
-  },
-  "minecraft:witch_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 45
-  },
-  "minecraft:wither_skeleton_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 48
-  },
-  "minecraft:wolf_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 14
-  },
-  "minecraft:zombie_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 32
-  },
-  "minecraft:zombie_horse_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 27
-  },
-  "minecraft:zombie_pigman_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 36
-  },
-  "minecraft:zombie_villager_spawn_egg": {
-    "bedrock_id": 383,
-    "bedrock_data": 44
-  },
-  "minecraft:experience_bottle": {
-    "bedrock_id": 384,
-    "bedrock_data": 0
-  },
-  "minecraft:fire_charge": {
-    "bedrock_id": 385,
-    "bedrock_data": 0
-  },
-  "minecraft:writable_book": {
-    "bedrock_id": 386,
-    "bedrock_data": 0
-  },
-  "minecraft:written_book": {
-    "bedrock_id": 387,
-    "bedrock_data": 0
-  },
-  "minecraft:emerald": {
-    "bedrock_id": 388,
-    "bedrock_data": 0
-  },
-  "minecraft:item_frame": {
-    "bedrock_id": 389,
-    "bedrock_data": 0
-  },
-  "minecraft:flower_pot": {
-    "bedrock_id": 390,
-    "bedrock_data": 0
-  },
-  "minecraft:carrot": {
-    "bedrock_id": 391,
-    "bedrock_data": 0
-  },
-  "minecraft:potato": {
-    "bedrock_id": 392,
-    "bedrock_data": 0
-  },
-  "minecraft:baked_potato": {
-    "bedrock_id": 393,
-    "bedrock_data": 0
-  },
-  "minecraft:poisonous_potato": {
-    "bedrock_id": 394,
-    "bedrock_data": 0
-  },
-  "minecraft:map": {
-    "bedrock_id": 395,
-    "bedrock_data": 0
-  },
-  "minecraft:golden_carrot": {
-    "bedrock_id": 396,
-    "bedrock_data": 0
-  },
-  "minecraft:skeleton_skull": {
-    "bedrock_id": 397,
-    "bedrock_data": 0
-  },
-  "minecraft:wither_skeleton_skull": {
-    "bedrock_id": 397,
-    "bedrock_data": 1
-  },
-  "minecraft:player_head": {
-    "bedrock_id": 397,
-    "bedrock_data": 3
-  },
-  "minecraft:zombie_head": {
-    "bedrock_id": 397,
-    "bedrock_data": 2
-  },
-  "minecraft:creeper_head": {
-    "bedrock_id": 397,
-    "bedrock_data": 4
-  },
-  "minecraft:dragon_head": {
-    "bedrock_id": 397,
-    "bedrock_data": 5
-  },
-  "minecraft:carrot_on_a_stick": {
-    "bedrock_id": 398,
-    "bedrock_data": 0
-  },
-  "minecraft:nether_star": {
-    "bedrock_id": 399,
-    "bedrock_data": 0
-  },
-  "minecraft:pumpkin_pie": {
-    "bedrock_id": 400,
-    "bedrock_data": 0
-  },
-  "minecraft:firework_rocket": {
-    "bedrock_id": 401,
-    "bedrock_data": 0
-  },
-  "minecraft:firework_star": {
-    "bedrock_id": 402,
-    "bedrock_data": 0
-  },
-  "minecraft:enchanted_book": {
-    "bedrock_id": 403,
-    "bedrock_data": 0
-  },
-  "minecraft:nether_brick": {
-    "bedrock_id": 405,
-    "bedrock_data": 0
-  },
-  "minecraft:quartz": {
-    "bedrock_id": 406,
-    "bedrock_data": 0
-  },
-  "minecraft:tnt_minecart": {
-    "bedrock_id": 407,
-    "bedrock_data": 0
-  },
-  "minecraft:hopper_minecart": {
-    "bedrock_id": 408,
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_shard": {
-    "bedrock_id": 409,
-    "bedrock_data": 0
-  },
-  "minecraft:prismarine_crystals": {
-    "bedrock_id": 422,
-    "bedrock_data": 0
-  },
-  "minecraft:rabbit": {
-    "bedrock_id": 411,
-    "bedrock_data": 0
-  },
-  "minecraft:cooked_rabbit": {
-    "bedrock_id": 412,
-    "bedrock_data": 0
-  },
-  "minecraft:rabbit_stew": {
-    "bedrock_id": 413,
-    "bedrock_data": 0
-  },
-  "minecraft:rabbit_foot": {
-    "bedrock_id": 414,
-    "bedrock_data": 0
-  },
-  "minecraft:rabbit_hide": {
-    "bedrock_id": 415,
-    "bedrock_data": 0
-  },
-  "minecraft:armor_stand": {
-    "bedrock_id": 425,
-    "bedrock_data": 0
-  },
-  "minecraft:iron_horse_armor": {
-    "bedrock_id": 417,
-    "bedrock_data": 0
-  },
-  "minecraft:golden_horse_armor": {
-    "bedrock_id": 418,
-    "bedrock_data": 0
-  },
-  "minecraft:diamond_horse_armor": {
-    "bedrock_id": 419,
-    "bedrock_data": 0
-  },
-  "minecraft:leather_horse_armor": {
-    "bedrock_id": 416,
-    "bedrock_data": 0
-  },
-  "minecraft:lead": {
-    "bedrock_id": 420,
-    "bedrock_data": 0
-  },
-  "minecraft:name_tag": {
-    "bedrock_id": 421,
-    "bedrock_data": 0
-  },
-  "minecraft:command_block_minecart": {
-    "bedrock_id": 443,
-    "bedrock_data": 0
-  },
-  "minecraft:mutton": {
-    "bedrock_id": 423,
-    "bedrock_data": 0
-  },
-  "minecraft:cooked_mutton": {
-    "bedrock_id": 424,
-    "bedrock_data": 0
-  },
-  "minecraft:white_banner": {
-    "bedrock_id": 446,
-    "bedrock_data": 15
-  },
-  "minecraft:orange_banner": {
-    "bedrock_id": 446,
-    "bedrock_data": 14
-  },
-  "minecraft:magenta_banner": {
-    "bedrock_id": 446,
-    "bedrock_data": 13
-  },
-  "minecraft:light_blue_banner": {
-    "bedrock_id": 446,
-    "bedrock_data": 12
-  },
-  "minecraft:yellow_banner": {
-    "bedrock_id": 446,
-    "bedrock_data": 11
-  },
-  "minecraft:lime_banner": {
-    "bedrock_id": 446,
-    "bedrock_data": 10
-  },
-  "minecraft:pink_banner": {
-    "bedrock_id": 446,
-    "bedrock_data": 9
-  },
-  "minecraft:gray_banner": {
-    "bedrock_id": 446,
-    "bedrock_data": 8
-  },
-  "minecraft:light_gray_banner": {
-    "bedrock_id": 446,
-    "bedrock_data": 7
-  },
-  "minecraft:cyan_banner": {
-    "bedrock_id": 446,
-    "bedrock_data": 6
-  },
-  "minecraft:purple_banner": {
-    "bedrock_id": 446,
-    "bedrock_data": 5
-  },
-  "minecraft:blue_banner": {
-    "bedrock_id": 446,
-    "bedrock_data": 4
-  },
-  "minecraft:brown_banner": {
-    "bedrock_id": 446,
-    "bedrock_data": 3
-  },
-  "minecraft:green_banner": {
-    "bedrock_id": 446,
-    "bedrock_data": 2
-  },
-  "minecraft:red_banner": {
-    "bedrock_id": 446,
-    "bedrock_data": 1
-  },
-  "minecraft:black_banner": {
-    "bedrock_id": 446,
-    "bedrock_data": 0
-  },
-  "minecraft:end_crystal": {
-    "bedrock_id": 426,
-    "bedrock_data": 0
-  },
-  "minecraft:chorus_fruit": {
-    "bedrock_id": 432,
-    "bedrock_data": 0
-  },
-  "minecraft:popped_chorus_fruit": {
-    "bedrock_id": 433,
-    "bedrock_data": 0
-  },
-  "minecraft:beetroot": {
-    "bedrock_id": 457,
-    "bedrock_data": 0
-  },
-  "minecraft:beetroot_seeds": {
-    "bedrock_id": 458,
-    "bedrock_data": 0
-  },
-  "minecraft:beetroot_soup": {
-    "bedrock_id": 459,
-    "bedrock_data": 0
-  },
-  "minecraft:dragon_breath": {
-    "bedrock_id": 437,
-    "bedrock_data": 0
-  },
-  "minecraft:splash_potion": {
-    "bedrock_id": 438,
-    "bedrock_data": 0
-  },
-  "minecraft:spectral_arrow": {
-    "bedrock_id": 262,
-    "bedrock_data": 0
-  },
-  "minecraft:tipped_arrow": {
-    "bedrock_id": 262,
-    "bedrock_data": 0
-  },
-  "minecraft:lingering_potion": {
-    "bedrock_id": 441,
-    "bedrock_data": 0
-  },
-  "minecraft:shield": {
-    "bedrock_id": 513,
-    "bedrock_data": 0
-  },
-  "minecraft:elytra": {
-    "bedrock_id": 444,
-    "bedrock_data": 0
-  },
-  "minecraft:spruce_boat": {
-    "bedrock_id": 333,
-    "bedrock_data": 1
-  },
-  "minecraft:birch_boat": {
-    "bedrock_id": 333,
-    "bedrock_data": 2
-  },
-  "minecraft:jungle_boat": {
-    "bedrock_id": 333,
-    "bedrock_data": 3
-  },
-  "minecraft:acacia_boat": {
-    "bedrock_id": 333,
-    "bedrock_data": 4
-  },
-  "minecraft:dark_oak_boat": {
-    "bedrock_id": 333,
-    "bedrock_data": 5
-  },
-  "minecraft:totem_of_undying": {
-    "bedrock_id": 450,
-    "bedrock_data": 0
-  },
-  "minecraft:shulker_shell": {
-    "bedrock_id": 445,
-    "bedrock_data": 0
-  },
-  "minecraft:iron_nugget": {
-    "bedrock_id": 452,
-    "bedrock_data": 0
-  },
-  "minecraft:knowledge_book": {
-    "bedrock_id": 340,
-    "bedrock_data": 0
-  },
-  "minecraft:debug_stick": {
-    "bedrock_id": 280,
-    "bedrock_data": 0
-  },
-  "minecraft:music_disc_13": {
-    "bedrock_id": 500,
-    "bedrock_data": 0
-  },
-  "minecraft:music_disc_cat": {
-    "bedrock_id": 501,
-    "bedrock_data": 0
-  },
-  "minecraft:music_disc_blocks": {
-    "bedrock_id": 502,
-    "bedrock_data": 0
-  },
-  "minecraft:music_disc_chirp": {
-    "bedrock_id": 503,
-    "bedrock_data": 0
-  },
-  "minecraft:music_disc_far": {
-    "bedrock_id": 504,
-    "bedrock_data": 0
-  },
-  "minecraft:music_disc_mall": {
-    "bedrock_id": 505,
-    "bedrock_data": 0
-  },
-  "minecraft:music_disc_mellohi": {
-    "bedrock_id": 506,
-    "bedrock_data": 0
-  },
-  "minecraft:music_disc_stal": {
-    "bedrock_id": 507,
-    "bedrock_data": 0
-  },
-  "minecraft:music_disc_strad": {
-    "bedrock_id": 508,
-    "bedrock_data": 0
-  },
-  "minecraft:music_disc_ward": {
-    "bedrock_id": 509,
-    "bedrock_data": 0
-  },
-  "minecraft:music_disc_11": {
-    "bedrock_id": 510,
-    "bedrock_data": 0
-  },
-  "minecraft:music_disc_wait": {
-    "bedrock_id": 511,
-    "bedrock_data": 0
-  },
-  "minecraft:trident": {
-    "bedrock_id": 455,
-    "bedrock_data": 0
-  },
-  "minecraft:phantom_membrane": {
-    "bedrock_id": 470,
-    "bedrock_data": 0
-  },
-  "minecraft:nautilus_shell": {
-    "bedrock_id": 465,
-    "bedrock_data": 0
-  },
-  "minecraft:heart_of_the_sea": {
-    "bedrock_id": 467,
-    "bedrock_data": 0
-  },
-  "minecraft:crossbow": {
-    "bedrock_id": 471,
-    "bedrock_data": 0
-  },
-  "minecraft:suspicious_stew": {
-    "bedrock_id": 734,
-    "bedrock_data": 0
-  },
-  "minecraft:loom": {
-    "bedrock_id": -204,
-    "bedrock_data": 0
-  },
-  "minecraft:flower_banner_pattern": {
-    "bedrock_id": 434,
-    "bedrock_data": 2
-  },
-  "minecraft:creeper_banner_pattern": {
-    "bedrock_id": 434,
-    "bedrock_data": 0
-  },
-  "minecraft:skull_banner_pattern": {
-    "bedrock_id": 434,
-    "bedrock_data": 1
-  },
-  "minecraft:mojang_banner_pattern": {
-    "bedrock_id": 434,
-    "bedrock_data": 3
-  },
-  "minecraft:globe_banner_pattern": {
-    "bedrock_id": 434,
-    "bedrock_data": 4
-  },
-  "minecraft:barrel": {
-    "bedrock_id": -203,
-    "bedrock_data": 0
-  },
-  "minecraft:smoker": {
-    "bedrock_id": -198,
-    "bedrock_data": 0
-  },
-  "minecraft:blast_furnace": {
-    "bedrock_id": -196,
-    "bedrock_data": 0
-  },
-  "minecraft:cartography_table": {
-    "bedrock_id": -200,
-    "bedrock_data": 0
-  },
-  "minecraft:fletching_table": {
-    "bedrock_id": -201,
-    "bedrock_data": 0
-  },
-  "minecraft:grindstone": {
-    "bedrock_id": -195,
-    "bedrock_data": 0
-  },
-  "minecraft:lectern": {
-    "bedrock_id": -194,
-    "bedrock_data": 0
-  },
-  "minecraft:smithing_table": {
-    "bedrock_id": -202,
-    "bedrock_data": 0
-  },
-  "minecraft:stonecutter": {
-    "bedrock_id": -197,
-    "bedrock_data": 0
-  },
-  "minecraft:bell": {
-    "bedrock_id": -206,
-    "bedrock_data": 0
-  },
-  "minecraft:lantern": {
-    "bedrock_id": -208,
-    "bedrock_data": 0
-  },
-  "minecraft:sweet_berries": {
-    "bedrock_id": 477,
-    "bedrock_data": 0
-  },
-  "minecraft:campfire": {
-    "bedrock_id": 720,
-    "bedrock_data": 0
-  }
-}
\ No newline at end of file
diff --git a/connector/src/main/resources/mappings b/connector/src/main/resources/mappings
new file mode 160000
index 000000000..5ec6f1f33
--- /dev/null
+++ b/connector/src/main/resources/mappings
@@ -0,0 +1 @@
+Subproject commit 5ec6f1f339506129514de59d0e09e9b2c612e8be