From 50fd145d778c97002dd39964c612273a020c7c07 Mon Sep 17 00:00:00 2001 From: LOOHP Date: Wed, 7 Dec 2022 21:38:20 +0000 Subject: [PATCH] Minecraft 1.19.3 --- pom.xml | 2 +- src/main/java/com/loohp/limbo/Limbo.java | 4 +- .../loohp/limbo/file/ServerProperties.java | 31 +- .../java/com/loohp/limbo/network/Channel.java | 2 +- .../loohp/limbo/network/ClientConnection.java | 46 +- .../protocol/packets/PacketHandshakingIn.java | 2 +- .../packets/PacketLoginInLoginStart.java | 21 +- .../protocol/packets/PacketPlayOutLogin.java | 8 +- .../packets/PacketPlayOutPlayerInfo.java | 112 +- .../com/loohp/limbo/utils/DataTypeIO.java | 44 + src/main/resources/blocks.json | 73775 ++++++++++------ src/main/resources/mapping.json | 60 +- src/main/resources/server.properties | 4 +- 13 files changed, 45343 insertions(+), 28768 deletions(-) diff --git a/pom.xml b/pom.xml index 08cdc6c..07cfb89 100644 --- a/pom.xml +++ b/pom.xml @@ -136,7 +136,7 @@ - ${project.artifactId}-${project.version}-1.19.2 + ${project.artifactId}-${project.version}-1.19.3 diff --git a/src/main/java/com/loohp/limbo/Limbo.java b/src/main/java/com/loohp/limbo/Limbo.java index c2f0d6e..8eef992 100644 --- a/src/main/java/com/loohp/limbo/Limbo.java +++ b/src/main/java/com/loohp/limbo/Limbo.java @@ -131,8 +131,8 @@ public class Limbo { //=========================== - public final String SERVER_IMPLEMENTATION_VERSION = "1.19.2"; - public final int SERVER_IMPLEMENTATION_PROTOCOL = 760; + public final String SERVER_IMPLEMENTATION_VERSION = "1.19.3"; + public final int SERVER_IMPLEMENTATION_PROTOCOL = 761; public final String LIMBO_IMPLEMENTATION_VERSION; private AtomicBoolean isRunning; diff --git a/src/main/java/com/loohp/limbo/file/ServerProperties.java b/src/main/java/com/loohp/limbo/file/ServerProperties.java index bb10d48..171c6b6 100644 --- a/src/main/java/com/loohp/limbo/file/ServerProperties.java +++ b/src/main/java/com/loohp/limbo/file/ServerProperties.java @@ -41,12 +41,12 @@ import java.io.OutputStreamWriter; import java.io.PrintWriter; import java.nio.charset.StandardCharsets; import java.nio.file.Files; -import java.util.HashSet; +import java.util.HashMap; import java.util.List; +import java.util.Map; import java.util.Map.Entry; import java.util.Optional; import java.util.Properties; -import java.util.Set; import java.util.UUID; public class ServerProperties { @@ -77,7 +77,7 @@ public class ServerProperties { private double ticksPerSecond; private boolean handshakeVerbose; private boolean enforceWhitelist; - private Set whitelist; + private Map whitelist; private String resourcePackSHA1; private String resourcePackLink; @@ -191,20 +191,26 @@ public class ServerProperties { } enforceWhitelist = Boolean.parseBoolean(prop.getProperty("enforce-whitelist")); - if (enforceWhitelist) { - reloadWhitelist(); - } + reloadWhitelist(); Limbo.getInstance().getConsole().sendMessage("Loaded server.properties"); } public void reloadWhitelist() { Console console = Limbo.getInstance().getConsole(); - - whitelist = new HashSet<>(); + File whitelistFile = new File("whitelist.json"); + if (!whitelistFile.exists()) { + try (PrintWriter pw = new PrintWriter(new OutputStreamWriter(Files.newOutputStream(whitelistFile.toPath())))) { + pw.println("[]"); + pw.flush(); + } catch (IOException e) { + e.printStackTrace(); + } + } + whitelist = new HashMap<>(); try { JSONParser parser = new JSONParser(); - Object obj = parser.parse(new InputStreamReader(Files.newInputStream(new File("whitelist.json").toPath()), StandardCharsets.UTF_8)); + Object obj = parser.parse(new InputStreamReader(Files.newInputStream(whitelistFile.toPath()), StandardCharsets.UTF_8)); if (!(obj instanceof JSONArray)) { console.sendMessage("whitelist: expected [] got {}"); @@ -231,8 +237,9 @@ public class ServerProperties { } String uuidStr = (String) o; - UUID allowedUuid = UUID.fromString(uuidStr); - whitelist.add(allowedUuid); + UUID uuid = UUID.fromString(uuidStr); + String name = element.containsKey("name") ? (String) element.get("name") : null; + whitelist.put(uuid, name); } } catch (Exception e) { e.printStackTrace(); @@ -352,7 +359,7 @@ public class ServerProperties { } public boolean uuidWhitelisted(UUID uuid) { - return whitelist.contains(uuid); + return whitelist.containsKey(uuid); } public String getResourcePackLink() { diff --git a/src/main/java/com/loohp/limbo/network/Channel.java b/src/main/java/com/loohp/limbo/network/Channel.java index 5c2e30a..fc24e25 100644 --- a/src/main/java/com/loohp/limbo/network/Channel.java +++ b/src/main/java/com/loohp/limbo/network/Channel.java @@ -107,7 +107,7 @@ public class Channel implements AutoCloseable { @Override public synchronized void close() throws Exception { - if (valid.compareAndSet(false, true)) { + if (valid.compareAndSet(true, false)) { input.close(); output.close(); } diff --git a/src/main/java/com/loohp/limbo/network/ClientConnection.java b/src/main/java/com/loohp/limbo/network/ClientConnection.java index 1fdf255..2ebb860 100644 --- a/src/main/java/com/loohp/limbo/network/ClientConnection.java +++ b/src/main/java/com/loohp/limbo/network/ClientConnection.java @@ -21,12 +21,12 @@ package com.loohp.limbo.network; import com.loohp.limbo.Limbo; import com.loohp.limbo.events.player.PlayerJoinEvent; -import com.loohp.limbo.events.player.PlayerSpawnEvent; import com.loohp.limbo.events.player.PlayerLoginEvent; import com.loohp.limbo.events.player.PlayerMoveEvent; import com.loohp.limbo.events.player.PlayerQuitEvent; import com.loohp.limbo.events.player.PlayerResourcePackStatusEvent; import com.loohp.limbo.events.player.PlayerSelectedSlotChangeEvent; +import com.loohp.limbo.events.player.PlayerSpawnEvent; import com.loohp.limbo.events.player.PluginMessageEvent; import com.loohp.limbo.events.status.StatusPingEvent; import com.loohp.limbo.file.ServerProperties; @@ -88,7 +88,6 @@ import com.loohp.limbo.utils.MojangAPIUtils.SkinResponse; import com.loohp.limbo.utils.NamespacedKey; import com.loohp.limbo.world.BlockPosition; import com.loohp.limbo.world.World; - import net.kyori.adventure.text.Component; import net.kyori.adventure.text.serializer.plain.PlainTextComponentSerializer; import net.md_5.bungee.api.ChatColor; @@ -104,11 +103,14 @@ import java.io.DataInput; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.IOException; +import java.io.PrintWriter; +import java.io.StringWriter; import java.lang.reflect.Constructor; import java.net.InetAddress; import java.net.Socket; import java.nio.charset.StandardCharsets; import java.util.ArrayList; +import java.util.EnumSet; import java.util.HashSet; import java.util.List; import java.util.Optional; @@ -121,8 +123,6 @@ import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicLong; import java.util.stream.Collectors; import java.util.stream.Stream; -import java.io.StringWriter; -import java.io.PrintWriter; public class ClientConnection extends Thread { @@ -429,7 +429,7 @@ public class ClientConnection extends Thread { boolean bungeeGuardFound = false; - if (skinData != "") { + if (!skinData.equals("")) { JSONArray skinJson = (JSONArray) new JSONParser().parse(skinData); for (Object obj : skinJson) { @@ -460,10 +460,10 @@ public class ClientConnection extends Thread { disconnectDuringLogin(new BaseComponent[] {new TextComponent(ChatColor.RED + "Please connect from the proxy!")}); } } - int messageId = this.random.nextInt(); while (clientSocket.isConnected()) { PacketIn packetIn = channel.readPacket(); + if (packetIn instanceof PacketLoginInLoginStart) { PacketLoginInLoginStart start = (PacketLoginInLoginStart) packetIn; String username = start.getUsername(); @@ -474,7 +474,10 @@ public class ClientConnection extends Thread { continue; } - UUID uuid = isBungeecord || isBungeeGuard ? bungeeUUID : UUID.nameUUIDFromBytes(("OfflinePlayer:" + username).getBytes(StandardCharsets.UTF_8)); + UUID uuid = isBungeecord || isBungeeGuard ? bungeeUUID : (start.hasUniqueId() ? start.getUniqueId() : null); + if (uuid == null) { + uuid = UUID.nameUUIDFromBytes(("OfflinePlayer:" + username).getBytes(StandardCharsets.UTF_8)); + } if (!properties.enforceWhitelist() && properties.uuidWhitelisted(uuid)) { disconnectDuringLogin(TextComponent.fromLegacyText("You are not whitelisted on the server")); @@ -489,7 +492,6 @@ public class ClientConnection extends Thread { player = new Player(this, username, uuid, Limbo.getInstance().getNextEntityId(), Limbo.getInstance().getServerProperties().getWorldSpawn(), new PlayerInteractManager()); player.setSkinLayers((byte) (0x01 | 0x02 | 0x04 | 0x08 | 0x10 | 0x20 | 0x40)); Limbo.getInstance().addPlayer(player); - break; } else if (packetIn instanceof PacketLoginInPluginMessaging) { PacketLoginInPluginMessaging response = (PacketLoginInPluginMessaging) packetIn; @@ -546,18 +548,18 @@ public class ClientConnection extends Thread { PlayerSpawnEvent spawnEvent = Limbo.getInstance().getEventsManager().callEvent(new PlayerSpawnEvent(player, worldSpawn)); worldSpawn = spawnEvent.getSpawnLocation(); World world = worldSpawn.getWorld(); - + PacketPlayOutLogin join = new PacketPlayOutLogin(player.getEntityId(), false, properties.getDefaultGamemode(), Limbo.getInstance().getWorlds(), Limbo.getInstance().getDimensionRegistry().getCodec(), world, 0, (byte) properties.getMaxPlayers(), 8, 8, properties.isReducedDebugInfo(), true, false, true); sendPacket(join); Limbo.getInstance().getUnsafe().setPlayerGameModeSilently(player, properties.getDefaultGamemode()); - + ByteArrayOutputStream brandOut = new ByteArrayOutputStream(); DataTypeIO.writeString(new DataOutputStream(brandOut), properties.getServerModName(), StandardCharsets.UTF_8); sendPluginMessage(BRAND_ANNOUNCE_CHANNEL, brandOut.toByteArray()); SkinResponse skinresponce = (isVelocityModern || isBungeeGuard || isBungeecord) && forwardedSkin != null ? forwardedSkin : MojangAPIUtils.getSkinFromMojangServer(player.getName()); PlayerSkinProperty skin = skinresponce != null ? new PlayerSkinProperty(skinresponce.getSkin(), skinresponce.getSignature()) : null; - PacketPlayOutPlayerInfo info = new PacketPlayOutPlayerInfo(PlayerInfoAction.ADD_PLAYER, player.getUniqueId(), new PlayerInfoData.PlayerInfoDataAddPlayer(player.getName(), Optional.ofNullable(skin), properties.getDefaultGamemode(), 0, false, Optional.empty())); + PacketPlayOutPlayerInfo info = new PacketPlayOutPlayerInfo(EnumSet.of(PlayerInfoAction.ADD_PLAYER, PlayerInfoAction.UPDATE_GAME_MODE, PlayerInfoAction.UPDATE_LISTED, PlayerInfoAction.UPDATE_LATENCY, PlayerInfoAction.UPDATE_DISPLAY_NAME), player.getUniqueId(), new PlayerInfoData.PlayerInfoDataAddPlayer(player.getName(), true, Optional.ofNullable(skin), properties.getDefaultGamemode(), 0, false, Optional.empty())); sendPacket(info); Set flags = new HashSet<>(); @@ -569,7 +571,7 @@ public class ClientConnection extends Thread { } PacketPlayOutPlayerAbilities abilities = new PacketPlayOutPlayerAbilities(0.05F, 0.1F, flags.toArray(new PlayerAbilityFlags[flags.size()])); sendPacket(abilities); - + String str = (properties.isLogPlayerIPAddresses() ? inetAddress.getHostName() : "") + ":" + clientSocket.getPort() + "|" + player.getName() + "(" + player.getUniqueId() + ")"; Limbo.getInstance().getConsole().sendMessage("[/" + str + "] <-> Player had connected to the Limbo server!"); @@ -590,14 +592,14 @@ public class ClientConnection extends Thread { player.getDataWatcher().update(); PacketPlayOutEntityMetadata show = new PacketPlayOutEntityMetadata(player, false, Player.class.getDeclaredField("skinLayers")); sendPacket(show); - + Limbo.getInstance().getEventsManager().callEvent(new PlayerJoinEvent(player)); - + if (properties.isAllowFlight()) { PacketPlayOutGameState state = new PacketPlayOutGameState(3, player.getGamemode().getId()); sendPacket(state); } - + // RESOURCEPACK CODE CONRIBUTED BY GAMERDUCK123 if (!properties.getResourcePackLink().equalsIgnoreCase("")) { if (!properties.getResourcePackSHA1().equalsIgnoreCase("")) { @@ -610,16 +612,18 @@ public class ClientConnection extends Thread { } else { //RESOURCEPACK NOT ENABLED } - + // PLAYER LIST HEADER AND FOOTER CODE CONRIBUTED BY GAMERDUCK123 player.sendPlayerListHeaderAndFooter(properties.getTabHeader(), properties.getTabFooter()); - + ready = true; - + keepAliveTask = new TimerTask() { @Override public void run() { - if (ready) { + if (state.equals(ClientState.DISCONNECTED)) { + this.cancel(); + } else if (ready && state.equals(ClientState.PLAY)) { long now = System.currentTimeMillis(); if (now - getLastPacketTimestamp() > 15000) { PacketPlayOutKeepAlive keepAlivePacket = new PacketPlayOutKeepAlive(now); @@ -629,13 +633,11 @@ public class ClientConnection extends Thread { } catch (Exception e) { } } - } else { - this.cancel(); } } }; new Timer().schedule(keepAliveTask, 5000, 10000); - + while (clientSocket.isConnected()) { try { CheckedBiConsumer processMoveEvent = (event, originalTo) -> { diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketHandshakingIn.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketHandshakingIn.java index 17eb374..a2e04ec 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketHandshakingIn.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketHandshakingIn.java @@ -27,7 +27,7 @@ import com.loohp.limbo.utils.DataTypeIO; public class PacketHandshakingIn extends PacketIn { - public static enum HandshakeType { + public enum HandshakeType { STATUS(1), LOGIN(2); diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginInLoginStart.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginInLoginStart.java index 214eab5..1aafc9e 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginInLoginStart.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginInLoginStart.java @@ -22,12 +22,15 @@ package com.loohp.limbo.network.protocol.packets; import java.io.DataInputStream; import java.io.IOException; import java.nio.charset.StandardCharsets; +import java.util.Optional; +import java.util.UUID; import com.loohp.limbo.utils.DataTypeIO; public class PacketLoginInLoginStart extends PacketIn { private String username; + private Optional uuid; public PacketLoginInLoginStart(String username) { this.username = username; @@ -35,13 +38,10 @@ public class PacketLoginInLoginStart extends PacketIn { public PacketLoginInLoginStart(DataInputStream in) throws IOException { this.username = DataTypeIO.readString(in, StandardCharsets.UTF_8); - boolean hasSigData = in.readBoolean(); - if (hasSigData) { - in.readLong(); - int publicKeyLength = DataTypeIO.readVarInt(in); - in.readFully(new byte[publicKeyLength]); - int signatureLength = DataTypeIO.readVarInt(in); - in.readFully(new byte[signatureLength]); + if (in.readBoolean()) { + this.uuid = Optional.of(DataTypeIO.readUUID(in)); + } else { + this.uuid = Optional.empty(); } } @@ -49,4 +49,11 @@ public class PacketLoginInLoginStart extends PacketIn { return username; } + public boolean hasUniqueId() { + return uuid.isPresent(); + } + + public UUID getUniqueId() { + return uuid.orElse(null); + } } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java index dd019fd..c950e44 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java @@ -137,10 +137,10 @@ public class PacketPlayOutLogin extends PacketOut { output.writeInt(entityId); output.writeBoolean(isHardcore); output.writeByte((byte) gamemode.getId()); - output.writeByte((byte) gamemode.getId()); + output.writeByte(-1); DataTypeIO.writeVarInt(output, worlds.size()); - for (int u = 0; u < worlds.size(); u++) { - DataTypeIO.writeString(output, new NamespacedKey(worlds.get(u).getName()).toString(), StandardCharsets.UTF_8); + for (World world : worlds) { + DataTypeIO.writeString(output, new NamespacedKey(world.getName()).toString(), StandardCharsets.UTF_8); } DataTypeIO.writeCompoundTag(output, dimensionCodec); DataTypeIO.writeString(output, world.getEnvironment().getNamespacedKey().toString(), StandardCharsets.UTF_8); @@ -154,7 +154,7 @@ public class PacketPlayOutLogin extends PacketOut { output.writeBoolean(isDebug); output.writeBoolean(isFlat); output.writeBoolean(false); - + return buffer.toByteArray(); } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerInfo.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerInfo.java index a5af887..8fd1404 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerInfo.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerInfo.java @@ -23,6 +23,7 @@ import java.io.ByteArrayOutputStream; import java.io.DataOutputStream; import java.io.IOException; import java.nio.charset.StandardCharsets; +import java.util.EnumSet; import java.util.Optional; import java.util.UUID; @@ -33,31 +34,26 @@ import com.loohp.limbo.utils.GameMode; public class PacketPlayOutPlayerInfo extends PacketOut { public enum PlayerInfoAction { - ADD_PLAYER(0), UPDATE_GAMEMODE(1), UPDATE_LATENCY(2), UPDATE_DISPLAY_NAME(3), REMOVE_PLAYER(4); - - private final int id; - - PlayerInfoAction(int id) { - this.id = id; - } - - public int getId() { - return id; - } + ADD_PLAYER, + INITIALIZE_CHAT, + UPDATE_GAME_MODE, + UPDATE_LISTED, + UPDATE_LATENCY, + UPDATE_DISPLAY_NAME; } - private PlayerInfoAction action; + private EnumSet actions; private UUID uuid; private PlayerInfoData data; - public PacketPlayOutPlayerInfo(PlayerInfoAction action, UUID uuid, PlayerInfoData data) { - this.action = action; + public PacketPlayOutPlayerInfo(EnumSet actions, UUID uuid, PlayerInfoData data) { + this.actions = actions; this.uuid = uuid; this.data = data; } - public PlayerInfoAction getAction() { - return action; + public EnumSet getActions() { + return actions; } public UUID getUuid() { @@ -74,41 +70,52 @@ public class PacketPlayOutPlayerInfo extends PacketOut { DataOutputStream output = new DataOutputStream(buffer); output.writeByte(Packet.getPlayOut().get(getClass())); - DataTypeIO.writeVarInt(output, action.getId()); + + DataTypeIO.writeEnumSet(output, actions, PlayerInfoAction.class); DataTypeIO.writeVarInt(output, 1); DataTypeIO.writeUUID(output, uuid); - - switch (action) { - case ADD_PLAYER: - PlayerInfoDataAddPlayer data = (PlayerInfoDataAddPlayer) this.data; - DataTypeIO.writeString(output, data.getName(), StandardCharsets.UTF_8); - if (data.getProperty().isPresent()) { - DataTypeIO.writeVarInt(output, 1); - DataTypeIO.writeString(output, "textures", StandardCharsets.UTF_8); - DataTypeIO.writeString(output, data.getProperty().get().getSkin(), StandardCharsets.UTF_8); - output.writeBoolean(true); - DataTypeIO.writeString(output, data.getProperty().get().getSignature(), StandardCharsets.UTF_8); - } else { - DataTypeIO.writeVarInt(output, 0); + + PlayerInfoDataAddPlayer data = (PlayerInfoDataAddPlayer) this.data; + for (PlayerInfoAction action : actions) { + switch (action) { + case ADD_PLAYER: { + DataTypeIO.writeString(output, data.getName(), StandardCharsets.UTF_8); + if (data.getProperty().isPresent()) { + DataTypeIO.writeVarInt(output, 1); + DataTypeIO.writeString(output, "textures", StandardCharsets.UTF_8); + DataTypeIO.writeString(output, data.getProperty().get().getSkin(), StandardCharsets.UTF_8); + output.writeBoolean(true); + DataTypeIO.writeString(output, data.getProperty().get().getSignature(), StandardCharsets.UTF_8); + } else { + DataTypeIO.writeVarInt(output, 0); + } + break; + } + case INITIALIZE_CHAT: { + break; + } + case UPDATE_GAME_MODE: { + DataTypeIO.writeVarInt(output, data.getGamemode().getId()); + break; + } + case UPDATE_LISTED: { + output.writeBoolean(data.isListed()); + break; + } + case UPDATE_LATENCY: { + DataTypeIO.writeVarInt(output, data.getPing()); + break; + } + case UPDATE_DISPLAY_NAME: { + if (data.getDisplayNameJson().isPresent()) { + output.writeBoolean(true); + DataTypeIO.writeString(output, data.getDisplayNameJson().get(), StandardCharsets.UTF_8); + } else { + output.writeBoolean(false); + } + break; + } } - DataTypeIO.writeVarInt(output, data.getGamemode().getId()); - DataTypeIO.writeVarInt(output, data.getPing()); - if (data.getDisplayNameJson().isPresent()) { - output.writeBoolean(true); - DataTypeIO.writeString(output, data.getDisplayNameJson().get(), StandardCharsets.UTF_8); - } else { - output.writeBoolean(false); - } - output.writeBoolean(false); - break; - case REMOVE_PLAYER: - break; - case UPDATE_DISPLAY_NAME: - break; - case UPDATE_GAMEMODE: - break; - case UPDATE_LATENCY: - break; } return buffer.toByteArray(); @@ -121,15 +128,16 @@ public class PacketPlayOutPlayerInfo extends PacketOut { public static class PlayerInfoDataAddPlayer extends PlayerInfoData { private String name; + private boolean listed; private Optional skin; private GameMode gamemode; private int ping; private boolean hasDisplayName; private Optional displayNameJson; - public PlayerInfoDataAddPlayer(String name, Optional skin, GameMode gamemode, int ping, - boolean hasDisplayName, Optional displayNameJson) { + public PlayerInfoDataAddPlayer(String name, boolean listed, Optional skin, GameMode gamemode, int ping, boolean hasDisplayName, Optional displayNameJson) { this.name = name; + this.listed = listed; this.skin = skin; this.gamemode = gamemode; this.ping = ping; @@ -141,6 +149,10 @@ public class PacketPlayOutPlayerInfo extends PacketOut { return name; } + public boolean isListed() { + return listed; + } + public Optional getProperty() { return skin; } diff --git a/src/main/java/com/loohp/limbo/utils/DataTypeIO.java b/src/main/java/com/loohp/limbo/utils/DataTypeIO.java index fd73216..61e8fac 100644 --- a/src/main/java/com/loohp/limbo/utils/DataTypeIO.java +++ b/src/main/java/com/loohp/limbo/utils/DataTypeIO.java @@ -24,6 +24,9 @@ import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.IOException; import java.nio.charset.Charset; +import java.util.Arrays; +import java.util.BitSet; +import java.util.EnumSet; import java.util.UUID; import com.loohp.limbo.world.BlockPosition; @@ -33,6 +36,47 @@ import net.querz.nbt.tag.CompoundTag; import net.querz.nbt.tag.Tag; public class DataTypeIO { + + public static > void writeEnumSet(DataOutputStream out, EnumSet enumset, Class oclass) throws IOException { + E[] ae = oclass.getEnumConstants(); + BitSet bitset = new BitSet(ae.length); + + for (int i = 0; i < ae.length; ++i) { + bitset.set(i, enumset.contains(ae[i])); + } + + writeFixedBitSet(out, bitset, ae.length); + } + + public static > EnumSet readEnumSet(DataInputStream in, Class oclass) throws IOException { + E[] ae = oclass.getEnumConstants(); + BitSet bitset = readFixedBitSet(in, ae.length); + EnumSet enumset = EnumSet.noneOf(oclass); + + for (int i = 0; i < ae.length; ++i) { + if (bitset.get(i)) { + enumset.add(ae[i]); + } + } + + return enumset; + } + + public static void writeFixedBitSet(DataOutputStream out, BitSet bitset, int i) throws IOException { + if (bitset.length() > i) { + int j = bitset.length(); + throw new RuntimeException("BitSet is larger than expected size (" + j + ">" + i + ")"); + } else { + byte[] abyte = bitset.toByteArray(); + out.write(Arrays.copyOf(abyte, -Math.floorDiv(-i, 8))); + } + } + + public static BitSet readFixedBitSet(DataInputStream in, int i) throws IOException { + byte[] abyte = new byte[-Math.floorDiv(-i, 8)]; + in.readFully(abyte); + return BitSet.valueOf(abyte); + } public static void writeBlockPosition(DataOutputStream out, BlockPosition position) throws IOException { out.writeLong(((position.getX() & 0x3FFFFFF) << 38) | ((position.getZ() & 0x3FFFFFF) << 12) | (position.getY() & 0xFFF)); diff --git a/src/main/resources/blocks.json b/src/main/resources/blocks.json index 7dd79e3..bc902c1 100644 --- a/src/main/resources/blocks.json +++ b/src/main/resources/blocks.json @@ -19,7 +19,7 @@ }, "states": [ { - "id": 7035, + "id": 8475, "properties": { "face": "floor", "facing": "north", @@ -27,7 +27,7 @@ } }, { - "id": 7036, + "id": 8476, "properties": { "face": "floor", "facing": "north", @@ -35,7 +35,7 @@ } }, { - "id": 7037, + "id": 8477, "properties": { "face": "floor", "facing": "south", @@ -43,7 +43,7 @@ } }, { - "id": 7038, + "id": 8478, "properties": { "face": "floor", "facing": "south", @@ -51,7 +51,7 @@ } }, { - "id": 7039, + "id": 8479, "properties": { "face": "floor", "facing": "west", @@ -59,7 +59,7 @@ } }, { - "id": 7040, + "id": 8480, "properties": { "face": "floor", "facing": "west", @@ -67,7 +67,7 @@ } }, { - "id": 7041, + "id": 8481, "properties": { "face": "floor", "facing": "east", @@ -75,7 +75,7 @@ } }, { - "id": 7042, + "id": 8482, "properties": { "face": "floor", "facing": "east", @@ -83,7 +83,7 @@ } }, { - "id": 7043, + "id": 8483, "properties": { "face": "wall", "facing": "north", @@ -92,7 +92,7 @@ }, { "default": true, - "id": 7044, + "id": 8484, "properties": { "face": "wall", "facing": "north", @@ -100,7 +100,7 @@ } }, { - "id": 7045, + "id": 8485, "properties": { "face": "wall", "facing": "south", @@ -108,7 +108,7 @@ } }, { - "id": 7046, + "id": 8486, "properties": { "face": "wall", "facing": "south", @@ -116,7 +116,7 @@ } }, { - "id": 7047, + "id": 8487, "properties": { "face": "wall", "facing": "west", @@ -124,7 +124,7 @@ } }, { - "id": 7048, + "id": 8488, "properties": { "face": "wall", "facing": "west", @@ -132,7 +132,7 @@ } }, { - "id": 7049, + "id": 8489, "properties": { "face": "wall", "facing": "east", @@ -140,7 +140,7 @@ } }, { - "id": 7050, + "id": 8490, "properties": { "face": "wall", "facing": "east", @@ -148,7 +148,7 @@ } }, { - "id": 7051, + "id": 8491, "properties": { "face": "ceiling", "facing": "north", @@ -156,7 +156,7 @@ } }, { - "id": 7052, + "id": 8492, "properties": { "face": "ceiling", "facing": "north", @@ -164,7 +164,7 @@ } }, { - "id": 7053, + "id": 8493, "properties": { "face": "ceiling", "facing": "south", @@ -172,7 +172,7 @@ } }, { - "id": 7054, + "id": 8494, "properties": { "face": "ceiling", "facing": "south", @@ -180,7 +180,7 @@ } }, { - "id": 7055, + "id": 8495, "properties": { "face": "ceiling", "facing": "west", @@ -188,7 +188,7 @@ } }, { - "id": 7056, + "id": 8496, "properties": { "face": "ceiling", "facing": "west", @@ -196,7 +196,7 @@ } }, { - "id": 7057, + "id": 8497, "properties": { "face": "ceiling", "facing": "east", @@ -204,7 +204,7 @@ } }, { - "id": 7058, + "id": 8498, "properties": { "face": "ceiling", "facing": "east", @@ -240,7 +240,7 @@ }, "states": [ { - "id": 9747, + "id": 11467, "properties": { "facing": "north", "half": "upper", @@ -250,7 +250,7 @@ } }, { - "id": 9748, + "id": 11468, "properties": { "facing": "north", "half": "upper", @@ -260,7 +260,7 @@ } }, { - "id": 9749, + "id": 11469, "properties": { "facing": "north", "half": "upper", @@ -270,7 +270,7 @@ } }, { - "id": 9750, + "id": 11470, "properties": { "facing": "north", "half": "upper", @@ -280,7 +280,7 @@ } }, { - "id": 9751, + "id": 11471, "properties": { "facing": "north", "half": "upper", @@ -290,7 +290,7 @@ } }, { - "id": 9752, + "id": 11472, "properties": { "facing": "north", "half": "upper", @@ -300,7 +300,7 @@ } }, { - "id": 9753, + "id": 11473, "properties": { "facing": "north", "half": "upper", @@ -310,7 +310,7 @@ } }, { - "id": 9754, + "id": 11474, "properties": { "facing": "north", "half": "upper", @@ -320,7 +320,7 @@ } }, { - "id": 9755, + "id": 11475, "properties": { "facing": "north", "half": "lower", @@ -330,7 +330,7 @@ } }, { - "id": 9756, + "id": 11476, "properties": { "facing": "north", "half": "lower", @@ -340,7 +340,7 @@ } }, { - "id": 9757, + "id": 11477, "properties": { "facing": "north", "half": "lower", @@ -351,7 +351,7 @@ }, { "default": true, - "id": 9758, + "id": 11478, "properties": { "facing": "north", "half": "lower", @@ -361,7 +361,7 @@ } }, { - "id": 9759, + "id": 11479, "properties": { "facing": "north", "half": "lower", @@ -371,7 +371,7 @@ } }, { - "id": 9760, + "id": 11480, "properties": { "facing": "north", "half": "lower", @@ -381,7 +381,7 @@ } }, { - "id": 9761, + "id": 11481, "properties": { "facing": "north", "half": "lower", @@ -391,7 +391,7 @@ } }, { - "id": 9762, + "id": 11482, "properties": { "facing": "north", "half": "lower", @@ -401,7 +401,7 @@ } }, { - "id": 9763, + "id": 11483, "properties": { "facing": "south", "half": "upper", @@ -411,7 +411,7 @@ } }, { - "id": 9764, + "id": 11484, "properties": { "facing": "south", "half": "upper", @@ -421,7 +421,7 @@ } }, { - "id": 9765, + "id": 11485, "properties": { "facing": "south", "half": "upper", @@ -431,7 +431,7 @@ } }, { - "id": 9766, + "id": 11486, "properties": { "facing": "south", "half": "upper", @@ -441,7 +441,7 @@ } }, { - "id": 9767, + "id": 11487, "properties": { "facing": "south", "half": "upper", @@ -451,7 +451,7 @@ } }, { - "id": 9768, + "id": 11488, "properties": { "facing": "south", "half": "upper", @@ -461,7 +461,7 @@ } }, { - "id": 9769, + "id": 11489, "properties": { "facing": "south", "half": "upper", @@ -471,7 +471,7 @@ } }, { - "id": 9770, + "id": 11490, "properties": { "facing": "south", "half": "upper", @@ -481,7 +481,7 @@ } }, { - "id": 9771, + "id": 11491, "properties": { "facing": "south", "half": "lower", @@ -491,7 +491,7 @@ } }, { - "id": 9772, + "id": 11492, "properties": { "facing": "south", "half": "lower", @@ -501,7 +501,7 @@ } }, { - "id": 9773, + "id": 11493, "properties": { "facing": "south", "half": "lower", @@ -511,7 +511,7 @@ } }, { - "id": 9774, + "id": 11494, "properties": { "facing": "south", "half": "lower", @@ -521,7 +521,7 @@ } }, { - "id": 9775, + "id": 11495, "properties": { "facing": "south", "half": "lower", @@ -531,7 +531,7 @@ } }, { - "id": 9776, + "id": 11496, "properties": { "facing": "south", "half": "lower", @@ -541,7 +541,7 @@ } }, { - "id": 9777, + "id": 11497, "properties": { "facing": "south", "half": "lower", @@ -551,7 +551,7 @@ } }, { - "id": 9778, + "id": 11498, "properties": { "facing": "south", "half": "lower", @@ -561,7 +561,7 @@ } }, { - "id": 9779, + "id": 11499, "properties": { "facing": "west", "half": "upper", @@ -571,7 +571,7 @@ } }, { - "id": 9780, + "id": 11500, "properties": { "facing": "west", "half": "upper", @@ -581,7 +581,7 @@ } }, { - "id": 9781, + "id": 11501, "properties": { "facing": "west", "half": "upper", @@ -591,7 +591,7 @@ } }, { - "id": 9782, + "id": 11502, "properties": { "facing": "west", "half": "upper", @@ -601,7 +601,7 @@ } }, { - "id": 9783, + "id": 11503, "properties": { "facing": "west", "half": "upper", @@ -611,7 +611,7 @@ } }, { - "id": 9784, + "id": 11504, "properties": { "facing": "west", "half": "upper", @@ -621,7 +621,7 @@ } }, { - "id": 9785, + "id": 11505, "properties": { "facing": "west", "half": "upper", @@ -631,7 +631,7 @@ } }, { - "id": 9786, + "id": 11506, "properties": { "facing": "west", "half": "upper", @@ -641,7 +641,7 @@ } }, { - "id": 9787, + "id": 11507, "properties": { "facing": "west", "half": "lower", @@ -651,7 +651,7 @@ } }, { - "id": 9788, + "id": 11508, "properties": { "facing": "west", "half": "lower", @@ -661,7 +661,7 @@ } }, { - "id": 9789, + "id": 11509, "properties": { "facing": "west", "half": "lower", @@ -671,7 +671,7 @@ } }, { - "id": 9790, + "id": 11510, "properties": { "facing": "west", "half": "lower", @@ -681,7 +681,7 @@ } }, { - "id": 9791, + "id": 11511, "properties": { "facing": "west", "half": "lower", @@ -691,7 +691,7 @@ } }, { - "id": 9792, + "id": 11512, "properties": { "facing": "west", "half": "lower", @@ -701,7 +701,7 @@ } }, { - "id": 9793, + "id": 11513, "properties": { "facing": "west", "half": "lower", @@ -711,7 +711,7 @@ } }, { - "id": 9794, + "id": 11514, "properties": { "facing": "west", "half": "lower", @@ -721,7 +721,7 @@ } }, { - "id": 9795, + "id": 11515, "properties": { "facing": "east", "half": "upper", @@ -731,7 +731,7 @@ } }, { - "id": 9796, + "id": 11516, "properties": { "facing": "east", "half": "upper", @@ -741,7 +741,7 @@ } }, { - "id": 9797, + "id": 11517, "properties": { "facing": "east", "half": "upper", @@ -751,7 +751,7 @@ } }, { - "id": 9798, + "id": 11518, "properties": { "facing": "east", "half": "upper", @@ -761,7 +761,7 @@ } }, { - "id": 9799, + "id": 11519, "properties": { "facing": "east", "half": "upper", @@ -771,7 +771,7 @@ } }, { - "id": 9800, + "id": 11520, "properties": { "facing": "east", "half": "upper", @@ -781,7 +781,7 @@ } }, { - "id": 9801, + "id": 11521, "properties": { "facing": "east", "half": "upper", @@ -791,7 +791,7 @@ } }, { - "id": 9802, + "id": 11522, "properties": { "facing": "east", "half": "upper", @@ -801,7 +801,7 @@ } }, { - "id": 9803, + "id": 11523, "properties": { "facing": "east", "half": "lower", @@ -811,7 +811,7 @@ } }, { - "id": 9804, + "id": 11524, "properties": { "facing": "east", "half": "lower", @@ -821,7 +821,7 @@ } }, { - "id": 9805, + "id": 11525, "properties": { "facing": "east", "half": "lower", @@ -831,7 +831,7 @@ } }, { - "id": 9806, + "id": 11526, "properties": { "facing": "east", "half": "lower", @@ -841,7 +841,7 @@ } }, { - "id": 9807, + "id": 11527, "properties": { "facing": "east", "half": "lower", @@ -851,7 +851,7 @@ } }, { - "id": 9808, + "id": 11528, "properties": { "facing": "east", "half": "lower", @@ -861,7 +861,7 @@ } }, { - "id": 9809, + "id": 11529, "properties": { "facing": "east", "half": "lower", @@ -871,7 +871,7 @@ } }, { - "id": 9810, + "id": 11530, "properties": { "facing": "east", "half": "lower", @@ -907,7 +907,7 @@ }, "states": [ { - "id": 9459, + "id": 11147, "properties": { "east": "true", "north": "true", @@ -917,7 +917,7 @@ } }, { - "id": 9460, + "id": 11148, "properties": { "east": "true", "north": "true", @@ -927,7 +927,7 @@ } }, { - "id": 9461, + "id": 11149, "properties": { "east": "true", "north": "true", @@ -937,7 +937,7 @@ } }, { - "id": 9462, + "id": 11150, "properties": { "east": "true", "north": "true", @@ -947,7 +947,7 @@ } }, { - "id": 9463, + "id": 11151, "properties": { "east": "true", "north": "true", @@ -957,7 +957,7 @@ } }, { - "id": 9464, + "id": 11152, "properties": { "east": "true", "north": "true", @@ -967,7 +967,7 @@ } }, { - "id": 9465, + "id": 11153, "properties": { "east": "true", "north": "true", @@ -977,7 +977,7 @@ } }, { - "id": 9466, + "id": 11154, "properties": { "east": "true", "north": "true", @@ -987,7 +987,7 @@ } }, { - "id": 9467, + "id": 11155, "properties": { "east": "true", "north": "false", @@ -997,7 +997,7 @@ } }, { - "id": 9468, + "id": 11156, "properties": { "east": "true", "north": "false", @@ -1007,7 +1007,7 @@ } }, { - "id": 9469, + "id": 11157, "properties": { "east": "true", "north": "false", @@ -1017,7 +1017,7 @@ } }, { - "id": 9470, + "id": 11158, "properties": { "east": "true", "north": "false", @@ -1027,7 +1027,7 @@ } }, { - "id": 9471, + "id": 11159, "properties": { "east": "true", "north": "false", @@ -1037,7 +1037,7 @@ } }, { - "id": 9472, + "id": 11160, "properties": { "east": "true", "north": "false", @@ -1047,7 +1047,7 @@ } }, { - "id": 9473, + "id": 11161, "properties": { "east": "true", "north": "false", @@ -1057,7 +1057,7 @@ } }, { - "id": 9474, + "id": 11162, "properties": { "east": "true", "north": "false", @@ -1067,7 +1067,7 @@ } }, { - "id": 9475, + "id": 11163, "properties": { "east": "false", "north": "true", @@ -1077,7 +1077,7 @@ } }, { - "id": 9476, + "id": 11164, "properties": { "east": "false", "north": "true", @@ -1087,7 +1087,7 @@ } }, { - "id": 9477, + "id": 11165, "properties": { "east": "false", "north": "true", @@ -1097,7 +1097,7 @@ } }, { - "id": 9478, + "id": 11166, "properties": { "east": "false", "north": "true", @@ -1107,7 +1107,7 @@ } }, { - "id": 9479, + "id": 11167, "properties": { "east": "false", "north": "true", @@ -1117,7 +1117,7 @@ } }, { - "id": 9480, + "id": 11168, "properties": { "east": "false", "north": "true", @@ -1127,7 +1127,7 @@ } }, { - "id": 9481, + "id": 11169, "properties": { "east": "false", "north": "true", @@ -1137,7 +1137,7 @@ } }, { - "id": 9482, + "id": 11170, "properties": { "east": "false", "north": "true", @@ -1147,7 +1147,7 @@ } }, { - "id": 9483, + "id": 11171, "properties": { "east": "false", "north": "false", @@ -1157,7 +1157,7 @@ } }, { - "id": 9484, + "id": 11172, "properties": { "east": "false", "north": "false", @@ -1167,7 +1167,7 @@ } }, { - "id": 9485, + "id": 11173, "properties": { "east": "false", "north": "false", @@ -1177,7 +1177,7 @@ } }, { - "id": 9486, + "id": 11174, "properties": { "east": "false", "north": "false", @@ -1187,7 +1187,7 @@ } }, { - "id": 9487, + "id": 11175, "properties": { "east": "false", "north": "false", @@ -1197,7 +1197,7 @@ } }, { - "id": 9488, + "id": 11176, "properties": { "east": "false", "north": "false", @@ -1207,7 +1207,7 @@ } }, { - "id": 9489, + "id": 11177, "properties": { "east": "false", "north": "false", @@ -1218,7 +1218,7 @@ }, { "default": true, - "id": 9490, + "id": 11178, "properties": { "east": "false", "north": "false", @@ -1252,7 +1252,7 @@ }, "states": [ { - "id": 9267, + "id": 10923, "properties": { "facing": "north", "in_wall": "true", @@ -1261,7 +1261,7 @@ } }, { - "id": 9268, + "id": 10924, "properties": { "facing": "north", "in_wall": "true", @@ -1270,7 +1270,7 @@ } }, { - "id": 9269, + "id": 10925, "properties": { "facing": "north", "in_wall": "true", @@ -1279,7 +1279,7 @@ } }, { - "id": 9270, + "id": 10926, "properties": { "facing": "north", "in_wall": "true", @@ -1288,7 +1288,7 @@ } }, { - "id": 9271, + "id": 10927, "properties": { "facing": "north", "in_wall": "false", @@ -1297,7 +1297,7 @@ } }, { - "id": 9272, + "id": 10928, "properties": { "facing": "north", "in_wall": "false", @@ -1306,7 +1306,7 @@ } }, { - "id": 9273, + "id": 10929, "properties": { "facing": "north", "in_wall": "false", @@ -1316,7 +1316,7 @@ }, { "default": true, - "id": 9274, + "id": 10930, "properties": { "facing": "north", "in_wall": "false", @@ -1325,7 +1325,7 @@ } }, { - "id": 9275, + "id": 10931, "properties": { "facing": "south", "in_wall": "true", @@ -1334,7 +1334,7 @@ } }, { - "id": 9276, + "id": 10932, "properties": { "facing": "south", "in_wall": "true", @@ -1343,7 +1343,7 @@ } }, { - "id": 9277, + "id": 10933, "properties": { "facing": "south", "in_wall": "true", @@ -1352,7 +1352,7 @@ } }, { - "id": 9278, + "id": 10934, "properties": { "facing": "south", "in_wall": "true", @@ -1361,7 +1361,7 @@ } }, { - "id": 9279, + "id": 10935, "properties": { "facing": "south", "in_wall": "false", @@ -1370,7 +1370,7 @@ } }, { - "id": 9280, + "id": 10936, "properties": { "facing": "south", "in_wall": "false", @@ -1379,7 +1379,7 @@ } }, { - "id": 9281, + "id": 10937, "properties": { "facing": "south", "in_wall": "false", @@ -1388,7 +1388,7 @@ } }, { - "id": 9282, + "id": 10938, "properties": { "facing": "south", "in_wall": "false", @@ -1397,7 +1397,7 @@ } }, { - "id": 9283, + "id": 10939, "properties": { "facing": "west", "in_wall": "true", @@ -1406,7 +1406,7 @@ } }, { - "id": 9284, + "id": 10940, "properties": { "facing": "west", "in_wall": "true", @@ -1415,7 +1415,7 @@ } }, { - "id": 9285, + "id": 10941, "properties": { "facing": "west", "in_wall": "true", @@ -1424,7 +1424,7 @@ } }, { - "id": 9286, + "id": 10942, "properties": { "facing": "west", "in_wall": "true", @@ -1433,7 +1433,7 @@ } }, { - "id": 9287, + "id": 10943, "properties": { "facing": "west", "in_wall": "false", @@ -1442,7 +1442,7 @@ } }, { - "id": 9288, + "id": 10944, "properties": { "facing": "west", "in_wall": "false", @@ -1451,7 +1451,7 @@ } }, { - "id": 9289, + "id": 10945, "properties": { "facing": "west", "in_wall": "false", @@ -1460,7 +1460,7 @@ } }, { - "id": 9290, + "id": 10946, "properties": { "facing": "west", "in_wall": "false", @@ -1469,7 +1469,7 @@ } }, { - "id": 9291, + "id": 10947, "properties": { "facing": "east", "in_wall": "true", @@ -1478,7 +1478,7 @@ } }, { - "id": 9292, + "id": 10948, "properties": { "facing": "east", "in_wall": "true", @@ -1487,7 +1487,7 @@ } }, { - "id": 9293, + "id": 10949, "properties": { "facing": "east", "in_wall": "true", @@ -1496,7 +1496,7 @@ } }, { - "id": 9294, + "id": 10950, "properties": { "facing": "east", "in_wall": "true", @@ -1505,7 +1505,7 @@ } }, { - "id": 9295, + "id": 10951, "properties": { "facing": "east", "in_wall": "false", @@ -1514,7 +1514,7 @@ } }, { - "id": 9296, + "id": 10952, "properties": { "facing": "east", "in_wall": "false", @@ -1523,7 +1523,7 @@ } }, { - "id": 9297, + "id": 10953, "properties": { "facing": "east", "in_wall": "false", @@ -1532,7 +1532,7 @@ } }, { - "id": 9298, + "id": 10954, "properties": { "facing": "east", "in_wall": "false", @@ -1542,6 +1542,551 @@ } ] }, + "minecraft:acacia_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4934, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 4935, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4936, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4937, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4938, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4939, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4940, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4941, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4942, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4943, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4944, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4945, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4946, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4947, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4948, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4949, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4950, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4951, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4952, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4953, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4954, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4955, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4956, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4957, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4958, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4959, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4960, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4961, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4962, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4963, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4964, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4965, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 4966, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4967, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4968, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4969, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4970, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4971, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4972, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4973, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4974, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4975, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4976, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4977, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4978, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4979, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4980, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4981, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4982, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4983, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4984, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4985, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4986, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4987, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4988, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4989, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4990, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4991, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4992, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4993, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4994, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4995, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4996, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4997, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, "minecraft:acacia_leaves": { "properties": { "distance": [ @@ -1563,74 +2108,10 @@ ] }, "states": [ - { - "id": 318, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 319, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 320, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 321, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 322, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 323, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 324, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 325, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, { "id": 326, "properties": { - "distance": "3", + "distance": "1", "persistent": "true", "waterlogged": "true" } @@ -1638,7 +2119,7 @@ { "id": 327, "properties": { - "distance": "3", + "distance": "1", "persistent": "true", "waterlogged": "false" } @@ -1646,7 +2127,7 @@ { "id": 328, "properties": { - "distance": "3", + "distance": "1", "persistent": "false", "waterlogged": "true" } @@ -1654,7 +2135,7 @@ { "id": 329, "properties": { - "distance": "3", + "distance": "1", "persistent": "false", "waterlogged": "false" } @@ -1662,7 +2143,7 @@ { "id": 330, "properties": { - "distance": "4", + "distance": "2", "persistent": "true", "waterlogged": "true" } @@ -1670,7 +2151,7 @@ { "id": 331, "properties": { - "distance": "4", + "distance": "2", "persistent": "true", "waterlogged": "false" } @@ -1678,7 +2159,7 @@ { "id": 332, "properties": { - "distance": "4", + "distance": "2", "persistent": "false", "waterlogged": "true" } @@ -1686,7 +2167,7 @@ { "id": 333, "properties": { - "distance": "4", + "distance": "2", "persistent": "false", "waterlogged": "false" } @@ -1694,7 +2175,7 @@ { "id": 334, "properties": { - "distance": "5", + "distance": "3", "persistent": "true", "waterlogged": "true" } @@ -1702,7 +2183,7 @@ { "id": 335, "properties": { - "distance": "5", + "distance": "3", "persistent": "true", "waterlogged": "false" } @@ -1710,7 +2191,7 @@ { "id": 336, "properties": { - "distance": "5", + "distance": "3", "persistent": "false", "waterlogged": "true" } @@ -1718,7 +2199,7 @@ { "id": 337, "properties": { - "distance": "5", + "distance": "3", "persistent": "false", "waterlogged": "false" } @@ -1726,7 +2207,7 @@ { "id": 338, "properties": { - "distance": "6", + "distance": "4", "persistent": "true", "waterlogged": "true" } @@ -1734,7 +2215,7 @@ { "id": 339, "properties": { - "distance": "6", + "distance": "4", "persistent": "true", "waterlogged": "false" } @@ -1742,7 +2223,7 @@ { "id": 340, "properties": { - "distance": "6", + "distance": "4", "persistent": "false", "waterlogged": "true" } @@ -1750,7 +2231,7 @@ { "id": 341, "properties": { - "distance": "6", + "distance": "4", "persistent": "false", "waterlogged": "false" } @@ -1758,7 +2239,7 @@ { "id": 342, "properties": { - "distance": "7", + "distance": "5", "persistent": "true", "waterlogged": "true" } @@ -1766,13 +2247,77 @@ { "id": 343, "properties": { - "distance": "7", + "distance": "5", "persistent": "true", "waterlogged": "false" } }, { "id": 344, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 345, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 346, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 347, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 348, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 349, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 350, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 351, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 352, "properties": { "distance": "7", "persistent": "false", @@ -1781,7 +2326,7 @@ }, { "default": true, - "id": 345, + "id": 353, "properties": { "distance": "7", "persistent": "false", @@ -1800,20 +2345,20 @@ }, "states": [ { - "id": 129, + "id": 131, "properties": { "axis": "x" } }, { "default": true, - "id": 130, + "id": 132, "properties": { "axis": "y" } }, { - "id": 131, + "id": 133, "properties": { "axis": "z" } @@ -1837,14 +2382,14 @@ }, "states": [ { - "id": 4186, + "id": 5560, "properties": { "powered": "true" } }, { "default": true, - "id": 4187, + "id": 5561, "properties": { "powered": "false" } @@ -1861,13 +2406,13 @@ "states": [ { "default": true, - "id": 30, + "id": 32, "properties": { "stage": "0" } }, { - "id": 31, + "id": 33, "properties": { "stage": "1" } @@ -1901,7 +2446,7 @@ }, "states": [ { - "id": 3732, + "id": 4346, "properties": { "rotation": "0", "waterlogged": "true" @@ -1909,217 +2454,217 @@ }, { "default": true, - "id": 3733, + "id": 4347, "properties": { "rotation": "0", "waterlogged": "false" } }, { - "id": 3734, + "id": 4348, "properties": { "rotation": "1", "waterlogged": "true" } }, { - "id": 3735, + "id": 4349, "properties": { "rotation": "1", "waterlogged": "false" } }, { - "id": 3736, + "id": 4350, "properties": { "rotation": "2", "waterlogged": "true" } }, { - "id": 3737, + "id": 4351, "properties": { "rotation": "2", "waterlogged": "false" } }, { - "id": 3738, + "id": 4352, "properties": { "rotation": "3", "waterlogged": "true" } }, { - "id": 3739, + "id": 4353, "properties": { "rotation": "3", "waterlogged": "false" } }, { - "id": 3740, + "id": 4354, "properties": { "rotation": "4", "waterlogged": "true" } }, { - "id": 3741, + "id": 4355, "properties": { "rotation": "4", "waterlogged": "false" } }, { - "id": 3742, + "id": 4356, "properties": { "rotation": "5", "waterlogged": "true" } }, { - "id": 3743, + "id": 4357, "properties": { "rotation": "5", "waterlogged": "false" } }, { - "id": 3744, + "id": 4358, "properties": { "rotation": "6", "waterlogged": "true" } }, { - "id": 3745, + "id": 4359, "properties": { "rotation": "6", "waterlogged": "false" } }, { - "id": 3746, + "id": 4360, "properties": { "rotation": "7", "waterlogged": "true" } }, { - "id": 3747, + "id": 4361, "properties": { "rotation": "7", "waterlogged": "false" } }, { - "id": 3748, + "id": 4362, "properties": { "rotation": "8", "waterlogged": "true" } }, { - "id": 3749, + "id": 4363, "properties": { "rotation": "8", "waterlogged": "false" } }, { - "id": 3750, + "id": 4364, "properties": { "rotation": "9", "waterlogged": "true" } }, { - "id": 3751, + "id": 4365, "properties": { "rotation": "9", "waterlogged": "false" } }, { - "id": 3752, + "id": 4366, "properties": { "rotation": "10", "waterlogged": "true" } }, { - "id": 3753, + "id": 4367, "properties": { "rotation": "10", "waterlogged": "false" } }, { - "id": 3754, + "id": 4368, "properties": { "rotation": "11", "waterlogged": "true" } }, { - "id": 3755, + "id": 4369, "properties": { "rotation": "11", "waterlogged": "false" } }, { - "id": 3756, + "id": 4370, "properties": { "rotation": "12", "waterlogged": "true" } }, { - "id": 3757, + "id": 4371, "properties": { "rotation": "12", "waterlogged": "false" } }, { - "id": 3758, + "id": 4372, "properties": { "rotation": "13", "waterlogged": "true" } }, { - "id": 3759, + "id": 4373, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 3760, + "id": 4374, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 3761, + "id": 4375, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 3762, + "id": 4376, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 3763, + "id": 4377, "properties": { "rotation": "15", "waterlogged": "false" @@ -2141,21 +2686,21 @@ }, "states": [ { - "id": 9065, + "id": 10709, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 9066, + "id": 10710, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 9067, + "id": 10711, "properties": { "type": "bottom", "waterlogged": "true" @@ -2163,21 +2708,21 @@ }, { "default": true, - "id": 9068, + "id": 10712, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 9069, + "id": 10713, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 9070, + "id": 10714, "properties": { "type": "double", "waterlogged": "false" @@ -2211,7 +2756,7 @@ }, "states": [ { - "id": 8004, + "id": 9488, "properties": { "facing": "north", "half": "top", @@ -2220,7 +2765,7 @@ } }, { - "id": 8005, + "id": 9489, "properties": { "facing": "north", "half": "top", @@ -2229,7 +2774,7 @@ } }, { - "id": 8006, + "id": 9490, "properties": { "facing": "north", "half": "top", @@ -2238,7 +2783,7 @@ } }, { - "id": 8007, + "id": 9491, "properties": { "facing": "north", "half": "top", @@ -2247,7 +2792,7 @@ } }, { - "id": 8008, + "id": 9492, "properties": { "facing": "north", "half": "top", @@ -2256,7 +2801,7 @@ } }, { - "id": 8009, + "id": 9493, "properties": { "facing": "north", "half": "top", @@ -2265,7 +2810,7 @@ } }, { - "id": 8010, + "id": 9494, "properties": { "facing": "north", "half": "top", @@ -2274,7 +2819,7 @@ } }, { - "id": 8011, + "id": 9495, "properties": { "facing": "north", "half": "top", @@ -2283,7 +2828,7 @@ } }, { - "id": 8012, + "id": 9496, "properties": { "facing": "north", "half": "top", @@ -2292,7 +2837,7 @@ } }, { - "id": 8013, + "id": 9497, "properties": { "facing": "north", "half": "top", @@ -2301,7 +2846,7 @@ } }, { - "id": 8014, + "id": 9498, "properties": { "facing": "north", "half": "bottom", @@ -2311,7 +2856,7 @@ }, { "default": true, - "id": 8015, + "id": 9499, "properties": { "facing": "north", "half": "bottom", @@ -2320,7 +2865,7 @@ } }, { - "id": 8016, + "id": 9500, "properties": { "facing": "north", "half": "bottom", @@ -2329,7 +2874,7 @@ } }, { - "id": 8017, + "id": 9501, "properties": { "facing": "north", "half": "bottom", @@ -2338,7 +2883,7 @@ } }, { - "id": 8018, + "id": 9502, "properties": { "facing": "north", "half": "bottom", @@ -2347,7 +2892,7 @@ } }, { - "id": 8019, + "id": 9503, "properties": { "facing": "north", "half": "bottom", @@ -2356,7 +2901,7 @@ } }, { - "id": 8020, + "id": 9504, "properties": { "facing": "north", "half": "bottom", @@ -2365,7 +2910,7 @@ } }, { - "id": 8021, + "id": 9505, "properties": { "facing": "north", "half": "bottom", @@ -2374,7 +2919,7 @@ } }, { - "id": 8022, + "id": 9506, "properties": { "facing": "north", "half": "bottom", @@ -2383,7 +2928,7 @@ } }, { - "id": 8023, + "id": 9507, "properties": { "facing": "north", "half": "bottom", @@ -2392,7 +2937,7 @@ } }, { - "id": 8024, + "id": 9508, "properties": { "facing": "south", "half": "top", @@ -2401,7 +2946,7 @@ } }, { - "id": 8025, + "id": 9509, "properties": { "facing": "south", "half": "top", @@ -2410,7 +2955,7 @@ } }, { - "id": 8026, + "id": 9510, "properties": { "facing": "south", "half": "top", @@ -2419,7 +2964,7 @@ } }, { - "id": 8027, + "id": 9511, "properties": { "facing": "south", "half": "top", @@ -2428,7 +2973,7 @@ } }, { - "id": 8028, + "id": 9512, "properties": { "facing": "south", "half": "top", @@ -2437,7 +2982,7 @@ } }, { - "id": 8029, + "id": 9513, "properties": { "facing": "south", "half": "top", @@ -2446,7 +2991,7 @@ } }, { - "id": 8030, + "id": 9514, "properties": { "facing": "south", "half": "top", @@ -2455,7 +3000,7 @@ } }, { - "id": 8031, + "id": 9515, "properties": { "facing": "south", "half": "top", @@ -2464,7 +3009,7 @@ } }, { - "id": 8032, + "id": 9516, "properties": { "facing": "south", "half": "top", @@ -2473,7 +3018,7 @@ } }, { - "id": 8033, + "id": 9517, "properties": { "facing": "south", "half": "top", @@ -2482,7 +3027,7 @@ } }, { - "id": 8034, + "id": 9518, "properties": { "facing": "south", "half": "bottom", @@ -2491,7 +3036,7 @@ } }, { - "id": 8035, + "id": 9519, "properties": { "facing": "south", "half": "bottom", @@ -2500,7 +3045,7 @@ } }, { - "id": 8036, + "id": 9520, "properties": { "facing": "south", "half": "bottom", @@ -2509,7 +3054,7 @@ } }, { - "id": 8037, + "id": 9521, "properties": { "facing": "south", "half": "bottom", @@ -2518,7 +3063,7 @@ } }, { - "id": 8038, + "id": 9522, "properties": { "facing": "south", "half": "bottom", @@ -2527,7 +3072,7 @@ } }, { - "id": 8039, + "id": 9523, "properties": { "facing": "south", "half": "bottom", @@ -2536,7 +3081,7 @@ } }, { - "id": 8040, + "id": 9524, "properties": { "facing": "south", "half": "bottom", @@ -2545,7 +3090,7 @@ } }, { - "id": 8041, + "id": 9525, "properties": { "facing": "south", "half": "bottom", @@ -2554,7 +3099,7 @@ } }, { - "id": 8042, + "id": 9526, "properties": { "facing": "south", "half": "bottom", @@ -2563,7 +3108,7 @@ } }, { - "id": 8043, + "id": 9527, "properties": { "facing": "south", "half": "bottom", @@ -2572,7 +3117,7 @@ } }, { - "id": 8044, + "id": 9528, "properties": { "facing": "west", "half": "top", @@ -2581,7 +3126,7 @@ } }, { - "id": 8045, + "id": 9529, "properties": { "facing": "west", "half": "top", @@ -2590,7 +3135,7 @@ } }, { - "id": 8046, + "id": 9530, "properties": { "facing": "west", "half": "top", @@ -2599,7 +3144,7 @@ } }, { - "id": 8047, + "id": 9531, "properties": { "facing": "west", "half": "top", @@ -2608,7 +3153,7 @@ } }, { - "id": 8048, + "id": 9532, "properties": { "facing": "west", "half": "top", @@ -2617,7 +3162,7 @@ } }, { - "id": 8049, + "id": 9533, "properties": { "facing": "west", "half": "top", @@ -2626,7 +3171,7 @@ } }, { - "id": 8050, + "id": 9534, "properties": { "facing": "west", "half": "top", @@ -2635,7 +3180,7 @@ } }, { - "id": 8051, + "id": 9535, "properties": { "facing": "west", "half": "top", @@ -2644,7 +3189,7 @@ } }, { - "id": 8052, + "id": 9536, "properties": { "facing": "west", "half": "top", @@ -2653,7 +3198,7 @@ } }, { - "id": 8053, + "id": 9537, "properties": { "facing": "west", "half": "top", @@ -2662,7 +3207,7 @@ } }, { - "id": 8054, + "id": 9538, "properties": { "facing": "west", "half": "bottom", @@ -2671,7 +3216,7 @@ } }, { - "id": 8055, + "id": 9539, "properties": { "facing": "west", "half": "bottom", @@ -2680,7 +3225,7 @@ } }, { - "id": 8056, + "id": 9540, "properties": { "facing": "west", "half": "bottom", @@ -2689,7 +3234,7 @@ } }, { - "id": 8057, + "id": 9541, "properties": { "facing": "west", "half": "bottom", @@ -2698,7 +3243,7 @@ } }, { - "id": 8058, + "id": 9542, "properties": { "facing": "west", "half": "bottom", @@ -2707,7 +3252,7 @@ } }, { - "id": 8059, + "id": 9543, "properties": { "facing": "west", "half": "bottom", @@ -2716,7 +3261,7 @@ } }, { - "id": 8060, + "id": 9544, "properties": { "facing": "west", "half": "bottom", @@ -2725,7 +3270,7 @@ } }, { - "id": 8061, + "id": 9545, "properties": { "facing": "west", "half": "bottom", @@ -2734,7 +3279,7 @@ } }, { - "id": 8062, + "id": 9546, "properties": { "facing": "west", "half": "bottom", @@ -2743,7 +3288,7 @@ } }, { - "id": 8063, + "id": 9547, "properties": { "facing": "west", "half": "bottom", @@ -2752,7 +3297,7 @@ } }, { - "id": 8064, + "id": 9548, "properties": { "facing": "east", "half": "top", @@ -2761,7 +3306,7 @@ } }, { - "id": 8065, + "id": 9549, "properties": { "facing": "east", "half": "top", @@ -2770,7 +3315,7 @@ } }, { - "id": 8066, + "id": 9550, "properties": { "facing": "east", "half": "top", @@ -2779,7 +3324,7 @@ } }, { - "id": 8067, + "id": 9551, "properties": { "facing": "east", "half": "top", @@ -2788,7 +3333,7 @@ } }, { - "id": 8068, + "id": 9552, "properties": { "facing": "east", "half": "top", @@ -2797,7 +3342,7 @@ } }, { - "id": 8069, + "id": 9553, "properties": { "facing": "east", "half": "top", @@ -2806,7 +3351,7 @@ } }, { - "id": 8070, + "id": 9554, "properties": { "facing": "east", "half": "top", @@ -2815,7 +3360,7 @@ } }, { - "id": 8071, + "id": 9555, "properties": { "facing": "east", "half": "top", @@ -2824,7 +3369,7 @@ } }, { - "id": 8072, + "id": 9556, "properties": { "facing": "east", "half": "top", @@ -2833,7 +3378,7 @@ } }, { - "id": 8073, + "id": 9557, "properties": { "facing": "east", "half": "top", @@ -2842,7 +3387,7 @@ } }, { - "id": 8074, + "id": 9558, "properties": { "facing": "east", "half": "bottom", @@ -2851,7 +3396,7 @@ } }, { - "id": 8075, + "id": 9559, "properties": { "facing": "east", "half": "bottom", @@ -2860,7 +3405,7 @@ } }, { - "id": 8076, + "id": 9560, "properties": { "facing": "east", "half": "bottom", @@ -2869,7 +3414,7 @@ } }, { - "id": 8077, + "id": 9561, "properties": { "facing": "east", "half": "bottom", @@ -2878,7 +3423,7 @@ } }, { - "id": 8078, + "id": 9562, "properties": { "facing": "east", "half": "bottom", @@ -2887,7 +3432,7 @@ } }, { - "id": 8079, + "id": 9563, "properties": { "facing": "east", "half": "bottom", @@ -2896,7 +3441,7 @@ } }, { - "id": 8080, + "id": 9564, "properties": { "facing": "east", "half": "bottom", @@ -2905,7 +3450,7 @@ } }, { - "id": 8081, + "id": 9565, "properties": { "facing": "east", "half": "bottom", @@ -2914,7 +3459,7 @@ } }, { - "id": 8082, + "id": 9566, "properties": { "facing": "east", "half": "bottom", @@ -2923,7 +3468,7 @@ } }, { - "id": 8083, + "id": 9567, "properties": { "facing": "east", "half": "bottom", @@ -2960,7 +3505,7 @@ }, "states": [ { - "id": 4676, + "id": 6052, "properties": { "facing": "north", "half": "top", @@ -2970,7 +3515,7 @@ } }, { - "id": 4677, + "id": 6053, "properties": { "facing": "north", "half": "top", @@ -2980,7 +3525,7 @@ } }, { - "id": 4678, + "id": 6054, "properties": { "facing": "north", "half": "top", @@ -2990,7 +3535,7 @@ } }, { - "id": 4679, + "id": 6055, "properties": { "facing": "north", "half": "top", @@ -3000,7 +3545,7 @@ } }, { - "id": 4680, + "id": 6056, "properties": { "facing": "north", "half": "top", @@ -3010,7 +3555,7 @@ } }, { - "id": 4681, + "id": 6057, "properties": { "facing": "north", "half": "top", @@ -3020,7 +3565,7 @@ } }, { - "id": 4682, + "id": 6058, "properties": { "facing": "north", "half": "top", @@ -3030,7 +3575,7 @@ } }, { - "id": 4683, + "id": 6059, "properties": { "facing": "north", "half": "top", @@ -3040,7 +3585,7 @@ } }, { - "id": 4684, + "id": 6060, "properties": { "facing": "north", "half": "bottom", @@ -3050,7 +3595,7 @@ } }, { - "id": 4685, + "id": 6061, "properties": { "facing": "north", "half": "bottom", @@ -3060,7 +3605,7 @@ } }, { - "id": 4686, + "id": 6062, "properties": { "facing": "north", "half": "bottom", @@ -3070,7 +3615,7 @@ } }, { - "id": 4687, + "id": 6063, "properties": { "facing": "north", "half": "bottom", @@ -3080,7 +3625,7 @@ } }, { - "id": 4688, + "id": 6064, "properties": { "facing": "north", "half": "bottom", @@ -3090,7 +3635,7 @@ } }, { - "id": 4689, + "id": 6065, "properties": { "facing": "north", "half": "bottom", @@ -3100,7 +3645,7 @@ } }, { - "id": 4690, + "id": 6066, "properties": { "facing": "north", "half": "bottom", @@ -3111,7 +3656,7 @@ }, { "default": true, - "id": 4691, + "id": 6067, "properties": { "facing": "north", "half": "bottom", @@ -3121,7 +3666,7 @@ } }, { - "id": 4692, + "id": 6068, "properties": { "facing": "south", "half": "top", @@ -3131,7 +3676,7 @@ } }, { - "id": 4693, + "id": 6069, "properties": { "facing": "south", "half": "top", @@ -3141,7 +3686,7 @@ } }, { - "id": 4694, + "id": 6070, "properties": { "facing": "south", "half": "top", @@ -3151,7 +3696,7 @@ } }, { - "id": 4695, + "id": 6071, "properties": { "facing": "south", "half": "top", @@ -3161,7 +3706,7 @@ } }, { - "id": 4696, + "id": 6072, "properties": { "facing": "south", "half": "top", @@ -3171,7 +3716,7 @@ } }, { - "id": 4697, + "id": 6073, "properties": { "facing": "south", "half": "top", @@ -3181,7 +3726,7 @@ } }, { - "id": 4698, + "id": 6074, "properties": { "facing": "south", "half": "top", @@ -3191,7 +3736,7 @@ } }, { - "id": 4699, + "id": 6075, "properties": { "facing": "south", "half": "top", @@ -3201,7 +3746,7 @@ } }, { - "id": 4700, + "id": 6076, "properties": { "facing": "south", "half": "bottom", @@ -3211,7 +3756,7 @@ } }, { - "id": 4701, + "id": 6077, "properties": { "facing": "south", "half": "bottom", @@ -3221,7 +3766,7 @@ } }, { - "id": 4702, + "id": 6078, "properties": { "facing": "south", "half": "bottom", @@ -3231,7 +3776,7 @@ } }, { - "id": 4703, + "id": 6079, "properties": { "facing": "south", "half": "bottom", @@ -3241,7 +3786,7 @@ } }, { - "id": 4704, + "id": 6080, "properties": { "facing": "south", "half": "bottom", @@ -3251,7 +3796,7 @@ } }, { - "id": 4705, + "id": 6081, "properties": { "facing": "south", "half": "bottom", @@ -3261,7 +3806,7 @@ } }, { - "id": 4706, + "id": 6082, "properties": { "facing": "south", "half": "bottom", @@ -3271,7 +3816,7 @@ } }, { - "id": 4707, + "id": 6083, "properties": { "facing": "south", "half": "bottom", @@ -3281,7 +3826,7 @@ } }, { - "id": 4708, + "id": 6084, "properties": { "facing": "west", "half": "top", @@ -3291,7 +3836,7 @@ } }, { - "id": 4709, + "id": 6085, "properties": { "facing": "west", "half": "top", @@ -3301,7 +3846,7 @@ } }, { - "id": 4710, + "id": 6086, "properties": { "facing": "west", "half": "top", @@ -3311,7 +3856,7 @@ } }, { - "id": 4711, + "id": 6087, "properties": { "facing": "west", "half": "top", @@ -3321,7 +3866,7 @@ } }, { - "id": 4712, + "id": 6088, "properties": { "facing": "west", "half": "top", @@ -3331,7 +3876,7 @@ } }, { - "id": 4713, + "id": 6089, "properties": { "facing": "west", "half": "top", @@ -3341,7 +3886,7 @@ } }, { - "id": 4714, + "id": 6090, "properties": { "facing": "west", "half": "top", @@ -3351,7 +3896,7 @@ } }, { - "id": 4715, + "id": 6091, "properties": { "facing": "west", "half": "top", @@ -3361,7 +3906,7 @@ } }, { - "id": 4716, + "id": 6092, "properties": { "facing": "west", "half": "bottom", @@ -3371,7 +3916,7 @@ } }, { - "id": 4717, + "id": 6093, "properties": { "facing": "west", "half": "bottom", @@ -3381,7 +3926,7 @@ } }, { - "id": 4718, + "id": 6094, "properties": { "facing": "west", "half": "bottom", @@ -3391,7 +3936,7 @@ } }, { - "id": 4719, + "id": 6095, "properties": { "facing": "west", "half": "bottom", @@ -3401,7 +3946,7 @@ } }, { - "id": 4720, + "id": 6096, "properties": { "facing": "west", "half": "bottom", @@ -3411,7 +3956,7 @@ } }, { - "id": 4721, + "id": 6097, "properties": { "facing": "west", "half": "bottom", @@ -3421,7 +3966,7 @@ } }, { - "id": 4722, + "id": 6098, "properties": { "facing": "west", "half": "bottom", @@ -3431,7 +3976,7 @@ } }, { - "id": 4723, + "id": 6099, "properties": { "facing": "west", "half": "bottom", @@ -3441,7 +3986,7 @@ } }, { - "id": 4724, + "id": 6100, "properties": { "facing": "east", "half": "top", @@ -3451,7 +3996,7 @@ } }, { - "id": 4725, + "id": 6101, "properties": { "facing": "east", "half": "top", @@ -3461,7 +4006,7 @@ } }, { - "id": 4726, + "id": 6102, "properties": { "facing": "east", "half": "top", @@ -3471,7 +4016,7 @@ } }, { - "id": 4727, + "id": 6103, "properties": { "facing": "east", "half": "top", @@ -3481,7 +4026,7 @@ } }, { - "id": 4728, + "id": 6104, "properties": { "facing": "east", "half": "top", @@ -3491,7 +4036,7 @@ } }, { - "id": 4729, + "id": 6105, "properties": { "facing": "east", "half": "top", @@ -3501,7 +4046,7 @@ } }, { - "id": 4730, + "id": 6106, "properties": { "facing": "east", "half": "top", @@ -3511,7 +4056,7 @@ } }, { - "id": 4731, + "id": 6107, "properties": { "facing": "east", "half": "top", @@ -3521,7 +4066,7 @@ } }, { - "id": 4732, + "id": 6108, "properties": { "facing": "east", "half": "bottom", @@ -3531,7 +4076,7 @@ } }, { - "id": 4733, + "id": 6109, "properties": { "facing": "east", "half": "bottom", @@ -3541,7 +4086,7 @@ } }, { - "id": 4734, + "id": 6110, "properties": { "facing": "east", "half": "bottom", @@ -3551,7 +4096,7 @@ } }, { - "id": 4735, + "id": 6111, "properties": { "facing": "east", "half": "bottom", @@ -3561,7 +4106,7 @@ } }, { - "id": 4736, + "id": 6112, "properties": { "facing": "east", "half": "bottom", @@ -3571,7 +4116,7 @@ } }, { - "id": 4737, + "id": 6113, "properties": { "facing": "east", "half": "bottom", @@ -3581,7 +4126,7 @@ } }, { - "id": 4738, + "id": 6114, "properties": { "facing": "east", "half": "bottom", @@ -3591,7 +4136,7 @@ } }, { - "id": 4739, + "id": 6115, "properties": { "facing": "east", "half": "bottom", @@ -3602,6 +4147,79 @@ } ] }, + "minecraft:acacia_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5406, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5407, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5408, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5409, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5410, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5411, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5412, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5413, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, "minecraft:acacia_wall_sign": { "properties": { "facing": [ @@ -3617,7 +4235,7 @@ }, "states": [ { - "id": 4056, + "id": 4702, "properties": { "facing": "north", "waterlogged": "true" @@ -3625,49 +4243,49 @@ }, { "default": true, - "id": 4057, + "id": 4703, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 4058, + "id": 4704, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 4059, + "id": 4705, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 4060, + "id": 4706, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 4061, + "id": 4707, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 4062, + "id": 4708, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4063, + "id": 4709, "properties": { "facing": "east", "waterlogged": "false" @@ -3685,20 +4303,20 @@ }, "states": [ { - "id": 176, + "id": 184, "properties": { "axis": "x" } }, { "default": true, - "id": 177, + "id": 185, "properties": { "axis": "y" } }, { - "id": 178, + "id": 186, "properties": { "axis": "z" } @@ -3726,7 +4344,7 @@ }, "states": [ { - "id": 7440, + "id": 8924, "properties": { "powered": "true", "shape": "north_south", @@ -3734,7 +4352,7 @@ } }, { - "id": 7441, + "id": 8925, "properties": { "powered": "true", "shape": "north_south", @@ -3742,7 +4360,7 @@ } }, { - "id": 7442, + "id": 8926, "properties": { "powered": "true", "shape": "east_west", @@ -3750,7 +4368,7 @@ } }, { - "id": 7443, + "id": 8927, "properties": { "powered": "true", "shape": "east_west", @@ -3758,7 +4376,7 @@ } }, { - "id": 7444, + "id": 8928, "properties": { "powered": "true", "shape": "ascending_east", @@ -3766,7 +4384,7 @@ } }, { - "id": 7445, + "id": 8929, "properties": { "powered": "true", "shape": "ascending_east", @@ -3774,7 +4392,7 @@ } }, { - "id": 7446, + "id": 8930, "properties": { "powered": "true", "shape": "ascending_west", @@ -3782,7 +4400,7 @@ } }, { - "id": 7447, + "id": 8931, "properties": { "powered": "true", "shape": "ascending_west", @@ -3790,7 +4408,7 @@ } }, { - "id": 7448, + "id": 8932, "properties": { "powered": "true", "shape": "ascending_north", @@ -3798,7 +4416,7 @@ } }, { - "id": 7449, + "id": 8933, "properties": { "powered": "true", "shape": "ascending_north", @@ -3806,7 +4424,7 @@ } }, { - "id": 7450, + "id": 8934, "properties": { "powered": "true", "shape": "ascending_south", @@ -3814,7 +4432,7 @@ } }, { - "id": 7451, + "id": 8935, "properties": { "powered": "true", "shape": "ascending_south", @@ -3822,7 +4440,7 @@ } }, { - "id": 7452, + "id": 8936, "properties": { "powered": "false", "shape": "north_south", @@ -3831,7 +4449,7 @@ }, { "default": true, - "id": 7453, + "id": 8937, "properties": { "powered": "false", "shape": "north_south", @@ -3839,7 +4457,7 @@ } }, { - "id": 7454, + "id": 8938, "properties": { "powered": "false", "shape": "east_west", @@ -3847,7 +4465,7 @@ } }, { - "id": 7455, + "id": 8939, "properties": { "powered": "false", "shape": "east_west", @@ -3855,7 +4473,7 @@ } }, { - "id": 7456, + "id": 8940, "properties": { "powered": "false", "shape": "ascending_east", @@ -3863,7 +4481,7 @@ } }, { - "id": 7457, + "id": 8941, "properties": { "powered": "false", "shape": "ascending_east", @@ -3871,7 +4489,7 @@ } }, { - "id": 7458, + "id": 8942, "properties": { "powered": "false", "shape": "ascending_west", @@ -3879,7 +4497,7 @@ } }, { - "id": 7459, + "id": 8943, "properties": { "powered": "false", "shape": "ascending_west", @@ -3887,7 +4505,7 @@ } }, { - "id": 7460, + "id": 8944, "properties": { "powered": "false", "shape": "ascending_north", @@ -3895,7 +4513,7 @@ } }, { - "id": 7461, + "id": 8945, "properties": { "powered": "false", "shape": "ascending_north", @@ -3903,7 +4521,7 @@ } }, { - "id": 7462, + "id": 8946, "properties": { "powered": "false", "shape": "ascending_south", @@ -3911,7 +4529,7 @@ } }, { - "id": 7463, + "id": 8947, "properties": { "powered": "false", "shape": "ascending_south", @@ -3932,7 +4550,7 @@ "states": [ { "default": true, - "id": 1669 + "id": 2027 } ] }, @@ -3940,7 +4558,7 @@ "states": [ { "default": true, - "id": 18619 + "id": 20403 } ] }, @@ -3961,63 +4579,63 @@ }, "states": [ { - "id": 18621, + "id": 20405, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 18622, + "id": 20406, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 18623, + "id": 20407, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 18624, + "id": 20408, "properties": { "facing": "east", "waterlogged": "false" } }, { - "id": 18625, + "id": 20409, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 18626, + "id": 20410, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 18627, + "id": 20411, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 18628, + "id": 20412, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 18629, + "id": 20413, "properties": { "facing": "up", "waterlogged": "true" @@ -4025,21 +4643,21 @@ }, { "default": true, - "id": 18630, + "id": 20414, "properties": { "facing": "up", "waterlogged": "false" } }, { - "id": 18631, + "id": 20415, "properties": { "facing": "down", "waterlogged": "true" } }, { - "id": 18632, + "id": 20416, "properties": { "facing": "down", "waterlogged": "false" @@ -4051,7 +4669,7 @@ "states": [ { "default": true, - "id": 17036 + "id": 18820 } ] }, @@ -4077,21 +4695,21 @@ }, "states": [ { - "id": 11724, + "id": 13508, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11725, + "id": 13509, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11726, + "id": 13510, "properties": { "type": "bottom", "waterlogged": "true" @@ -4099,21 +4717,21 @@ }, { "default": true, - "id": 11727, + "id": 13511, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11728, + "id": 13512, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11729, + "id": 13513, "properties": { "type": "double", "waterlogged": "false" @@ -4147,7 +4765,7 @@ }, "states": [ { - "id": 11350, + "id": 13134, "properties": { "facing": "north", "half": "top", @@ -4156,7 +4774,7 @@ } }, { - "id": 11351, + "id": 13135, "properties": { "facing": "north", "half": "top", @@ -4165,7 +4783,7 @@ } }, { - "id": 11352, + "id": 13136, "properties": { "facing": "north", "half": "top", @@ -4174,7 +4792,7 @@ } }, { - "id": 11353, + "id": 13137, "properties": { "facing": "north", "half": "top", @@ -4183,7 +4801,7 @@ } }, { - "id": 11354, + "id": 13138, "properties": { "facing": "north", "half": "top", @@ -4192,7 +4810,7 @@ } }, { - "id": 11355, + "id": 13139, "properties": { "facing": "north", "half": "top", @@ -4201,7 +4819,7 @@ } }, { - "id": 11356, + "id": 13140, "properties": { "facing": "north", "half": "top", @@ -4210,7 +4828,7 @@ } }, { - "id": 11357, + "id": 13141, "properties": { "facing": "north", "half": "top", @@ -4219,7 +4837,7 @@ } }, { - "id": 11358, + "id": 13142, "properties": { "facing": "north", "half": "top", @@ -4228,7 +4846,7 @@ } }, { - "id": 11359, + "id": 13143, "properties": { "facing": "north", "half": "top", @@ -4237,7 +4855,7 @@ } }, { - "id": 11360, + "id": 13144, "properties": { "facing": "north", "half": "bottom", @@ -4247,7 +4865,7 @@ }, { "default": true, - "id": 11361, + "id": 13145, "properties": { "facing": "north", "half": "bottom", @@ -4256,7 +4874,7 @@ } }, { - "id": 11362, + "id": 13146, "properties": { "facing": "north", "half": "bottom", @@ -4265,7 +4883,7 @@ } }, { - "id": 11363, + "id": 13147, "properties": { "facing": "north", "half": "bottom", @@ -4274,7 +4892,7 @@ } }, { - "id": 11364, + "id": 13148, "properties": { "facing": "north", "half": "bottom", @@ -4283,7 +4901,7 @@ } }, { - "id": 11365, + "id": 13149, "properties": { "facing": "north", "half": "bottom", @@ -4292,7 +4910,7 @@ } }, { - "id": 11366, + "id": 13150, "properties": { "facing": "north", "half": "bottom", @@ -4301,7 +4919,7 @@ } }, { - "id": 11367, + "id": 13151, "properties": { "facing": "north", "half": "bottom", @@ -4310,7 +4928,7 @@ } }, { - "id": 11368, + "id": 13152, "properties": { "facing": "north", "half": "bottom", @@ -4319,7 +4937,7 @@ } }, { - "id": 11369, + "id": 13153, "properties": { "facing": "north", "half": "bottom", @@ -4328,7 +4946,7 @@ } }, { - "id": 11370, + "id": 13154, "properties": { "facing": "south", "half": "top", @@ -4337,7 +4955,7 @@ } }, { - "id": 11371, + "id": 13155, "properties": { "facing": "south", "half": "top", @@ -4346,7 +4964,7 @@ } }, { - "id": 11372, + "id": 13156, "properties": { "facing": "south", "half": "top", @@ -4355,7 +4973,7 @@ } }, { - "id": 11373, + "id": 13157, "properties": { "facing": "south", "half": "top", @@ -4364,7 +4982,7 @@ } }, { - "id": 11374, + "id": 13158, "properties": { "facing": "south", "half": "top", @@ -4373,7 +4991,7 @@ } }, { - "id": 11375, + "id": 13159, "properties": { "facing": "south", "half": "top", @@ -4382,7 +5000,7 @@ } }, { - "id": 11376, + "id": 13160, "properties": { "facing": "south", "half": "top", @@ -4391,7 +5009,7 @@ } }, { - "id": 11377, + "id": 13161, "properties": { "facing": "south", "half": "top", @@ -4400,7 +5018,7 @@ } }, { - "id": 11378, + "id": 13162, "properties": { "facing": "south", "half": "top", @@ -4409,7 +5027,7 @@ } }, { - "id": 11379, + "id": 13163, "properties": { "facing": "south", "half": "top", @@ -4418,7 +5036,7 @@ } }, { - "id": 11380, + "id": 13164, "properties": { "facing": "south", "half": "bottom", @@ -4427,7 +5045,7 @@ } }, { - "id": 11381, + "id": 13165, "properties": { "facing": "south", "half": "bottom", @@ -4436,7 +5054,7 @@ } }, { - "id": 11382, + "id": 13166, "properties": { "facing": "south", "half": "bottom", @@ -4445,7 +5063,7 @@ } }, { - "id": 11383, + "id": 13167, "properties": { "facing": "south", "half": "bottom", @@ -4454,7 +5072,7 @@ } }, { - "id": 11384, + "id": 13168, "properties": { "facing": "south", "half": "bottom", @@ -4463,7 +5081,7 @@ } }, { - "id": 11385, + "id": 13169, "properties": { "facing": "south", "half": "bottom", @@ -4472,7 +5090,7 @@ } }, { - "id": 11386, + "id": 13170, "properties": { "facing": "south", "half": "bottom", @@ -4481,7 +5099,7 @@ } }, { - "id": 11387, + "id": 13171, "properties": { "facing": "south", "half": "bottom", @@ -4490,7 +5108,7 @@ } }, { - "id": 11388, + "id": 13172, "properties": { "facing": "south", "half": "bottom", @@ -4499,7 +5117,7 @@ } }, { - "id": 11389, + "id": 13173, "properties": { "facing": "south", "half": "bottom", @@ -4508,7 +5126,7 @@ } }, { - "id": 11390, + "id": 13174, "properties": { "facing": "west", "half": "top", @@ -4517,7 +5135,7 @@ } }, { - "id": 11391, + "id": 13175, "properties": { "facing": "west", "half": "top", @@ -4526,7 +5144,7 @@ } }, { - "id": 11392, + "id": 13176, "properties": { "facing": "west", "half": "top", @@ -4535,7 +5153,7 @@ } }, { - "id": 11393, + "id": 13177, "properties": { "facing": "west", "half": "top", @@ -4544,7 +5162,7 @@ } }, { - "id": 11394, + "id": 13178, "properties": { "facing": "west", "half": "top", @@ -4553,7 +5171,7 @@ } }, { - "id": 11395, + "id": 13179, "properties": { "facing": "west", "half": "top", @@ -4562,7 +5180,7 @@ } }, { - "id": 11396, + "id": 13180, "properties": { "facing": "west", "half": "top", @@ -4571,7 +5189,7 @@ } }, { - "id": 11397, + "id": 13181, "properties": { "facing": "west", "half": "top", @@ -4580,7 +5198,7 @@ } }, { - "id": 11398, + "id": 13182, "properties": { "facing": "west", "half": "top", @@ -4589,7 +5207,7 @@ } }, { - "id": 11399, + "id": 13183, "properties": { "facing": "west", "half": "top", @@ -4598,7 +5216,7 @@ } }, { - "id": 11400, + "id": 13184, "properties": { "facing": "west", "half": "bottom", @@ -4607,7 +5225,7 @@ } }, { - "id": 11401, + "id": 13185, "properties": { "facing": "west", "half": "bottom", @@ -4616,7 +5234,7 @@ } }, { - "id": 11402, + "id": 13186, "properties": { "facing": "west", "half": "bottom", @@ -4625,7 +5243,7 @@ } }, { - "id": 11403, + "id": 13187, "properties": { "facing": "west", "half": "bottom", @@ -4634,7 +5252,7 @@ } }, { - "id": 11404, + "id": 13188, "properties": { "facing": "west", "half": "bottom", @@ -4643,7 +5261,7 @@ } }, { - "id": 11405, + "id": 13189, "properties": { "facing": "west", "half": "bottom", @@ -4652,7 +5270,7 @@ } }, { - "id": 11406, + "id": 13190, "properties": { "facing": "west", "half": "bottom", @@ -4661,7 +5279,7 @@ } }, { - "id": 11407, + "id": 13191, "properties": { "facing": "west", "half": "bottom", @@ -4670,7 +5288,7 @@ } }, { - "id": 11408, + "id": 13192, "properties": { "facing": "west", "half": "bottom", @@ -4679,7 +5297,7 @@ } }, { - "id": 11409, + "id": 13193, "properties": { "facing": "west", "half": "bottom", @@ -4688,7 +5306,7 @@ } }, { - "id": 11410, + "id": 13194, "properties": { "facing": "east", "half": "top", @@ -4697,7 +5315,7 @@ } }, { - "id": 11411, + "id": 13195, "properties": { "facing": "east", "half": "top", @@ -4706,7 +5324,7 @@ } }, { - "id": 11412, + "id": 13196, "properties": { "facing": "east", "half": "top", @@ -4715,7 +5333,7 @@ } }, { - "id": 11413, + "id": 13197, "properties": { "facing": "east", "half": "top", @@ -4724,7 +5342,7 @@ } }, { - "id": 11414, + "id": 13198, "properties": { "facing": "east", "half": "top", @@ -4733,7 +5351,7 @@ } }, { - "id": 11415, + "id": 13199, "properties": { "facing": "east", "half": "top", @@ -4742,7 +5360,7 @@ } }, { - "id": 11416, + "id": 13200, "properties": { "facing": "east", "half": "top", @@ -4751,7 +5369,7 @@ } }, { - "id": 11417, + "id": 13201, "properties": { "facing": "east", "half": "top", @@ -4760,7 +5378,7 @@ } }, { - "id": 11418, + "id": 13202, "properties": { "facing": "east", "half": "top", @@ -4769,7 +5387,7 @@ } }, { - "id": 11419, + "id": 13203, "properties": { "facing": "east", "half": "top", @@ -4778,7 +5396,7 @@ } }, { - "id": 11420, + "id": 13204, "properties": { "facing": "east", "half": "bottom", @@ -4787,7 +5405,7 @@ } }, { - "id": 11421, + "id": 13205, "properties": { "facing": "east", "half": "bottom", @@ -4796,7 +5414,7 @@ } }, { - "id": 11422, + "id": 13206, "properties": { "facing": "east", "half": "bottom", @@ -4805,7 +5423,7 @@ } }, { - "id": 11423, + "id": 13207, "properties": { "facing": "east", "half": "bottom", @@ -4814,7 +5432,7 @@ } }, { - "id": 11424, + "id": 13208, "properties": { "facing": "east", "half": "bottom", @@ -4823,7 +5441,7 @@ } }, { - "id": 11425, + "id": 13209, "properties": { "facing": "east", "half": "bottom", @@ -4832,7 +5450,7 @@ } }, { - "id": 11426, + "id": 13210, "properties": { "facing": "east", "half": "bottom", @@ -4841,7 +5459,7 @@ } }, { - "id": 11427, + "id": 13211, "properties": { "facing": "east", "half": "bottom", @@ -4850,7 +5468,7 @@ } }, { - "id": 11428, + "id": 13212, "properties": { "facing": "east", "half": "bottom", @@ -4859,7 +5477,7 @@ } }, { - "id": 11429, + "id": 13213, "properties": { "facing": "east", "half": "bottom", @@ -4902,7 +5520,7 @@ }, "states": [ { - "id": 14340, + "id": 16124, "properties": { "east": "none", "north": "none", @@ -4913,7 +5531,7 @@ } }, { - "id": 14341, + "id": 16125, "properties": { "east": "none", "north": "none", @@ -4924,7 +5542,7 @@ } }, { - "id": 14342, + "id": 16126, "properties": { "east": "none", "north": "none", @@ -4936,7 +5554,7 @@ }, { "default": true, - "id": 14343, + "id": 16127, "properties": { "east": "none", "north": "none", @@ -4947,7 +5565,7 @@ } }, { - "id": 14344, + "id": 16128, "properties": { "east": "none", "north": "none", @@ -4958,7 +5576,7 @@ } }, { - "id": 14345, + "id": 16129, "properties": { "east": "none", "north": "none", @@ -4969,7 +5587,7 @@ } }, { - "id": 14346, + "id": 16130, "properties": { "east": "none", "north": "none", @@ -4980,7 +5598,7 @@ } }, { - "id": 14347, + "id": 16131, "properties": { "east": "none", "north": "none", @@ -4991,7 +5609,7 @@ } }, { - "id": 14348, + "id": 16132, "properties": { "east": "none", "north": "none", @@ -5002,7 +5620,7 @@ } }, { - "id": 14349, + "id": 16133, "properties": { "east": "none", "north": "none", @@ -5013,7 +5631,7 @@ } }, { - "id": 14350, + "id": 16134, "properties": { "east": "none", "north": "none", @@ -5024,7 +5642,7 @@ } }, { - "id": 14351, + "id": 16135, "properties": { "east": "none", "north": "none", @@ -5035,7 +5653,7 @@ } }, { - "id": 14352, + "id": 16136, "properties": { "east": "none", "north": "none", @@ -5046,7 +5664,7 @@ } }, { - "id": 14353, + "id": 16137, "properties": { "east": "none", "north": "none", @@ -5057,7 +5675,7 @@ } }, { - "id": 14354, + "id": 16138, "properties": { "east": "none", "north": "none", @@ -5068,7 +5686,7 @@ } }, { - "id": 14355, + "id": 16139, "properties": { "east": "none", "north": "none", @@ -5079,7 +5697,7 @@ } }, { - "id": 14356, + "id": 16140, "properties": { "east": "none", "north": "none", @@ -5090,7 +5708,7 @@ } }, { - "id": 14357, + "id": 16141, "properties": { "east": "none", "north": "none", @@ -5101,7 +5719,7 @@ } }, { - "id": 14358, + "id": 16142, "properties": { "east": "none", "north": "none", @@ -5112,7 +5730,7 @@ } }, { - "id": 14359, + "id": 16143, "properties": { "east": "none", "north": "none", @@ -5123,7 +5741,7 @@ } }, { - "id": 14360, + "id": 16144, "properties": { "east": "none", "north": "none", @@ -5134,7 +5752,7 @@ } }, { - "id": 14361, + "id": 16145, "properties": { "east": "none", "north": "none", @@ -5145,7 +5763,7 @@ } }, { - "id": 14362, + "id": 16146, "properties": { "east": "none", "north": "none", @@ -5156,7 +5774,7 @@ } }, { - "id": 14363, + "id": 16147, "properties": { "east": "none", "north": "none", @@ -5167,7 +5785,7 @@ } }, { - "id": 14364, + "id": 16148, "properties": { "east": "none", "north": "none", @@ -5178,7 +5796,7 @@ } }, { - "id": 14365, + "id": 16149, "properties": { "east": "none", "north": "none", @@ -5189,7 +5807,7 @@ } }, { - "id": 14366, + "id": 16150, "properties": { "east": "none", "north": "none", @@ -5200,7 +5818,7 @@ } }, { - "id": 14367, + "id": 16151, "properties": { "east": "none", "north": "none", @@ -5211,7 +5829,7 @@ } }, { - "id": 14368, + "id": 16152, "properties": { "east": "none", "north": "none", @@ -5222,7 +5840,7 @@ } }, { - "id": 14369, + "id": 16153, "properties": { "east": "none", "north": "none", @@ -5233,7 +5851,7 @@ } }, { - "id": 14370, + "id": 16154, "properties": { "east": "none", "north": "none", @@ -5244,7 +5862,7 @@ } }, { - "id": 14371, + "id": 16155, "properties": { "east": "none", "north": "none", @@ -5255,7 +5873,7 @@ } }, { - "id": 14372, + "id": 16156, "properties": { "east": "none", "north": "none", @@ -5266,7 +5884,7 @@ } }, { - "id": 14373, + "id": 16157, "properties": { "east": "none", "north": "none", @@ -5277,7 +5895,7 @@ } }, { - "id": 14374, + "id": 16158, "properties": { "east": "none", "north": "none", @@ -5288,7 +5906,7 @@ } }, { - "id": 14375, + "id": 16159, "properties": { "east": "none", "north": "none", @@ -5299,7 +5917,7 @@ } }, { - "id": 14376, + "id": 16160, "properties": { "east": "none", "north": "low", @@ -5310,7 +5928,7 @@ } }, { - "id": 14377, + "id": 16161, "properties": { "east": "none", "north": "low", @@ -5321,7 +5939,7 @@ } }, { - "id": 14378, + "id": 16162, "properties": { "east": "none", "north": "low", @@ -5332,7 +5950,7 @@ } }, { - "id": 14379, + "id": 16163, "properties": { "east": "none", "north": "low", @@ -5343,7 +5961,7 @@ } }, { - "id": 14380, + "id": 16164, "properties": { "east": "none", "north": "low", @@ -5354,7 +5972,7 @@ } }, { - "id": 14381, + "id": 16165, "properties": { "east": "none", "north": "low", @@ -5365,7 +5983,7 @@ } }, { - "id": 14382, + "id": 16166, "properties": { "east": "none", "north": "low", @@ -5376,7 +5994,7 @@ } }, { - "id": 14383, + "id": 16167, "properties": { "east": "none", "north": "low", @@ -5387,7 +6005,7 @@ } }, { - "id": 14384, + "id": 16168, "properties": { "east": "none", "north": "low", @@ -5398,7 +6016,7 @@ } }, { - "id": 14385, + "id": 16169, "properties": { "east": "none", "north": "low", @@ -5409,7 +6027,7 @@ } }, { - "id": 14386, + "id": 16170, "properties": { "east": "none", "north": "low", @@ -5420,7 +6038,7 @@ } }, { - "id": 14387, + "id": 16171, "properties": { "east": "none", "north": "low", @@ -5431,7 +6049,7 @@ } }, { - "id": 14388, + "id": 16172, "properties": { "east": "none", "north": "low", @@ -5442,7 +6060,7 @@ } }, { - "id": 14389, + "id": 16173, "properties": { "east": "none", "north": "low", @@ -5453,7 +6071,7 @@ } }, { - "id": 14390, + "id": 16174, "properties": { "east": "none", "north": "low", @@ -5464,7 +6082,7 @@ } }, { - "id": 14391, + "id": 16175, "properties": { "east": "none", "north": "low", @@ -5475,7 +6093,7 @@ } }, { - "id": 14392, + "id": 16176, "properties": { "east": "none", "north": "low", @@ -5486,7 +6104,7 @@ } }, { - "id": 14393, + "id": 16177, "properties": { "east": "none", "north": "low", @@ -5497,7 +6115,7 @@ } }, { - "id": 14394, + "id": 16178, "properties": { "east": "none", "north": "low", @@ -5508,7 +6126,7 @@ } }, { - "id": 14395, + "id": 16179, "properties": { "east": "none", "north": "low", @@ -5519,7 +6137,7 @@ } }, { - "id": 14396, + "id": 16180, "properties": { "east": "none", "north": "low", @@ -5530,7 +6148,7 @@ } }, { - "id": 14397, + "id": 16181, "properties": { "east": "none", "north": "low", @@ -5541,7 +6159,7 @@ } }, { - "id": 14398, + "id": 16182, "properties": { "east": "none", "north": "low", @@ -5552,7 +6170,7 @@ } }, { - "id": 14399, + "id": 16183, "properties": { "east": "none", "north": "low", @@ -5563,7 +6181,7 @@ } }, { - "id": 14400, + "id": 16184, "properties": { "east": "none", "north": "low", @@ -5574,7 +6192,7 @@ } }, { - "id": 14401, + "id": 16185, "properties": { "east": "none", "north": "low", @@ -5585,7 +6203,7 @@ } }, { - "id": 14402, + "id": 16186, "properties": { "east": "none", "north": "low", @@ -5596,7 +6214,7 @@ } }, { - "id": 14403, + "id": 16187, "properties": { "east": "none", "north": "low", @@ -5607,7 +6225,7 @@ } }, { - "id": 14404, + "id": 16188, "properties": { "east": "none", "north": "low", @@ -5618,7 +6236,7 @@ } }, { - "id": 14405, + "id": 16189, "properties": { "east": "none", "north": "low", @@ -5629,7 +6247,7 @@ } }, { - "id": 14406, + "id": 16190, "properties": { "east": "none", "north": "low", @@ -5640,7 +6258,7 @@ } }, { - "id": 14407, + "id": 16191, "properties": { "east": "none", "north": "low", @@ -5651,7 +6269,7 @@ } }, { - "id": 14408, + "id": 16192, "properties": { "east": "none", "north": "low", @@ -5662,7 +6280,7 @@ } }, { - "id": 14409, + "id": 16193, "properties": { "east": "none", "north": "low", @@ -5673,7 +6291,7 @@ } }, { - "id": 14410, + "id": 16194, "properties": { "east": "none", "north": "low", @@ -5684,7 +6302,7 @@ } }, { - "id": 14411, + "id": 16195, "properties": { "east": "none", "north": "low", @@ -5695,7 +6313,7 @@ } }, { - "id": 14412, + "id": 16196, "properties": { "east": "none", "north": "tall", @@ -5706,7 +6324,7 @@ } }, { - "id": 14413, + "id": 16197, "properties": { "east": "none", "north": "tall", @@ -5717,7 +6335,7 @@ } }, { - "id": 14414, + "id": 16198, "properties": { "east": "none", "north": "tall", @@ -5728,7 +6346,7 @@ } }, { - "id": 14415, + "id": 16199, "properties": { "east": "none", "north": "tall", @@ -5739,7 +6357,7 @@ } }, { - "id": 14416, + "id": 16200, "properties": { "east": "none", "north": "tall", @@ -5750,7 +6368,7 @@ } }, { - "id": 14417, + "id": 16201, "properties": { "east": "none", "north": "tall", @@ -5761,7 +6379,7 @@ } }, { - "id": 14418, + "id": 16202, "properties": { "east": "none", "north": "tall", @@ -5772,7 +6390,7 @@ } }, { - "id": 14419, + "id": 16203, "properties": { "east": "none", "north": "tall", @@ -5783,7 +6401,7 @@ } }, { - "id": 14420, + "id": 16204, "properties": { "east": "none", "north": "tall", @@ -5794,7 +6412,7 @@ } }, { - "id": 14421, + "id": 16205, "properties": { "east": "none", "north": "tall", @@ -5805,7 +6423,7 @@ } }, { - "id": 14422, + "id": 16206, "properties": { "east": "none", "north": "tall", @@ -5816,7 +6434,7 @@ } }, { - "id": 14423, + "id": 16207, "properties": { "east": "none", "north": "tall", @@ -5827,7 +6445,7 @@ } }, { - "id": 14424, + "id": 16208, "properties": { "east": "none", "north": "tall", @@ -5838,7 +6456,7 @@ } }, { - "id": 14425, + "id": 16209, "properties": { "east": "none", "north": "tall", @@ -5849,7 +6467,7 @@ } }, { - "id": 14426, + "id": 16210, "properties": { "east": "none", "north": "tall", @@ -5860,7 +6478,7 @@ } }, { - "id": 14427, + "id": 16211, "properties": { "east": "none", "north": "tall", @@ -5871,7 +6489,7 @@ } }, { - "id": 14428, + "id": 16212, "properties": { "east": "none", "north": "tall", @@ -5882,7 +6500,7 @@ } }, { - "id": 14429, + "id": 16213, "properties": { "east": "none", "north": "tall", @@ -5893,7 +6511,7 @@ } }, { - "id": 14430, + "id": 16214, "properties": { "east": "none", "north": "tall", @@ -5904,7 +6522,7 @@ } }, { - "id": 14431, + "id": 16215, "properties": { "east": "none", "north": "tall", @@ -5915,7 +6533,7 @@ } }, { - "id": 14432, + "id": 16216, "properties": { "east": "none", "north": "tall", @@ -5926,7 +6544,7 @@ } }, { - "id": 14433, + "id": 16217, "properties": { "east": "none", "north": "tall", @@ -5937,7 +6555,7 @@ } }, { - "id": 14434, + "id": 16218, "properties": { "east": "none", "north": "tall", @@ -5948,7 +6566,7 @@ } }, { - "id": 14435, + "id": 16219, "properties": { "east": "none", "north": "tall", @@ -5959,7 +6577,7 @@ } }, { - "id": 14436, + "id": 16220, "properties": { "east": "none", "north": "tall", @@ -5970,7 +6588,7 @@ } }, { - "id": 14437, + "id": 16221, "properties": { "east": "none", "north": "tall", @@ -5981,7 +6599,7 @@ } }, { - "id": 14438, + "id": 16222, "properties": { "east": "none", "north": "tall", @@ -5992,7 +6610,7 @@ } }, { - "id": 14439, + "id": 16223, "properties": { "east": "none", "north": "tall", @@ -6003,7 +6621,7 @@ } }, { - "id": 14440, + "id": 16224, "properties": { "east": "none", "north": "tall", @@ -6014,7 +6632,7 @@ } }, { - "id": 14441, + "id": 16225, "properties": { "east": "none", "north": "tall", @@ -6025,7 +6643,7 @@ } }, { - "id": 14442, + "id": 16226, "properties": { "east": "none", "north": "tall", @@ -6036,7 +6654,7 @@ } }, { - "id": 14443, + "id": 16227, "properties": { "east": "none", "north": "tall", @@ -6047,7 +6665,7 @@ } }, { - "id": 14444, + "id": 16228, "properties": { "east": "none", "north": "tall", @@ -6058,7 +6676,7 @@ } }, { - "id": 14445, + "id": 16229, "properties": { "east": "none", "north": "tall", @@ -6069,7 +6687,7 @@ } }, { - "id": 14446, + "id": 16230, "properties": { "east": "none", "north": "tall", @@ -6080,7 +6698,7 @@ } }, { - "id": 14447, + "id": 16231, "properties": { "east": "none", "north": "tall", @@ -6091,7 +6709,7 @@ } }, { - "id": 14448, + "id": 16232, "properties": { "east": "low", "north": "none", @@ -6102,7 +6720,7 @@ } }, { - "id": 14449, + "id": 16233, "properties": { "east": "low", "north": "none", @@ -6113,7 +6731,7 @@ } }, { - "id": 14450, + "id": 16234, "properties": { "east": "low", "north": "none", @@ -6124,7 +6742,7 @@ } }, { - "id": 14451, + "id": 16235, "properties": { "east": "low", "north": "none", @@ -6135,7 +6753,7 @@ } }, { - "id": 14452, + "id": 16236, "properties": { "east": "low", "north": "none", @@ -6146,7 +6764,7 @@ } }, { - "id": 14453, + "id": 16237, "properties": { "east": "low", "north": "none", @@ -6157,7 +6775,7 @@ } }, { - "id": 14454, + "id": 16238, "properties": { "east": "low", "north": "none", @@ -6168,7 +6786,7 @@ } }, { - "id": 14455, + "id": 16239, "properties": { "east": "low", "north": "none", @@ -6179,7 +6797,7 @@ } }, { - "id": 14456, + "id": 16240, "properties": { "east": "low", "north": "none", @@ -6190,7 +6808,7 @@ } }, { - "id": 14457, + "id": 16241, "properties": { "east": "low", "north": "none", @@ -6201,7 +6819,7 @@ } }, { - "id": 14458, + "id": 16242, "properties": { "east": "low", "north": "none", @@ -6212,7 +6830,7 @@ } }, { - "id": 14459, + "id": 16243, "properties": { "east": "low", "north": "none", @@ -6223,7 +6841,7 @@ } }, { - "id": 14460, + "id": 16244, "properties": { "east": "low", "north": "none", @@ -6234,7 +6852,7 @@ } }, { - "id": 14461, + "id": 16245, "properties": { "east": "low", "north": "none", @@ -6245,7 +6863,7 @@ } }, { - "id": 14462, + "id": 16246, "properties": { "east": "low", "north": "none", @@ -6256,7 +6874,7 @@ } }, { - "id": 14463, + "id": 16247, "properties": { "east": "low", "north": "none", @@ -6267,7 +6885,7 @@ } }, { - "id": 14464, + "id": 16248, "properties": { "east": "low", "north": "none", @@ -6278,7 +6896,7 @@ } }, { - "id": 14465, + "id": 16249, "properties": { "east": "low", "north": "none", @@ -6289,7 +6907,7 @@ } }, { - "id": 14466, + "id": 16250, "properties": { "east": "low", "north": "none", @@ -6300,7 +6918,7 @@ } }, { - "id": 14467, + "id": 16251, "properties": { "east": "low", "north": "none", @@ -6311,7 +6929,7 @@ } }, { - "id": 14468, + "id": 16252, "properties": { "east": "low", "north": "none", @@ -6322,7 +6940,7 @@ } }, { - "id": 14469, + "id": 16253, "properties": { "east": "low", "north": "none", @@ -6333,7 +6951,7 @@ } }, { - "id": 14470, + "id": 16254, "properties": { "east": "low", "north": "none", @@ -6344,7 +6962,7 @@ } }, { - "id": 14471, + "id": 16255, "properties": { "east": "low", "north": "none", @@ -6355,7 +6973,7 @@ } }, { - "id": 14472, + "id": 16256, "properties": { "east": "low", "north": "none", @@ -6366,7 +6984,7 @@ } }, { - "id": 14473, + "id": 16257, "properties": { "east": "low", "north": "none", @@ -6377,7 +6995,7 @@ } }, { - "id": 14474, + "id": 16258, "properties": { "east": "low", "north": "none", @@ -6388,7 +7006,7 @@ } }, { - "id": 14475, + "id": 16259, "properties": { "east": "low", "north": "none", @@ -6399,7 +7017,7 @@ } }, { - "id": 14476, + "id": 16260, "properties": { "east": "low", "north": "none", @@ -6410,7 +7028,7 @@ } }, { - "id": 14477, + "id": 16261, "properties": { "east": "low", "north": "none", @@ -6421,7 +7039,7 @@ } }, { - "id": 14478, + "id": 16262, "properties": { "east": "low", "north": "none", @@ -6432,7 +7050,7 @@ } }, { - "id": 14479, + "id": 16263, "properties": { "east": "low", "north": "none", @@ -6443,7 +7061,7 @@ } }, { - "id": 14480, + "id": 16264, "properties": { "east": "low", "north": "none", @@ -6454,7 +7072,7 @@ } }, { - "id": 14481, + "id": 16265, "properties": { "east": "low", "north": "none", @@ -6465,7 +7083,7 @@ } }, { - "id": 14482, + "id": 16266, "properties": { "east": "low", "north": "none", @@ -6476,7 +7094,7 @@ } }, { - "id": 14483, + "id": 16267, "properties": { "east": "low", "north": "none", @@ -6487,7 +7105,7 @@ } }, { - "id": 14484, + "id": 16268, "properties": { "east": "low", "north": "low", @@ -6498,7 +7116,7 @@ } }, { - "id": 14485, + "id": 16269, "properties": { "east": "low", "north": "low", @@ -6509,7 +7127,7 @@ } }, { - "id": 14486, + "id": 16270, "properties": { "east": "low", "north": "low", @@ -6520,7 +7138,7 @@ } }, { - "id": 14487, + "id": 16271, "properties": { "east": "low", "north": "low", @@ -6531,7 +7149,7 @@ } }, { - "id": 14488, + "id": 16272, "properties": { "east": "low", "north": "low", @@ -6542,7 +7160,7 @@ } }, { - "id": 14489, + "id": 16273, "properties": { "east": "low", "north": "low", @@ -6553,7 +7171,7 @@ } }, { - "id": 14490, + "id": 16274, "properties": { "east": "low", "north": "low", @@ -6564,7 +7182,7 @@ } }, { - "id": 14491, + "id": 16275, "properties": { "east": "low", "north": "low", @@ -6575,7 +7193,7 @@ } }, { - "id": 14492, + "id": 16276, "properties": { "east": "low", "north": "low", @@ -6586,7 +7204,7 @@ } }, { - "id": 14493, + "id": 16277, "properties": { "east": "low", "north": "low", @@ -6597,7 +7215,7 @@ } }, { - "id": 14494, + "id": 16278, "properties": { "east": "low", "north": "low", @@ -6608,7 +7226,7 @@ } }, { - "id": 14495, + "id": 16279, "properties": { "east": "low", "north": "low", @@ -6619,7 +7237,7 @@ } }, { - "id": 14496, + "id": 16280, "properties": { "east": "low", "north": "low", @@ -6630,7 +7248,7 @@ } }, { - "id": 14497, + "id": 16281, "properties": { "east": "low", "north": "low", @@ -6641,7 +7259,7 @@ } }, { - "id": 14498, + "id": 16282, "properties": { "east": "low", "north": "low", @@ -6652,7 +7270,7 @@ } }, { - "id": 14499, + "id": 16283, "properties": { "east": "low", "north": "low", @@ -6663,7 +7281,7 @@ } }, { - "id": 14500, + "id": 16284, "properties": { "east": "low", "north": "low", @@ -6674,7 +7292,7 @@ } }, { - "id": 14501, + "id": 16285, "properties": { "east": "low", "north": "low", @@ -6685,7 +7303,7 @@ } }, { - "id": 14502, + "id": 16286, "properties": { "east": "low", "north": "low", @@ -6696,7 +7314,7 @@ } }, { - "id": 14503, + "id": 16287, "properties": { "east": "low", "north": "low", @@ -6707,7 +7325,7 @@ } }, { - "id": 14504, + "id": 16288, "properties": { "east": "low", "north": "low", @@ -6718,7 +7336,7 @@ } }, { - "id": 14505, + "id": 16289, "properties": { "east": "low", "north": "low", @@ -6729,7 +7347,7 @@ } }, { - "id": 14506, + "id": 16290, "properties": { "east": "low", "north": "low", @@ -6740,7 +7358,7 @@ } }, { - "id": 14507, + "id": 16291, "properties": { "east": "low", "north": "low", @@ -6751,7 +7369,7 @@ } }, { - "id": 14508, + "id": 16292, "properties": { "east": "low", "north": "low", @@ -6762,7 +7380,7 @@ } }, { - "id": 14509, + "id": 16293, "properties": { "east": "low", "north": "low", @@ -6773,7 +7391,7 @@ } }, { - "id": 14510, + "id": 16294, "properties": { "east": "low", "north": "low", @@ -6784,7 +7402,7 @@ } }, { - "id": 14511, + "id": 16295, "properties": { "east": "low", "north": "low", @@ -6795,7 +7413,7 @@ } }, { - "id": 14512, + "id": 16296, "properties": { "east": "low", "north": "low", @@ -6806,7 +7424,7 @@ } }, { - "id": 14513, + "id": 16297, "properties": { "east": "low", "north": "low", @@ -6817,7 +7435,7 @@ } }, { - "id": 14514, + "id": 16298, "properties": { "east": "low", "north": "low", @@ -6828,7 +7446,7 @@ } }, { - "id": 14515, + "id": 16299, "properties": { "east": "low", "north": "low", @@ -6839,7 +7457,7 @@ } }, { - "id": 14516, + "id": 16300, "properties": { "east": "low", "north": "low", @@ -6850,7 +7468,7 @@ } }, { - "id": 14517, + "id": 16301, "properties": { "east": "low", "north": "low", @@ -6861,7 +7479,7 @@ } }, { - "id": 14518, + "id": 16302, "properties": { "east": "low", "north": "low", @@ -6872,7 +7490,7 @@ } }, { - "id": 14519, + "id": 16303, "properties": { "east": "low", "north": "low", @@ -6883,7 +7501,7 @@ } }, { - "id": 14520, + "id": 16304, "properties": { "east": "low", "north": "tall", @@ -6894,7 +7512,7 @@ } }, { - "id": 14521, + "id": 16305, "properties": { "east": "low", "north": "tall", @@ -6905,7 +7523,7 @@ } }, { - "id": 14522, + "id": 16306, "properties": { "east": "low", "north": "tall", @@ -6916,7 +7534,7 @@ } }, { - "id": 14523, + "id": 16307, "properties": { "east": "low", "north": "tall", @@ -6927,7 +7545,7 @@ } }, { - "id": 14524, + "id": 16308, "properties": { "east": "low", "north": "tall", @@ -6938,7 +7556,7 @@ } }, { - "id": 14525, + "id": 16309, "properties": { "east": "low", "north": "tall", @@ -6949,7 +7567,7 @@ } }, { - "id": 14526, + "id": 16310, "properties": { "east": "low", "north": "tall", @@ -6960,7 +7578,7 @@ } }, { - "id": 14527, + "id": 16311, "properties": { "east": "low", "north": "tall", @@ -6971,7 +7589,7 @@ } }, { - "id": 14528, + "id": 16312, "properties": { "east": "low", "north": "tall", @@ -6982,7 +7600,7 @@ } }, { - "id": 14529, + "id": 16313, "properties": { "east": "low", "north": "tall", @@ -6993,7 +7611,7 @@ } }, { - "id": 14530, + "id": 16314, "properties": { "east": "low", "north": "tall", @@ -7004,7 +7622,7 @@ } }, { - "id": 14531, + "id": 16315, "properties": { "east": "low", "north": "tall", @@ -7015,7 +7633,7 @@ } }, { - "id": 14532, + "id": 16316, "properties": { "east": "low", "north": "tall", @@ -7026,7 +7644,7 @@ } }, { - "id": 14533, + "id": 16317, "properties": { "east": "low", "north": "tall", @@ -7037,7 +7655,7 @@ } }, { - "id": 14534, + "id": 16318, "properties": { "east": "low", "north": "tall", @@ -7048,7 +7666,7 @@ } }, { - "id": 14535, + "id": 16319, "properties": { "east": "low", "north": "tall", @@ -7059,7 +7677,7 @@ } }, { - "id": 14536, + "id": 16320, "properties": { "east": "low", "north": "tall", @@ -7070,7 +7688,7 @@ } }, { - "id": 14537, + "id": 16321, "properties": { "east": "low", "north": "tall", @@ -7081,7 +7699,7 @@ } }, { - "id": 14538, + "id": 16322, "properties": { "east": "low", "north": "tall", @@ -7092,7 +7710,7 @@ } }, { - "id": 14539, + "id": 16323, "properties": { "east": "low", "north": "tall", @@ -7103,7 +7721,7 @@ } }, { - "id": 14540, + "id": 16324, "properties": { "east": "low", "north": "tall", @@ -7114,7 +7732,7 @@ } }, { - "id": 14541, + "id": 16325, "properties": { "east": "low", "north": "tall", @@ -7125,7 +7743,7 @@ } }, { - "id": 14542, + "id": 16326, "properties": { "east": "low", "north": "tall", @@ -7136,7 +7754,7 @@ } }, { - "id": 14543, + "id": 16327, "properties": { "east": "low", "north": "tall", @@ -7147,7 +7765,7 @@ } }, { - "id": 14544, + "id": 16328, "properties": { "east": "low", "north": "tall", @@ -7158,7 +7776,7 @@ } }, { - "id": 14545, + "id": 16329, "properties": { "east": "low", "north": "tall", @@ -7169,7 +7787,7 @@ } }, { - "id": 14546, + "id": 16330, "properties": { "east": "low", "north": "tall", @@ -7180,7 +7798,7 @@ } }, { - "id": 14547, + "id": 16331, "properties": { "east": "low", "north": "tall", @@ -7191,7 +7809,7 @@ } }, { - "id": 14548, + "id": 16332, "properties": { "east": "low", "north": "tall", @@ -7202,7 +7820,7 @@ } }, { - "id": 14549, + "id": 16333, "properties": { "east": "low", "north": "tall", @@ -7213,7 +7831,7 @@ } }, { - "id": 14550, + "id": 16334, "properties": { "east": "low", "north": "tall", @@ -7224,7 +7842,7 @@ } }, { - "id": 14551, + "id": 16335, "properties": { "east": "low", "north": "tall", @@ -7235,7 +7853,7 @@ } }, { - "id": 14552, + "id": 16336, "properties": { "east": "low", "north": "tall", @@ -7246,7 +7864,7 @@ } }, { - "id": 14553, + "id": 16337, "properties": { "east": "low", "north": "tall", @@ -7257,7 +7875,7 @@ } }, { - "id": 14554, + "id": 16338, "properties": { "east": "low", "north": "tall", @@ -7268,7 +7886,7 @@ } }, { - "id": 14555, + "id": 16339, "properties": { "east": "low", "north": "tall", @@ -7279,7 +7897,7 @@ } }, { - "id": 14556, + "id": 16340, "properties": { "east": "tall", "north": "none", @@ -7290,7 +7908,7 @@ } }, { - "id": 14557, + "id": 16341, "properties": { "east": "tall", "north": "none", @@ -7301,7 +7919,7 @@ } }, { - "id": 14558, + "id": 16342, "properties": { "east": "tall", "north": "none", @@ -7312,7 +7930,7 @@ } }, { - "id": 14559, + "id": 16343, "properties": { "east": "tall", "north": "none", @@ -7323,7 +7941,7 @@ } }, { - "id": 14560, + "id": 16344, "properties": { "east": "tall", "north": "none", @@ -7334,7 +7952,7 @@ } }, { - "id": 14561, + "id": 16345, "properties": { "east": "tall", "north": "none", @@ -7345,7 +7963,7 @@ } }, { - "id": 14562, + "id": 16346, "properties": { "east": "tall", "north": "none", @@ -7356,7 +7974,7 @@ } }, { - "id": 14563, + "id": 16347, "properties": { "east": "tall", "north": "none", @@ -7367,7 +7985,7 @@ } }, { - "id": 14564, + "id": 16348, "properties": { "east": "tall", "north": "none", @@ -7378,7 +7996,7 @@ } }, { - "id": 14565, + "id": 16349, "properties": { "east": "tall", "north": "none", @@ -7389,7 +8007,7 @@ } }, { - "id": 14566, + "id": 16350, "properties": { "east": "tall", "north": "none", @@ -7400,7 +8018,7 @@ } }, { - "id": 14567, + "id": 16351, "properties": { "east": "tall", "north": "none", @@ -7411,7 +8029,7 @@ } }, { - "id": 14568, + "id": 16352, "properties": { "east": "tall", "north": "none", @@ -7422,7 +8040,7 @@ } }, { - "id": 14569, + "id": 16353, "properties": { "east": "tall", "north": "none", @@ -7433,7 +8051,7 @@ } }, { - "id": 14570, + "id": 16354, "properties": { "east": "tall", "north": "none", @@ -7444,7 +8062,7 @@ } }, { - "id": 14571, + "id": 16355, "properties": { "east": "tall", "north": "none", @@ -7455,7 +8073,7 @@ } }, { - "id": 14572, + "id": 16356, "properties": { "east": "tall", "north": "none", @@ -7466,7 +8084,7 @@ } }, { - "id": 14573, + "id": 16357, "properties": { "east": "tall", "north": "none", @@ -7477,7 +8095,7 @@ } }, { - "id": 14574, + "id": 16358, "properties": { "east": "tall", "north": "none", @@ -7488,7 +8106,7 @@ } }, { - "id": 14575, + "id": 16359, "properties": { "east": "tall", "north": "none", @@ -7499,7 +8117,7 @@ } }, { - "id": 14576, + "id": 16360, "properties": { "east": "tall", "north": "none", @@ -7510,7 +8128,7 @@ } }, { - "id": 14577, + "id": 16361, "properties": { "east": "tall", "north": "none", @@ -7521,7 +8139,7 @@ } }, { - "id": 14578, + "id": 16362, "properties": { "east": "tall", "north": "none", @@ -7532,7 +8150,7 @@ } }, { - "id": 14579, + "id": 16363, "properties": { "east": "tall", "north": "none", @@ -7543,7 +8161,7 @@ } }, { - "id": 14580, + "id": 16364, "properties": { "east": "tall", "north": "none", @@ -7554,7 +8172,7 @@ } }, { - "id": 14581, + "id": 16365, "properties": { "east": "tall", "north": "none", @@ -7565,7 +8183,7 @@ } }, { - "id": 14582, + "id": 16366, "properties": { "east": "tall", "north": "none", @@ -7576,7 +8194,7 @@ } }, { - "id": 14583, + "id": 16367, "properties": { "east": "tall", "north": "none", @@ -7587,7 +8205,7 @@ } }, { - "id": 14584, + "id": 16368, "properties": { "east": "tall", "north": "none", @@ -7598,7 +8216,7 @@ } }, { - "id": 14585, + "id": 16369, "properties": { "east": "tall", "north": "none", @@ -7609,7 +8227,7 @@ } }, { - "id": 14586, + "id": 16370, "properties": { "east": "tall", "north": "none", @@ -7620,7 +8238,7 @@ } }, { - "id": 14587, + "id": 16371, "properties": { "east": "tall", "north": "none", @@ -7631,7 +8249,7 @@ } }, { - "id": 14588, + "id": 16372, "properties": { "east": "tall", "north": "none", @@ -7642,7 +8260,7 @@ } }, { - "id": 14589, + "id": 16373, "properties": { "east": "tall", "north": "none", @@ -7653,7 +8271,7 @@ } }, { - "id": 14590, + "id": 16374, "properties": { "east": "tall", "north": "none", @@ -7664,7 +8282,7 @@ } }, { - "id": 14591, + "id": 16375, "properties": { "east": "tall", "north": "none", @@ -7675,7 +8293,7 @@ } }, { - "id": 14592, + "id": 16376, "properties": { "east": "tall", "north": "low", @@ -7686,7 +8304,7 @@ } }, { - "id": 14593, + "id": 16377, "properties": { "east": "tall", "north": "low", @@ -7697,7 +8315,7 @@ } }, { - "id": 14594, + "id": 16378, "properties": { "east": "tall", "north": "low", @@ -7708,7 +8326,7 @@ } }, { - "id": 14595, + "id": 16379, "properties": { "east": "tall", "north": "low", @@ -7719,7 +8337,7 @@ } }, { - "id": 14596, + "id": 16380, "properties": { "east": "tall", "north": "low", @@ -7730,7 +8348,7 @@ } }, { - "id": 14597, + "id": 16381, "properties": { "east": "tall", "north": "low", @@ -7741,7 +8359,7 @@ } }, { - "id": 14598, + "id": 16382, "properties": { "east": "tall", "north": "low", @@ -7752,7 +8370,7 @@ } }, { - "id": 14599, + "id": 16383, "properties": { "east": "tall", "north": "low", @@ -7763,7 +8381,7 @@ } }, { - "id": 14600, + "id": 16384, "properties": { "east": "tall", "north": "low", @@ -7774,7 +8392,7 @@ } }, { - "id": 14601, + "id": 16385, "properties": { "east": "tall", "north": "low", @@ -7785,7 +8403,7 @@ } }, { - "id": 14602, + "id": 16386, "properties": { "east": "tall", "north": "low", @@ -7796,7 +8414,7 @@ } }, { - "id": 14603, + "id": 16387, "properties": { "east": "tall", "north": "low", @@ -7807,7 +8425,7 @@ } }, { - "id": 14604, + "id": 16388, "properties": { "east": "tall", "north": "low", @@ -7818,7 +8436,7 @@ } }, { - "id": 14605, + "id": 16389, "properties": { "east": "tall", "north": "low", @@ -7829,7 +8447,7 @@ } }, { - "id": 14606, + "id": 16390, "properties": { "east": "tall", "north": "low", @@ -7840,7 +8458,7 @@ } }, { - "id": 14607, + "id": 16391, "properties": { "east": "tall", "north": "low", @@ -7851,7 +8469,7 @@ } }, { - "id": 14608, + "id": 16392, "properties": { "east": "tall", "north": "low", @@ -7862,7 +8480,7 @@ } }, { - "id": 14609, + "id": 16393, "properties": { "east": "tall", "north": "low", @@ -7873,7 +8491,7 @@ } }, { - "id": 14610, + "id": 16394, "properties": { "east": "tall", "north": "low", @@ -7884,7 +8502,7 @@ } }, { - "id": 14611, + "id": 16395, "properties": { "east": "tall", "north": "low", @@ -7895,7 +8513,7 @@ } }, { - "id": 14612, + "id": 16396, "properties": { "east": "tall", "north": "low", @@ -7906,7 +8524,7 @@ } }, { - "id": 14613, + "id": 16397, "properties": { "east": "tall", "north": "low", @@ -7917,7 +8535,7 @@ } }, { - "id": 14614, + "id": 16398, "properties": { "east": "tall", "north": "low", @@ -7928,7 +8546,7 @@ } }, { - "id": 14615, + "id": 16399, "properties": { "east": "tall", "north": "low", @@ -7939,7 +8557,7 @@ } }, { - "id": 14616, + "id": 16400, "properties": { "east": "tall", "north": "low", @@ -7950,7 +8568,7 @@ } }, { - "id": 14617, + "id": 16401, "properties": { "east": "tall", "north": "low", @@ -7961,7 +8579,7 @@ } }, { - "id": 14618, + "id": 16402, "properties": { "east": "tall", "north": "low", @@ -7972,7 +8590,7 @@ } }, { - "id": 14619, + "id": 16403, "properties": { "east": "tall", "north": "low", @@ -7983,7 +8601,7 @@ } }, { - "id": 14620, + "id": 16404, "properties": { "east": "tall", "north": "low", @@ -7994,7 +8612,7 @@ } }, { - "id": 14621, + "id": 16405, "properties": { "east": "tall", "north": "low", @@ -8005,7 +8623,7 @@ } }, { - "id": 14622, + "id": 16406, "properties": { "east": "tall", "north": "low", @@ -8016,7 +8634,7 @@ } }, { - "id": 14623, + "id": 16407, "properties": { "east": "tall", "north": "low", @@ -8027,7 +8645,7 @@ } }, { - "id": 14624, + "id": 16408, "properties": { "east": "tall", "north": "low", @@ -8038,7 +8656,7 @@ } }, { - "id": 14625, + "id": 16409, "properties": { "east": "tall", "north": "low", @@ -8049,7 +8667,7 @@ } }, { - "id": 14626, + "id": 16410, "properties": { "east": "tall", "north": "low", @@ -8060,7 +8678,7 @@ } }, { - "id": 14627, + "id": 16411, "properties": { "east": "tall", "north": "low", @@ -8071,7 +8689,7 @@ } }, { - "id": 14628, + "id": 16412, "properties": { "east": "tall", "north": "tall", @@ -8082,7 +8700,7 @@ } }, { - "id": 14629, + "id": 16413, "properties": { "east": "tall", "north": "tall", @@ -8093,7 +8711,7 @@ } }, { - "id": 14630, + "id": 16414, "properties": { "east": "tall", "north": "tall", @@ -8104,7 +8722,7 @@ } }, { - "id": 14631, + "id": 16415, "properties": { "east": "tall", "north": "tall", @@ -8115,7 +8733,7 @@ } }, { - "id": 14632, + "id": 16416, "properties": { "east": "tall", "north": "tall", @@ -8126,7 +8744,7 @@ } }, { - "id": 14633, + "id": 16417, "properties": { "east": "tall", "north": "tall", @@ -8137,7 +8755,7 @@ } }, { - "id": 14634, + "id": 16418, "properties": { "east": "tall", "north": "tall", @@ -8148,7 +8766,7 @@ } }, { - "id": 14635, + "id": 16419, "properties": { "east": "tall", "north": "tall", @@ -8159,7 +8777,7 @@ } }, { - "id": 14636, + "id": 16420, "properties": { "east": "tall", "north": "tall", @@ -8170,7 +8788,7 @@ } }, { - "id": 14637, + "id": 16421, "properties": { "east": "tall", "north": "tall", @@ -8181,7 +8799,7 @@ } }, { - "id": 14638, + "id": 16422, "properties": { "east": "tall", "north": "tall", @@ -8192,7 +8810,7 @@ } }, { - "id": 14639, + "id": 16423, "properties": { "east": "tall", "north": "tall", @@ -8203,7 +8821,7 @@ } }, { - "id": 14640, + "id": 16424, "properties": { "east": "tall", "north": "tall", @@ -8214,7 +8832,7 @@ } }, { - "id": 14641, + "id": 16425, "properties": { "east": "tall", "north": "tall", @@ -8225,7 +8843,7 @@ } }, { - "id": 14642, + "id": 16426, "properties": { "east": "tall", "north": "tall", @@ -8236,7 +8854,7 @@ } }, { - "id": 14643, + "id": 16427, "properties": { "east": "tall", "north": "tall", @@ -8247,7 +8865,7 @@ } }, { - "id": 14644, + "id": 16428, "properties": { "east": "tall", "north": "tall", @@ -8258,7 +8876,7 @@ } }, { - "id": 14645, + "id": 16429, "properties": { "east": "tall", "north": "tall", @@ -8269,7 +8887,7 @@ } }, { - "id": 14646, + "id": 16430, "properties": { "east": "tall", "north": "tall", @@ -8280,7 +8898,7 @@ } }, { - "id": 14647, + "id": 16431, "properties": { "east": "tall", "north": "tall", @@ -8291,7 +8909,7 @@ } }, { - "id": 14648, + "id": 16432, "properties": { "east": "tall", "north": "tall", @@ -8302,7 +8920,7 @@ } }, { - "id": 14649, + "id": 16433, "properties": { "east": "tall", "north": "tall", @@ -8313,7 +8931,7 @@ } }, { - "id": 14650, + "id": 16434, "properties": { "east": "tall", "north": "tall", @@ -8324,7 +8942,7 @@ } }, { - "id": 14651, + "id": 16435, "properties": { "east": "tall", "north": "tall", @@ -8335,7 +8953,7 @@ } }, { - "id": 14652, + "id": 16436, "properties": { "east": "tall", "north": "tall", @@ -8346,7 +8964,7 @@ } }, { - "id": 14653, + "id": 16437, "properties": { "east": "tall", "north": "tall", @@ -8357,7 +8975,7 @@ } }, { - "id": 14654, + "id": 16438, "properties": { "east": "tall", "north": "tall", @@ -8368,7 +8986,7 @@ } }, { - "id": 14655, + "id": 16439, "properties": { "east": "tall", "north": "tall", @@ -8379,7 +8997,7 @@ } }, { - "id": 14656, + "id": 16440, "properties": { "east": "tall", "north": "tall", @@ -8390,7 +9008,7 @@ } }, { - "id": 14657, + "id": 16441, "properties": { "east": "tall", "north": "tall", @@ -8401,7 +9019,7 @@ } }, { - "id": 14658, + "id": 16442, "properties": { "east": "tall", "north": "tall", @@ -8412,7 +9030,7 @@ } }, { - "id": 14659, + "id": 16443, "properties": { "east": "tall", "north": "tall", @@ -8423,7 +9041,7 @@ } }, { - "id": 14660, + "id": 16444, "properties": { "east": "tall", "north": "tall", @@ -8434,7 +9052,7 @@ } }, { - "id": 14661, + "id": 16445, "properties": { "east": "tall", "north": "tall", @@ -8445,7 +9063,7 @@ } }, { - "id": 14662, + "id": 16446, "properties": { "east": "tall", "north": "tall", @@ -8456,7 +9074,7 @@ } }, { - "id": 14663, + "id": 16447, "properties": { "east": "tall", "north": "tall", @@ -8480,25 +9098,25 @@ "states": [ { "default": true, - "id": 7227, + "id": 8711, "properties": { "facing": "north" } }, { - "id": 7228, + "id": 8712, "properties": { "facing": "south" } }, { - "id": 7229, + "id": 8713, "properties": { "facing": "west" } }, { - "id": 7230, + "id": 8714, "properties": { "facing": "east" } @@ -8517,25 +9135,25 @@ "states": [ { "default": true, - "id": 5147, + "id": 6587, "properties": { "facing": "north" } }, { - "id": 5148, + "id": 6588, "properties": { "facing": "south" } }, { - "id": 5149, + "id": 6589, "properties": { "facing": "west" } }, { - "id": 5150, + "id": 6590, "properties": { "facing": "east" } @@ -8554,25 +9172,25 @@ "states": [ { "default": true, - "id": 5143, + "id": 6583, "properties": { "facing": "north" } }, { - "id": 5144, + "id": 6584, "properties": { "facing": "south" } }, { - "id": 5145, + "id": 6585, "properties": { "facing": "west" } }, { - "id": 5146, + "id": 6586, "properties": { "facing": "east" } @@ -8583,7 +9201,7 @@ "states": [ { "default": true, - "id": 19714 + "id": 21498 } ] }, @@ -8608,74 +9226,10 @@ ] }, "states": [ - { - "id": 402, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 403, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 404, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 405, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 406, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 407, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 408, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 409, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, { "id": 410, "properties": { - "distance": "3", + "distance": "1", "persistent": "true", "waterlogged": "true" } @@ -8683,7 +9237,7 @@ { "id": 411, "properties": { - "distance": "3", + "distance": "1", "persistent": "true", "waterlogged": "false" } @@ -8691,7 +9245,7 @@ { "id": 412, "properties": { - "distance": "3", + "distance": "1", "persistent": "false", "waterlogged": "true" } @@ -8699,7 +9253,7 @@ { "id": 413, "properties": { - "distance": "3", + "distance": "1", "persistent": "false", "waterlogged": "false" } @@ -8707,7 +9261,7 @@ { "id": 414, "properties": { - "distance": "4", + "distance": "2", "persistent": "true", "waterlogged": "true" } @@ -8715,7 +9269,7 @@ { "id": 415, "properties": { - "distance": "4", + "distance": "2", "persistent": "true", "waterlogged": "false" } @@ -8723,7 +9277,7 @@ { "id": 416, "properties": { - "distance": "4", + "distance": "2", "persistent": "false", "waterlogged": "true" } @@ -8731,7 +9285,7 @@ { "id": 417, "properties": { - "distance": "4", + "distance": "2", "persistent": "false", "waterlogged": "false" } @@ -8739,7 +9293,7 @@ { "id": 418, "properties": { - "distance": "5", + "distance": "3", "persistent": "true", "waterlogged": "true" } @@ -8747,7 +9301,7 @@ { "id": 419, "properties": { - "distance": "5", + "distance": "3", "persistent": "true", "waterlogged": "false" } @@ -8755,7 +9309,7 @@ { "id": 420, "properties": { - "distance": "5", + "distance": "3", "persistent": "false", "waterlogged": "true" } @@ -8763,7 +9317,7 @@ { "id": 421, "properties": { - "distance": "5", + "distance": "3", "persistent": "false", "waterlogged": "false" } @@ -8771,7 +9325,7 @@ { "id": 422, "properties": { - "distance": "6", + "distance": "4", "persistent": "true", "waterlogged": "true" } @@ -8779,7 +9333,7 @@ { "id": 423, "properties": { - "distance": "6", + "distance": "4", "persistent": "true", "waterlogged": "false" } @@ -8787,7 +9341,7 @@ { "id": 424, "properties": { - "distance": "6", + "distance": "4", "persistent": "false", "waterlogged": "true" } @@ -8795,7 +9349,7 @@ { "id": 425, "properties": { - "distance": "6", + "distance": "4", "persistent": "false", "waterlogged": "false" } @@ -8803,7 +9357,7 @@ { "id": 426, "properties": { - "distance": "7", + "distance": "5", "persistent": "true", "waterlogged": "true" } @@ -8811,13 +9365,77 @@ { "id": 427, "properties": { - "distance": "7", + "distance": "5", "persistent": "true", "waterlogged": "false" } }, { "id": 428, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 429, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 430, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 431, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 432, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 433, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 434, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 435, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 436, "properties": { "distance": "7", "persistent": "false", @@ -8826,7 +9444,7 @@ }, { "default": true, - "id": 429, + "id": 437, "properties": { "distance": "7", "persistent": "false", @@ -8839,7 +9457,7 @@ "states": [ { "default": true, - "id": 1670 + "id": 2028 } ] }, @@ -8862,7 +9480,7 @@ "states": [ { "default": true, - "id": 10533, + "id": 12317, "properties": { "age": "0", "leaves": "none", @@ -8870,7 +9488,7 @@ } }, { - "id": 10534, + "id": 12318, "properties": { "age": "0", "leaves": "none", @@ -8878,7 +9496,7 @@ } }, { - "id": 10535, + "id": 12319, "properties": { "age": "0", "leaves": "small", @@ -8886,7 +9504,7 @@ } }, { - "id": 10536, + "id": 12320, "properties": { "age": "0", "leaves": "small", @@ -8894,7 +9512,7 @@ } }, { - "id": 10537, + "id": 12321, "properties": { "age": "0", "leaves": "large", @@ -8902,7 +9520,7 @@ } }, { - "id": 10538, + "id": 12322, "properties": { "age": "0", "leaves": "large", @@ -8910,7 +9528,7 @@ } }, { - "id": 10539, + "id": 12323, "properties": { "age": "1", "leaves": "none", @@ -8918,7 +9536,7 @@ } }, { - "id": 10540, + "id": 12324, "properties": { "age": "1", "leaves": "none", @@ -8926,7 +9544,7 @@ } }, { - "id": 10541, + "id": 12325, "properties": { "age": "1", "leaves": "small", @@ -8934,7 +9552,7 @@ } }, { - "id": 10542, + "id": 12326, "properties": { "age": "1", "leaves": "small", @@ -8942,7 +9560,7 @@ } }, { - "id": 10543, + "id": 12327, "properties": { "age": "1", "leaves": "large", @@ -8950,7 +9568,7 @@ } }, { - "id": 10544, + "id": 12328, "properties": { "age": "1", "leaves": "large", @@ -8959,11 +9577,4848 @@ } ] }, + "minecraft:bamboo_block": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 145, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 146, + "properties": { + "axis": "y" + } + }, + { + "id": 147, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:bamboo_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8547, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8548, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8549, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8550, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8551, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8552, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8553, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8554, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8555, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8556, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8557, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8558, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8559, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8560, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8561, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8562, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8563, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8564, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8565, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8566, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8567, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8568, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8569, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8570, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:bamboo_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11659, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11660, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11661, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11662, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11663, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11664, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11665, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11666, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11667, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11668, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11669, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11670, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11671, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11672, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11673, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11674, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11675, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11676, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11677, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11678, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11679, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11680, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11681, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11682, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11683, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11684, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11685, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11686, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11687, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11688, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11689, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11690, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11691, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11692, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11693, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11694, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11695, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11696, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11697, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11698, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11699, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11700, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11701, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11702, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11703, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11704, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11705, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11706, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11707, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11708, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11709, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11710, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11711, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11712, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11713, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11714, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11715, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11716, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11717, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11718, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11719, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11720, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11721, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11722, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:bamboo_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11243, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11244, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11245, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11246, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11247, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11248, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11249, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11250, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11251, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11252, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11253, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11254, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11255, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11256, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11257, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11258, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11259, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11260, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11261, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11262, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11263, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11264, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11265, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11266, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11267, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11268, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11269, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11270, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11271, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11272, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11273, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11274, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:bamboo_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11019, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11020, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11021, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11022, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11023, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11024, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11025, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11026, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11027, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11028, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11029, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11030, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11031, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11032, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11033, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11034, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11035, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11036, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11037, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11038, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11039, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11040, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11041, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11042, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11043, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11044, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11045, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11046, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11047, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11048, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11049, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11050, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:bamboo_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5318, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5319, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5320, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5321, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5322, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5323, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5324, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5325, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5326, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5327, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5328, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5329, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5330, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5331, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5332, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5333, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5334, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5335, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5336, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5337, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5338, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5339, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5340, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5341, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5342, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5343, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5344, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5345, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5346, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5347, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5348, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5349, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5350, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5351, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5352, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5353, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5354, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5355, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5356, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5357, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5358, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5359, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5360, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5361, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5362, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5363, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5364, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5365, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5366, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5367, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5368, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5369, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5370, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5371, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5372, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5373, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5374, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5375, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5376, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5377, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5378, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5379, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5380, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5381, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_mosaic": { + "states": [ + { + "default": true, + "id": 23 + } + ] + }, + "minecraft:bamboo_mosaic_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10733, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 10734, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 10735, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10736, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 10737, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 10738, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_mosaic_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9808, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9809, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9810, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9811, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9812, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9813, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9814, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9815, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9816, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9817, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9818, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9819, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9820, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9821, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9822, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9823, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9824, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9825, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9826, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9827, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9828, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9829, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9830, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9831, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9832, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9833, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9834, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9835, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9836, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9837, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9838, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9839, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9840, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9841, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9842, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9843, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9844, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9845, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9846, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9847, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9848, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9849, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9850, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9851, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9852, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9853, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9854, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9855, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9856, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9857, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9858, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9859, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9860, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9861, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9862, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9863, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9864, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9865, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9866, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9867, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9868, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9869, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9870, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9871, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9872, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9873, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9874, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9875, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9876, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9877, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9878, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9879, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9880, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9881, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9882, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9883, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9884, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9885, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9886, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9887, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_planks": { + "states": [ + { + "default": true, + "id": 22 + } + ] + }, + "minecraft:bamboo_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5566, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5567, + "properties": { + "powered": "false" + } + } + ] + }, "minecraft:bamboo_sapling": { "states": [ { "default": true, - "id": 10532 + "id": 12316 + } + ] + }, + "minecraft:bamboo_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4474, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4475, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4476, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4477, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4478, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4479, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4480, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4481, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4482, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4483, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4484, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4485, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4486, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4487, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4488, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4489, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4490, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4491, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4492, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4493, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4494, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4495, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4496, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4497, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4498, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4499, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4500, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4501, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4502, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4503, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4504, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4505, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10727, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 10728, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 10729, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10730, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 10731, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 10732, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9728, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9729, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9730, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9731, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9732, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9733, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9734, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9735, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9736, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9737, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9738, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9739, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9740, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9741, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9742, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9743, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9744, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9745, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9746, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9747, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9748, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9749, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9750, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9751, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9752, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9753, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9754, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9755, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9756, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9757, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9758, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9759, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9760, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9761, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9762, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9763, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9764, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9765, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9766, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9767, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9768, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9769, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9770, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9771, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9772, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9773, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9774, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9775, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9776, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9777, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9778, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9779, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9780, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9781, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9782, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9783, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9784, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9785, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9786, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9787, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9788, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9789, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9790, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9791, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9792, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9793, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9794, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9795, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9796, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9797, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9798, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9799, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9800, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9801, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9802, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9803, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9804, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9805, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9806, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9807, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6244, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6245, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6246, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6247, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6248, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6249, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6250, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6251, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6252, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6253, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6254, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6255, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6256, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6257, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6258, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6259, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6260, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6261, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6262, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6263, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6264, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6265, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6266, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6267, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6268, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6269, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6270, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6271, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6272, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6273, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6274, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6275, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6276, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6277, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6278, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6279, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6280, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6281, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6282, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6283, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6284, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6285, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6286, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6287, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6288, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6289, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6290, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6291, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6292, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6293, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6294, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6295, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6296, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6297, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6298, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6299, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6300, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6301, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6302, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6303, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6304, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6305, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6306, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6307, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5454, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5455, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5456, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5457, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5458, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5459, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5460, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5461, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4734, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4735, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4736, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4737, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4738, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4739, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4740, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4741, + "properties": { + "facing": "east", + "waterlogged": "false" + } } ] }, @@ -8984,7 +14439,7 @@ }, "states": [ { - "id": 15996, + "id": 17780, "properties": { "facing": "north", "open": "true" @@ -8992,77 +14447,77 @@ }, { "default": true, - "id": 15997, + "id": 17781, "properties": { "facing": "north", "open": "false" } }, { - "id": 15998, + "id": 17782, "properties": { "facing": "east", "open": "true" } }, { - "id": 15999, + "id": 17783, "properties": { "facing": "east", "open": "false" } }, { - "id": 16000, + "id": 17784, "properties": { "facing": "south", "open": "true" } }, { - "id": 16001, + "id": 17785, "properties": { "facing": "south", "open": "false" } }, { - "id": 16002, + "id": 17786, "properties": { "facing": "west", "open": "true" } }, { - "id": 16003, + "id": 17787, "properties": { "facing": "west", "open": "false" } }, { - "id": 16004, + "id": 17788, "properties": { "facing": "up", "open": "true" } }, { - "id": 16005, + "id": 17789, "properties": { "facing": "up", "open": "false" } }, { - "id": 16006, + "id": 17790, "properties": { "facing": "down", "open": "true" } }, { - "id": 16007, + "id": 17791, "properties": { "facing": "down", "open": "false" @@ -9074,7 +14529,7 @@ "states": [ { "default": true, - "id": 8245 + "id": 9889 } ] }, @@ -9088,20 +14543,20 @@ }, "states": [ { - "id": 4311, + "id": 5687, "properties": { "axis": "x" } }, { "default": true, - "id": 4312, + "id": 5688, "properties": { "axis": "y" } }, { - "id": 4313, + "id": 5689, "properties": { "axis": "z" } @@ -9112,7 +14567,7 @@ "states": [ { "default": true, - "id": 6248 + "id": 7688 } ] }, @@ -9120,7 +14575,7 @@ "states": [ { "default": true, - "id": 74 + "id": 76 } ] }, @@ -9144,168 +14599,168 @@ "states": [ { "default": true, - "id": 16985, + "id": 18769, "properties": { "facing": "north", "honey_level": "0" } }, { - "id": 16986, + "id": 18770, "properties": { "facing": "north", "honey_level": "1" } }, { - "id": 16987, + "id": 18771, "properties": { "facing": "north", "honey_level": "2" } }, { - "id": 16988, + "id": 18772, "properties": { "facing": "north", "honey_level": "3" } }, { - "id": 16989, + "id": 18773, "properties": { "facing": "north", "honey_level": "4" } }, { - "id": 16990, + "id": 18774, "properties": { "facing": "north", "honey_level": "5" } }, { - "id": 16991, + "id": 18775, "properties": { "facing": "south", "honey_level": "0" } }, { - "id": 16992, + "id": 18776, "properties": { "facing": "south", "honey_level": "1" } }, { - "id": 16993, + "id": 18777, "properties": { "facing": "south", "honey_level": "2" } }, { - "id": 16994, + "id": 18778, "properties": { "facing": "south", "honey_level": "3" } }, { - "id": 16995, + "id": 18779, "properties": { "facing": "south", "honey_level": "4" } }, { - "id": 16996, + "id": 18780, "properties": { "facing": "south", "honey_level": "5" } }, { - "id": 16997, + "id": 18781, "properties": { "facing": "west", "honey_level": "0" } }, { - "id": 16998, + "id": 18782, "properties": { "facing": "west", "honey_level": "1" } }, { - "id": 16999, + "id": 18783, "properties": { "facing": "west", "honey_level": "2" } }, { - "id": 17000, + "id": 18784, "properties": { "facing": "west", "honey_level": "3" } }, { - "id": 17001, + "id": 18785, "properties": { "facing": "west", "honey_level": "4" } }, { - "id": 17002, + "id": 18786, "properties": { "facing": "west", "honey_level": "5" } }, { - "id": 17003, + "id": 18787, "properties": { "facing": "east", "honey_level": "0" } }, { - "id": 17004, + "id": 18788, "properties": { "facing": "east", "honey_level": "1" } }, { - "id": 17005, + "id": 18789, "properties": { "facing": "east", "honey_level": "2" } }, { - "id": 17006, + "id": 18790, "properties": { "facing": "east", "honey_level": "3" } }, { - "id": 17007, + "id": 18791, "properties": { "facing": "east", "honey_level": "4" } }, { - "id": 17008, + "id": 18792, "properties": { "facing": "east", "honey_level": "5" @@ -9333,168 +14788,168 @@ "states": [ { "default": true, - "id": 17009, + "id": 18793, "properties": { "facing": "north", "honey_level": "0" } }, { - "id": 17010, + "id": 18794, "properties": { "facing": "north", "honey_level": "1" } }, { - "id": 17011, + "id": 18795, "properties": { "facing": "north", "honey_level": "2" } }, { - "id": 17012, + "id": 18796, "properties": { "facing": "north", "honey_level": "3" } }, { - "id": 17013, + "id": 18797, "properties": { "facing": "north", "honey_level": "4" } }, { - "id": 17014, + "id": 18798, "properties": { "facing": "north", "honey_level": "5" } }, { - "id": 17015, + "id": 18799, "properties": { "facing": "south", "honey_level": "0" } }, { - "id": 17016, + "id": 18800, "properties": { "facing": "south", "honey_level": "1" } }, { - "id": 17017, + "id": 18801, "properties": { "facing": "south", "honey_level": "2" } }, { - "id": 17018, + "id": 18802, "properties": { "facing": "south", "honey_level": "3" } }, { - "id": 17019, + "id": 18803, "properties": { "facing": "south", "honey_level": "4" } }, { - "id": 17020, + "id": 18804, "properties": { "facing": "south", "honey_level": "5" } }, { - "id": 17021, + "id": 18805, "properties": { "facing": "west", "honey_level": "0" } }, { - "id": 17022, + "id": 18806, "properties": { "facing": "west", "honey_level": "1" } }, { - "id": 17023, + "id": 18807, "properties": { "facing": "west", "honey_level": "2" } }, { - "id": 17024, + "id": 18808, "properties": { "facing": "west", "honey_level": "3" } }, { - "id": 17025, + "id": 18809, "properties": { "facing": "west", "honey_level": "4" } }, { - "id": 17026, + "id": 18810, "properties": { "facing": "west", "honey_level": "5" } }, { - "id": 17027, + "id": 18811, "properties": { "facing": "east", "honey_level": "0" } }, { - "id": 17028, + "id": 18812, "properties": { "facing": "east", "honey_level": "1" } }, { - "id": 17029, + "id": 18813, "properties": { "facing": "east", "honey_level": "2" } }, { - "id": 17030, + "id": 18814, "properties": { "facing": "east", "honey_level": "3" } }, { - "id": 17031, + "id": 18815, "properties": { "facing": "east", "honey_level": "4" } }, { - "id": 17032, + "id": 18816, "properties": { "facing": "east", "honey_level": "5" @@ -9514,25 +14969,25 @@ "states": [ { "default": true, - "id": 10100, + "id": 11884, "properties": { "age": "0" } }, { - "id": 10101, + "id": 11885, "properties": { "age": "1" } }, { - "id": 10102, + "id": 11886, "properties": { "age": "2" } }, { - "id": 10103, + "id": 11887, "properties": { "age": "3" } @@ -9560,7 +15015,7 @@ }, "states": [ { - "id": 16059, + "id": 17843, "properties": { "attachment": "floor", "facing": "north", @@ -9569,7 +15024,7 @@ }, { "default": true, - "id": 16060, + "id": 17844, "properties": { "attachment": "floor", "facing": "north", @@ -9577,7 +15032,7 @@ } }, { - "id": 16061, + "id": 17845, "properties": { "attachment": "floor", "facing": "south", @@ -9585,7 +15040,7 @@ } }, { - "id": 16062, + "id": 17846, "properties": { "attachment": "floor", "facing": "south", @@ -9593,7 +15048,7 @@ } }, { - "id": 16063, + "id": 17847, "properties": { "attachment": "floor", "facing": "west", @@ -9601,7 +15056,7 @@ } }, { - "id": 16064, + "id": 17848, "properties": { "attachment": "floor", "facing": "west", @@ -9609,7 +15064,7 @@ } }, { - "id": 16065, + "id": 17849, "properties": { "attachment": "floor", "facing": "east", @@ -9617,7 +15072,7 @@ } }, { - "id": 16066, + "id": 17850, "properties": { "attachment": "floor", "facing": "east", @@ -9625,7 +15080,7 @@ } }, { - "id": 16067, + "id": 17851, "properties": { "attachment": "ceiling", "facing": "north", @@ -9633,7 +15088,7 @@ } }, { - "id": 16068, + "id": 17852, "properties": { "attachment": "ceiling", "facing": "north", @@ -9641,7 +15096,7 @@ } }, { - "id": 16069, + "id": 17853, "properties": { "attachment": "ceiling", "facing": "south", @@ -9649,7 +15104,7 @@ } }, { - "id": 16070, + "id": 17854, "properties": { "attachment": "ceiling", "facing": "south", @@ -9657,7 +15112,7 @@ } }, { - "id": 16071, + "id": 17855, "properties": { "attachment": "ceiling", "facing": "west", @@ -9665,7 +15120,7 @@ } }, { - "id": 16072, + "id": 17856, "properties": { "attachment": "ceiling", "facing": "west", @@ -9673,7 +15128,7 @@ } }, { - "id": 16073, + "id": 17857, "properties": { "attachment": "ceiling", "facing": "east", @@ -9681,7 +15136,7 @@ } }, { - "id": 16074, + "id": 17858, "properties": { "attachment": "ceiling", "facing": "east", @@ -9689,7 +15144,7 @@ } }, { - "id": 16075, + "id": 17859, "properties": { "attachment": "single_wall", "facing": "north", @@ -9697,7 +15152,7 @@ } }, { - "id": 16076, + "id": 17860, "properties": { "attachment": "single_wall", "facing": "north", @@ -9705,7 +15160,7 @@ } }, { - "id": 16077, + "id": 17861, "properties": { "attachment": "single_wall", "facing": "south", @@ -9713,7 +15168,7 @@ } }, { - "id": 16078, + "id": 17862, "properties": { "attachment": "single_wall", "facing": "south", @@ -9721,7 +15176,7 @@ } }, { - "id": 16079, + "id": 17863, "properties": { "attachment": "single_wall", "facing": "west", @@ -9729,7 +15184,7 @@ } }, { - "id": 16080, + "id": 17864, "properties": { "attachment": "single_wall", "facing": "west", @@ -9737,7 +15192,7 @@ } }, { - "id": 16081, + "id": 17865, "properties": { "attachment": "single_wall", "facing": "east", @@ -9745,7 +15200,7 @@ } }, { - "id": 16082, + "id": 17866, "properties": { "attachment": "single_wall", "facing": "east", @@ -9753,7 +15208,7 @@ } }, { - "id": 16083, + "id": 17867, "properties": { "attachment": "double_wall", "facing": "north", @@ -9761,7 +15216,7 @@ } }, { - "id": 16084, + "id": 17868, "properties": { "attachment": "double_wall", "facing": "north", @@ -9769,7 +15224,7 @@ } }, { - "id": 16085, + "id": 17869, "properties": { "attachment": "double_wall", "facing": "south", @@ -9777,7 +15232,7 @@ } }, { - "id": 16086, + "id": 17870, "properties": { "attachment": "double_wall", "facing": "south", @@ -9785,7 +15240,7 @@ } }, { - "id": 16087, + "id": 17871, "properties": { "attachment": "double_wall", "facing": "west", @@ -9793,7 +15248,7 @@ } }, { - "id": 16088, + "id": 17872, "properties": { "attachment": "double_wall", "facing": "west", @@ -9801,7 +15256,7 @@ } }, { - "id": 16089, + "id": 17873, "properties": { "attachment": "double_wall", "facing": "east", @@ -9809,7 +15264,7 @@ } }, { - "id": 16090, + "id": 17874, "properties": { "attachment": "double_wall", "facing": "east", @@ -9839,7 +15294,7 @@ }, "states": [ { - "id": 19718, + "id": 21502, "properties": { "facing": "north", "tilt": "none", @@ -9848,7 +15303,7 @@ }, { "default": true, - "id": 19719, + "id": 21503, "properties": { "facing": "north", "tilt": "none", @@ -9856,7 +15311,7 @@ } }, { - "id": 19720, + "id": 21504, "properties": { "facing": "north", "tilt": "unstable", @@ -9864,7 +15319,7 @@ } }, { - "id": 19721, + "id": 21505, "properties": { "facing": "north", "tilt": "unstable", @@ -9872,7 +15327,7 @@ } }, { - "id": 19722, + "id": 21506, "properties": { "facing": "north", "tilt": "partial", @@ -9880,7 +15335,7 @@ } }, { - "id": 19723, + "id": 21507, "properties": { "facing": "north", "tilt": "partial", @@ -9888,7 +15343,7 @@ } }, { - "id": 19724, + "id": 21508, "properties": { "facing": "north", "tilt": "full", @@ -9896,7 +15351,7 @@ } }, { - "id": 19725, + "id": 21509, "properties": { "facing": "north", "tilt": "full", @@ -9904,7 +15359,7 @@ } }, { - "id": 19726, + "id": 21510, "properties": { "facing": "south", "tilt": "none", @@ -9912,7 +15367,7 @@ } }, { - "id": 19727, + "id": 21511, "properties": { "facing": "south", "tilt": "none", @@ -9920,7 +15375,7 @@ } }, { - "id": 19728, + "id": 21512, "properties": { "facing": "south", "tilt": "unstable", @@ -9928,7 +15383,7 @@ } }, { - "id": 19729, + "id": 21513, "properties": { "facing": "south", "tilt": "unstable", @@ -9936,7 +15391,7 @@ } }, { - "id": 19730, + "id": 21514, "properties": { "facing": "south", "tilt": "partial", @@ -9944,7 +15399,7 @@ } }, { - "id": 19731, + "id": 21515, "properties": { "facing": "south", "tilt": "partial", @@ -9952,7 +15407,7 @@ } }, { - "id": 19732, + "id": 21516, "properties": { "facing": "south", "tilt": "full", @@ -9960,7 +15415,7 @@ } }, { - "id": 19733, + "id": 21517, "properties": { "facing": "south", "tilt": "full", @@ -9968,7 +15423,7 @@ } }, { - "id": 19734, + "id": 21518, "properties": { "facing": "west", "tilt": "none", @@ -9976,7 +15431,7 @@ } }, { - "id": 19735, + "id": 21519, "properties": { "facing": "west", "tilt": "none", @@ -9984,7 +15439,7 @@ } }, { - "id": 19736, + "id": 21520, "properties": { "facing": "west", "tilt": "unstable", @@ -9992,7 +15447,7 @@ } }, { - "id": 19737, + "id": 21521, "properties": { "facing": "west", "tilt": "unstable", @@ -10000,7 +15455,7 @@ } }, { - "id": 19738, + "id": 21522, "properties": { "facing": "west", "tilt": "partial", @@ -10008,7 +15463,7 @@ } }, { - "id": 19739, + "id": 21523, "properties": { "facing": "west", "tilt": "partial", @@ -10016,7 +15471,7 @@ } }, { - "id": 19740, + "id": 21524, "properties": { "facing": "west", "tilt": "full", @@ -10024,7 +15479,7 @@ } }, { - "id": 19741, + "id": 21525, "properties": { "facing": "west", "tilt": "full", @@ -10032,7 +15487,7 @@ } }, { - "id": 19742, + "id": 21526, "properties": { "facing": "east", "tilt": "none", @@ -10040,7 +15495,7 @@ } }, { - "id": 19743, + "id": 21527, "properties": { "facing": "east", "tilt": "none", @@ -10048,7 +15503,7 @@ } }, { - "id": 19744, + "id": 21528, "properties": { "facing": "east", "tilt": "unstable", @@ -10056,7 +15511,7 @@ } }, { - "id": 19745, + "id": 21529, "properties": { "facing": "east", "tilt": "unstable", @@ -10064,7 +15519,7 @@ } }, { - "id": 19746, + "id": 21530, "properties": { "facing": "east", "tilt": "partial", @@ -10072,7 +15527,7 @@ } }, { - "id": 19747, + "id": 21531, "properties": { "facing": "east", "tilt": "partial", @@ -10080,7 +15535,7 @@ } }, { - "id": 19748, + "id": 21532, "properties": { "facing": "east", "tilt": "full", @@ -10088,7 +15543,7 @@ } }, { - "id": 19749, + "id": 21533, "properties": { "facing": "east", "tilt": "full", @@ -10112,7 +15567,7 @@ }, "states": [ { - "id": 19750, + "id": 21534, "properties": { "facing": "north", "waterlogged": "true" @@ -10120,49 +15575,49 @@ }, { "default": true, - "id": 19751, + "id": 21535, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 19752, + "id": 21536, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 19753, + "id": 21537, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 19754, + "id": 21538, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 19755, + "id": 21539, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 19756, + "id": 21540, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 19757, + "id": 21541, "properties": { "facing": "east", "waterlogged": "false" @@ -10190,7 +15645,7 @@ }, "states": [ { - "id": 6987, + "id": 8427, "properties": { "face": "floor", "facing": "north", @@ -10198,7 +15653,7 @@ } }, { - "id": 6988, + "id": 8428, "properties": { "face": "floor", "facing": "north", @@ -10206,7 +15661,7 @@ } }, { - "id": 6989, + "id": 8429, "properties": { "face": "floor", "facing": "south", @@ -10214,7 +15669,7 @@ } }, { - "id": 6990, + "id": 8430, "properties": { "face": "floor", "facing": "south", @@ -10222,7 +15677,7 @@ } }, { - "id": 6991, + "id": 8431, "properties": { "face": "floor", "facing": "west", @@ -10230,7 +15685,7 @@ } }, { - "id": 6992, + "id": 8432, "properties": { "face": "floor", "facing": "west", @@ -10238,7 +15693,7 @@ } }, { - "id": 6993, + "id": 8433, "properties": { "face": "floor", "facing": "east", @@ -10246,7 +15701,7 @@ } }, { - "id": 6994, + "id": 8434, "properties": { "face": "floor", "facing": "east", @@ -10254,7 +15709,7 @@ } }, { - "id": 6995, + "id": 8435, "properties": { "face": "wall", "facing": "north", @@ -10263,7 +15718,7 @@ }, { "default": true, - "id": 6996, + "id": 8436, "properties": { "face": "wall", "facing": "north", @@ -10271,7 +15726,7 @@ } }, { - "id": 6997, + "id": 8437, "properties": { "face": "wall", "facing": "south", @@ -10279,7 +15734,7 @@ } }, { - "id": 6998, + "id": 8438, "properties": { "face": "wall", "facing": "south", @@ -10287,7 +15742,7 @@ } }, { - "id": 6999, + "id": 8439, "properties": { "face": "wall", "facing": "west", @@ -10295,7 +15750,7 @@ } }, { - "id": 7000, + "id": 8440, "properties": { "face": "wall", "facing": "west", @@ -10303,7 +15758,7 @@ } }, { - "id": 7001, + "id": 8441, "properties": { "face": "wall", "facing": "east", @@ -10311,7 +15766,7 @@ } }, { - "id": 7002, + "id": 8442, "properties": { "face": "wall", "facing": "east", @@ -10319,7 +15774,7 @@ } }, { - "id": 7003, + "id": 8443, "properties": { "face": "ceiling", "facing": "north", @@ -10327,7 +15782,7 @@ } }, { - "id": 7004, + "id": 8444, "properties": { "face": "ceiling", "facing": "north", @@ -10335,7 +15790,7 @@ } }, { - "id": 7005, + "id": 8445, "properties": { "face": "ceiling", "facing": "south", @@ -10343,7 +15798,7 @@ } }, { - "id": 7006, + "id": 8446, "properties": { "face": "ceiling", "facing": "south", @@ -10351,7 +15806,7 @@ } }, { - "id": 7007, + "id": 8447, "properties": { "face": "ceiling", "facing": "west", @@ -10359,7 +15814,7 @@ } }, { - "id": 7008, + "id": 8448, "properties": { "face": "ceiling", "facing": "west", @@ -10367,7 +15822,7 @@ } }, { - "id": 7009, + "id": 8449, "properties": { "face": "ceiling", "facing": "east", @@ -10375,7 +15830,7 @@ } }, { - "id": 7010, + "id": 8450, "properties": { "face": "ceiling", "facing": "east", @@ -10411,7 +15866,7 @@ }, "states": [ { - "id": 9619, + "id": 11339, "properties": { "facing": "north", "half": "upper", @@ -10421,7 +15876,7 @@ } }, { - "id": 9620, + "id": 11340, "properties": { "facing": "north", "half": "upper", @@ -10431,7 +15886,7 @@ } }, { - "id": 9621, + "id": 11341, "properties": { "facing": "north", "half": "upper", @@ -10441,7 +15896,7 @@ } }, { - "id": 9622, + "id": 11342, "properties": { "facing": "north", "half": "upper", @@ -10451,7 +15906,7 @@ } }, { - "id": 9623, + "id": 11343, "properties": { "facing": "north", "half": "upper", @@ -10461,7 +15916,7 @@ } }, { - "id": 9624, + "id": 11344, "properties": { "facing": "north", "half": "upper", @@ -10471,7 +15926,7 @@ } }, { - "id": 9625, + "id": 11345, "properties": { "facing": "north", "half": "upper", @@ -10481,7 +15936,7 @@ } }, { - "id": 9626, + "id": 11346, "properties": { "facing": "north", "half": "upper", @@ -10491,7 +15946,7 @@ } }, { - "id": 9627, + "id": 11347, "properties": { "facing": "north", "half": "lower", @@ -10501,7 +15956,7 @@ } }, { - "id": 9628, + "id": 11348, "properties": { "facing": "north", "half": "lower", @@ -10511,7 +15966,7 @@ } }, { - "id": 9629, + "id": 11349, "properties": { "facing": "north", "half": "lower", @@ -10522,7 +15977,7 @@ }, { "default": true, - "id": 9630, + "id": 11350, "properties": { "facing": "north", "half": "lower", @@ -10532,7 +15987,7 @@ } }, { - "id": 9631, + "id": 11351, "properties": { "facing": "north", "half": "lower", @@ -10542,7 +15997,7 @@ } }, { - "id": 9632, + "id": 11352, "properties": { "facing": "north", "half": "lower", @@ -10552,7 +16007,7 @@ } }, { - "id": 9633, + "id": 11353, "properties": { "facing": "north", "half": "lower", @@ -10562,7 +16017,7 @@ } }, { - "id": 9634, + "id": 11354, "properties": { "facing": "north", "half": "lower", @@ -10572,7 +16027,7 @@ } }, { - "id": 9635, + "id": 11355, "properties": { "facing": "south", "half": "upper", @@ -10582,7 +16037,7 @@ } }, { - "id": 9636, + "id": 11356, "properties": { "facing": "south", "half": "upper", @@ -10592,7 +16047,7 @@ } }, { - "id": 9637, + "id": 11357, "properties": { "facing": "south", "half": "upper", @@ -10602,7 +16057,7 @@ } }, { - "id": 9638, + "id": 11358, "properties": { "facing": "south", "half": "upper", @@ -10612,7 +16067,7 @@ } }, { - "id": 9639, + "id": 11359, "properties": { "facing": "south", "half": "upper", @@ -10622,7 +16077,7 @@ } }, { - "id": 9640, + "id": 11360, "properties": { "facing": "south", "half": "upper", @@ -10632,7 +16087,7 @@ } }, { - "id": 9641, + "id": 11361, "properties": { "facing": "south", "half": "upper", @@ -10642,7 +16097,7 @@ } }, { - "id": 9642, + "id": 11362, "properties": { "facing": "south", "half": "upper", @@ -10652,7 +16107,7 @@ } }, { - "id": 9643, + "id": 11363, "properties": { "facing": "south", "half": "lower", @@ -10662,7 +16117,7 @@ } }, { - "id": 9644, + "id": 11364, "properties": { "facing": "south", "half": "lower", @@ -10672,7 +16127,7 @@ } }, { - "id": 9645, + "id": 11365, "properties": { "facing": "south", "half": "lower", @@ -10682,7 +16137,7 @@ } }, { - "id": 9646, + "id": 11366, "properties": { "facing": "south", "half": "lower", @@ -10692,7 +16147,7 @@ } }, { - "id": 9647, + "id": 11367, "properties": { "facing": "south", "half": "lower", @@ -10702,7 +16157,7 @@ } }, { - "id": 9648, + "id": 11368, "properties": { "facing": "south", "half": "lower", @@ -10712,7 +16167,7 @@ } }, { - "id": 9649, + "id": 11369, "properties": { "facing": "south", "half": "lower", @@ -10722,7 +16177,7 @@ } }, { - "id": 9650, + "id": 11370, "properties": { "facing": "south", "half": "lower", @@ -10732,7 +16187,7 @@ } }, { - "id": 9651, + "id": 11371, "properties": { "facing": "west", "half": "upper", @@ -10742,7 +16197,7 @@ } }, { - "id": 9652, + "id": 11372, "properties": { "facing": "west", "half": "upper", @@ -10752,7 +16207,7 @@ } }, { - "id": 9653, + "id": 11373, "properties": { "facing": "west", "half": "upper", @@ -10762,7 +16217,7 @@ } }, { - "id": 9654, + "id": 11374, "properties": { "facing": "west", "half": "upper", @@ -10772,7 +16227,7 @@ } }, { - "id": 9655, + "id": 11375, "properties": { "facing": "west", "half": "upper", @@ -10782,7 +16237,7 @@ } }, { - "id": 9656, + "id": 11376, "properties": { "facing": "west", "half": "upper", @@ -10792,7 +16247,7 @@ } }, { - "id": 9657, + "id": 11377, "properties": { "facing": "west", "half": "upper", @@ -10802,7 +16257,7 @@ } }, { - "id": 9658, + "id": 11378, "properties": { "facing": "west", "half": "upper", @@ -10812,7 +16267,7 @@ } }, { - "id": 9659, + "id": 11379, "properties": { "facing": "west", "half": "lower", @@ -10822,7 +16277,7 @@ } }, { - "id": 9660, + "id": 11380, "properties": { "facing": "west", "half": "lower", @@ -10832,7 +16287,7 @@ } }, { - "id": 9661, + "id": 11381, "properties": { "facing": "west", "half": "lower", @@ -10842,7 +16297,7 @@ } }, { - "id": 9662, + "id": 11382, "properties": { "facing": "west", "half": "lower", @@ -10852,7 +16307,7 @@ } }, { - "id": 9663, + "id": 11383, "properties": { "facing": "west", "half": "lower", @@ -10862,7 +16317,7 @@ } }, { - "id": 9664, + "id": 11384, "properties": { "facing": "west", "half": "lower", @@ -10872,7 +16327,7 @@ } }, { - "id": 9665, + "id": 11385, "properties": { "facing": "west", "half": "lower", @@ -10882,7 +16337,7 @@ } }, { - "id": 9666, + "id": 11386, "properties": { "facing": "west", "half": "lower", @@ -10892,7 +16347,7 @@ } }, { - "id": 9667, + "id": 11387, "properties": { "facing": "east", "half": "upper", @@ -10902,7 +16357,7 @@ } }, { - "id": 9668, + "id": 11388, "properties": { "facing": "east", "half": "upper", @@ -10912,7 +16367,7 @@ } }, { - "id": 9669, + "id": 11389, "properties": { "facing": "east", "half": "upper", @@ -10922,7 +16377,7 @@ } }, { - "id": 9670, + "id": 11390, "properties": { "facing": "east", "half": "upper", @@ -10932,7 +16387,7 @@ } }, { - "id": 9671, + "id": 11391, "properties": { "facing": "east", "half": "upper", @@ -10942,7 +16397,7 @@ } }, { - "id": 9672, + "id": 11392, "properties": { "facing": "east", "half": "upper", @@ -10952,7 +16407,7 @@ } }, { - "id": 9673, + "id": 11393, "properties": { "facing": "east", "half": "upper", @@ -10962,7 +16417,7 @@ } }, { - "id": 9674, + "id": 11394, "properties": { "facing": "east", "half": "upper", @@ -10972,7 +16427,7 @@ } }, { - "id": 9675, + "id": 11395, "properties": { "facing": "east", "half": "lower", @@ -10982,7 +16437,7 @@ } }, { - "id": 9676, + "id": 11396, "properties": { "facing": "east", "half": "lower", @@ -10992,7 +16447,7 @@ } }, { - "id": 9677, + "id": 11397, "properties": { "facing": "east", "half": "lower", @@ -11002,7 +16457,7 @@ } }, { - "id": 9678, + "id": 11398, "properties": { "facing": "east", "half": "lower", @@ -11012,7 +16467,7 @@ } }, { - "id": 9679, + "id": 11399, "properties": { "facing": "east", "half": "lower", @@ -11022,7 +16477,7 @@ } }, { - "id": 9680, + "id": 11400, "properties": { "facing": "east", "half": "lower", @@ -11032,7 +16487,7 @@ } }, { - "id": 9681, + "id": 11401, "properties": { "facing": "east", "half": "lower", @@ -11042,7 +16497,7 @@ } }, { - "id": 9682, + "id": 11402, "properties": { "facing": "east", "half": "lower", @@ -11078,7 +16533,7 @@ }, "states": [ { - "id": 9395, + "id": 11083, "properties": { "east": "true", "north": "true", @@ -11088,7 +16543,7 @@ } }, { - "id": 9396, + "id": 11084, "properties": { "east": "true", "north": "true", @@ -11098,7 +16553,7 @@ } }, { - "id": 9397, + "id": 11085, "properties": { "east": "true", "north": "true", @@ -11108,7 +16563,7 @@ } }, { - "id": 9398, + "id": 11086, "properties": { "east": "true", "north": "true", @@ -11118,7 +16573,7 @@ } }, { - "id": 9399, + "id": 11087, "properties": { "east": "true", "north": "true", @@ -11128,7 +16583,7 @@ } }, { - "id": 9400, + "id": 11088, "properties": { "east": "true", "north": "true", @@ -11138,7 +16593,7 @@ } }, { - "id": 9401, + "id": 11089, "properties": { "east": "true", "north": "true", @@ -11148,7 +16603,7 @@ } }, { - "id": 9402, + "id": 11090, "properties": { "east": "true", "north": "true", @@ -11158,7 +16613,7 @@ } }, { - "id": 9403, + "id": 11091, "properties": { "east": "true", "north": "false", @@ -11168,7 +16623,7 @@ } }, { - "id": 9404, + "id": 11092, "properties": { "east": "true", "north": "false", @@ -11178,7 +16633,7 @@ } }, { - "id": 9405, + "id": 11093, "properties": { "east": "true", "north": "false", @@ -11188,7 +16643,7 @@ } }, { - "id": 9406, + "id": 11094, "properties": { "east": "true", "north": "false", @@ -11198,7 +16653,7 @@ } }, { - "id": 9407, + "id": 11095, "properties": { "east": "true", "north": "false", @@ -11208,7 +16663,7 @@ } }, { - "id": 9408, + "id": 11096, "properties": { "east": "true", "north": "false", @@ -11218,7 +16673,7 @@ } }, { - "id": 9409, + "id": 11097, "properties": { "east": "true", "north": "false", @@ -11228,7 +16683,7 @@ } }, { - "id": 9410, + "id": 11098, "properties": { "east": "true", "north": "false", @@ -11238,7 +16693,7 @@ } }, { - "id": 9411, + "id": 11099, "properties": { "east": "false", "north": "true", @@ -11248,7 +16703,7 @@ } }, { - "id": 9412, + "id": 11100, "properties": { "east": "false", "north": "true", @@ -11258,7 +16713,7 @@ } }, { - "id": 9413, + "id": 11101, "properties": { "east": "false", "north": "true", @@ -11268,7 +16723,7 @@ } }, { - "id": 9414, + "id": 11102, "properties": { "east": "false", "north": "true", @@ -11278,7 +16733,7 @@ } }, { - "id": 9415, + "id": 11103, "properties": { "east": "false", "north": "true", @@ -11288,7 +16743,7 @@ } }, { - "id": 9416, + "id": 11104, "properties": { "east": "false", "north": "true", @@ -11298,7 +16753,7 @@ } }, { - "id": 9417, + "id": 11105, "properties": { "east": "false", "north": "true", @@ -11308,7 +16763,7 @@ } }, { - "id": 9418, + "id": 11106, "properties": { "east": "false", "north": "true", @@ -11318,7 +16773,7 @@ } }, { - "id": 9419, + "id": 11107, "properties": { "east": "false", "north": "false", @@ -11328,7 +16783,7 @@ } }, { - "id": 9420, + "id": 11108, "properties": { "east": "false", "north": "false", @@ -11338,7 +16793,7 @@ } }, { - "id": 9421, + "id": 11109, "properties": { "east": "false", "north": "false", @@ -11348,7 +16803,7 @@ } }, { - "id": 9422, + "id": 11110, "properties": { "east": "false", "north": "false", @@ -11358,7 +16813,7 @@ } }, { - "id": 9423, + "id": 11111, "properties": { "east": "false", "north": "false", @@ -11368,7 +16823,7 @@ } }, { - "id": 9424, + "id": 11112, "properties": { "east": "false", "north": "false", @@ -11378,7 +16833,7 @@ } }, { - "id": 9425, + "id": 11113, "properties": { "east": "false", "north": "false", @@ -11389,7 +16844,7 @@ }, { "default": true, - "id": 9426, + "id": 11114, "properties": { "east": "false", "north": "false", @@ -11423,7 +16878,7 @@ }, "states": [ { - "id": 9203, + "id": 10859, "properties": { "facing": "north", "in_wall": "true", @@ -11432,7 +16887,7 @@ } }, { - "id": 9204, + "id": 10860, "properties": { "facing": "north", "in_wall": "true", @@ -11441,7 +16896,7 @@ } }, { - "id": 9205, + "id": 10861, "properties": { "facing": "north", "in_wall": "true", @@ -11450,7 +16905,7 @@ } }, { - "id": 9206, + "id": 10862, "properties": { "facing": "north", "in_wall": "true", @@ -11459,7 +16914,7 @@ } }, { - "id": 9207, + "id": 10863, "properties": { "facing": "north", "in_wall": "false", @@ -11468,7 +16923,7 @@ } }, { - "id": 9208, + "id": 10864, "properties": { "facing": "north", "in_wall": "false", @@ -11477,7 +16932,7 @@ } }, { - "id": 9209, + "id": 10865, "properties": { "facing": "north", "in_wall": "false", @@ -11487,7 +16942,7 @@ }, { "default": true, - "id": 9210, + "id": 10866, "properties": { "facing": "north", "in_wall": "false", @@ -11496,7 +16951,7 @@ } }, { - "id": 9211, + "id": 10867, "properties": { "facing": "south", "in_wall": "true", @@ -11505,7 +16960,7 @@ } }, { - "id": 9212, + "id": 10868, "properties": { "facing": "south", "in_wall": "true", @@ -11514,7 +16969,7 @@ } }, { - "id": 9213, + "id": 10869, "properties": { "facing": "south", "in_wall": "true", @@ -11523,7 +16978,7 @@ } }, { - "id": 9214, + "id": 10870, "properties": { "facing": "south", "in_wall": "true", @@ -11532,7 +16987,7 @@ } }, { - "id": 9215, + "id": 10871, "properties": { "facing": "south", "in_wall": "false", @@ -11541,7 +16996,7 @@ } }, { - "id": 9216, + "id": 10872, "properties": { "facing": "south", "in_wall": "false", @@ -11550,7 +17005,7 @@ } }, { - "id": 9217, + "id": 10873, "properties": { "facing": "south", "in_wall": "false", @@ -11559,7 +17014,7 @@ } }, { - "id": 9218, + "id": 10874, "properties": { "facing": "south", "in_wall": "false", @@ -11568,7 +17023,7 @@ } }, { - "id": 9219, + "id": 10875, "properties": { "facing": "west", "in_wall": "true", @@ -11577,7 +17032,7 @@ } }, { - "id": 9220, + "id": 10876, "properties": { "facing": "west", "in_wall": "true", @@ -11586,7 +17041,7 @@ } }, { - "id": 9221, + "id": 10877, "properties": { "facing": "west", "in_wall": "true", @@ -11595,7 +17050,7 @@ } }, { - "id": 9222, + "id": 10878, "properties": { "facing": "west", "in_wall": "true", @@ -11604,7 +17059,7 @@ } }, { - "id": 9223, + "id": 10879, "properties": { "facing": "west", "in_wall": "false", @@ -11613,7 +17068,7 @@ } }, { - "id": 9224, + "id": 10880, "properties": { "facing": "west", "in_wall": "false", @@ -11622,7 +17077,7 @@ } }, { - "id": 9225, + "id": 10881, "properties": { "facing": "west", "in_wall": "false", @@ -11631,7 +17086,7 @@ } }, { - "id": 9226, + "id": 10882, "properties": { "facing": "west", "in_wall": "false", @@ -11640,7 +17095,7 @@ } }, { - "id": 9227, + "id": 10883, "properties": { "facing": "east", "in_wall": "true", @@ -11649,7 +17104,7 @@ } }, { - "id": 9228, + "id": 10884, "properties": { "facing": "east", "in_wall": "true", @@ -11658,7 +17113,7 @@ } }, { - "id": 9229, + "id": 10885, "properties": { "facing": "east", "in_wall": "true", @@ -11667,7 +17122,7 @@ } }, { - "id": 9230, + "id": 10886, "properties": { "facing": "east", "in_wall": "true", @@ -11676,7 +17131,7 @@ } }, { - "id": 9231, + "id": 10887, "properties": { "facing": "east", "in_wall": "false", @@ -11685,7 +17140,7 @@ } }, { - "id": 9232, + "id": 10888, "properties": { "facing": "east", "in_wall": "false", @@ -11694,7 +17149,7 @@ } }, { - "id": 9233, + "id": 10889, "properties": { "facing": "east", "in_wall": "false", @@ -11703,7 +17158,7 @@ } }, { - "id": 9234, + "id": 10890, "properties": { "facing": "east", "in_wall": "false", @@ -11713,6 +17168,551 @@ } ] }, + "minecraft:birch_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4870, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 4871, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4872, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4873, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4874, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4875, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4876, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4877, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4878, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4879, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4880, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4881, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4882, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4883, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4884, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4885, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4886, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4887, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4888, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4889, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4890, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4891, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4892, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4893, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4894, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4895, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4896, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4897, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4898, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4899, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4900, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4901, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 4902, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4903, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4904, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4905, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4906, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4907, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4908, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4909, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4910, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4911, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4912, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4913, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4914, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4915, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4916, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4917, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4918, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4919, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4920, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4921, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4922, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4923, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4924, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4925, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4926, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4927, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4928, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4929, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4930, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4931, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4932, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4933, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, "minecraft:birch_leaves": { "properties": { "distance": [ @@ -11734,74 +17734,10 @@ ] }, "states": [ - { - "id": 262, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 263, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 264, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 265, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 266, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 267, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 268, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 269, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, { "id": 270, "properties": { - "distance": "3", + "distance": "1", "persistent": "true", "waterlogged": "true" } @@ -11809,7 +17745,7 @@ { "id": 271, "properties": { - "distance": "3", + "distance": "1", "persistent": "true", "waterlogged": "false" } @@ -11817,7 +17753,7 @@ { "id": 272, "properties": { - "distance": "3", + "distance": "1", "persistent": "false", "waterlogged": "true" } @@ -11825,7 +17761,7 @@ { "id": 273, "properties": { - "distance": "3", + "distance": "1", "persistent": "false", "waterlogged": "false" } @@ -11833,7 +17769,7 @@ { "id": 274, "properties": { - "distance": "4", + "distance": "2", "persistent": "true", "waterlogged": "true" } @@ -11841,7 +17777,7 @@ { "id": 275, "properties": { - "distance": "4", + "distance": "2", "persistent": "true", "waterlogged": "false" } @@ -11849,7 +17785,7 @@ { "id": 276, "properties": { - "distance": "4", + "distance": "2", "persistent": "false", "waterlogged": "true" } @@ -11857,7 +17793,7 @@ { "id": 277, "properties": { - "distance": "4", + "distance": "2", "persistent": "false", "waterlogged": "false" } @@ -11865,7 +17801,7 @@ { "id": 278, "properties": { - "distance": "5", + "distance": "3", "persistent": "true", "waterlogged": "true" } @@ -11873,7 +17809,7 @@ { "id": 279, "properties": { - "distance": "5", + "distance": "3", "persistent": "true", "waterlogged": "false" } @@ -11881,7 +17817,7 @@ { "id": 280, "properties": { - "distance": "5", + "distance": "3", "persistent": "false", "waterlogged": "true" } @@ -11889,7 +17825,7 @@ { "id": 281, "properties": { - "distance": "5", + "distance": "3", "persistent": "false", "waterlogged": "false" } @@ -11897,7 +17833,7 @@ { "id": 282, "properties": { - "distance": "6", + "distance": "4", "persistent": "true", "waterlogged": "true" } @@ -11905,7 +17841,7 @@ { "id": 283, "properties": { - "distance": "6", + "distance": "4", "persistent": "true", "waterlogged": "false" } @@ -11913,7 +17849,7 @@ { "id": 284, "properties": { - "distance": "6", + "distance": "4", "persistent": "false", "waterlogged": "true" } @@ -11921,7 +17857,7 @@ { "id": 285, "properties": { - "distance": "6", + "distance": "4", "persistent": "false", "waterlogged": "false" } @@ -11929,7 +17865,7 @@ { "id": 286, "properties": { - "distance": "7", + "distance": "5", "persistent": "true", "waterlogged": "true" } @@ -11937,13 +17873,77 @@ { "id": 287, "properties": { - "distance": "7", + "distance": "5", "persistent": "true", "waterlogged": "false" } }, { "id": 288, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 289, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 290, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 291, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 292, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 293, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 294, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 295, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 296, "properties": { "distance": "7", "persistent": "false", @@ -11952,7 +17952,7 @@ }, { "default": true, - "id": 289, + "id": 297, "properties": { "distance": "7", "persistent": "false", @@ -11971,20 +17971,20 @@ }, "states": [ { - "id": 123, + "id": 125, "properties": { "axis": "x" } }, { "default": true, - "id": 124, + "id": 126, "properties": { "axis": "y" } }, { - "id": 125, + "id": 127, "properties": { "axis": "z" } @@ -12008,14 +18008,14 @@ }, "states": [ { - "id": 4182, + "id": 5556, "properties": { "powered": "true" } }, { "default": true, - "id": 4183, + "id": 5557, "properties": { "powered": "false" } @@ -12032,13 +18032,13 @@ "states": [ { "default": true, - "id": 26, + "id": 28, "properties": { "stage": "0" } }, { - "id": 27, + "id": 29, "properties": { "stage": "1" } @@ -12072,7 +18072,7 @@ }, "states": [ { - "id": 3700, + "id": 4314, "properties": { "rotation": "0", "waterlogged": "true" @@ -12080,217 +18080,217 @@ }, { "default": true, - "id": 3701, + "id": 4315, "properties": { "rotation": "0", "waterlogged": "false" } }, { - "id": 3702, + "id": 4316, "properties": { "rotation": "1", "waterlogged": "true" } }, { - "id": 3703, + "id": 4317, "properties": { "rotation": "1", "waterlogged": "false" } }, { - "id": 3704, + "id": 4318, "properties": { "rotation": "2", "waterlogged": "true" } }, { - "id": 3705, + "id": 4319, "properties": { "rotation": "2", "waterlogged": "false" } }, { - "id": 3706, + "id": 4320, "properties": { "rotation": "3", "waterlogged": "true" } }, { - "id": 3707, + "id": 4321, "properties": { "rotation": "3", "waterlogged": "false" } }, { - "id": 3708, + "id": 4322, "properties": { "rotation": "4", "waterlogged": "true" } }, { - "id": 3709, + "id": 4323, "properties": { "rotation": "4", "waterlogged": "false" } }, { - "id": 3710, + "id": 4324, "properties": { "rotation": "5", "waterlogged": "true" } }, { - "id": 3711, + "id": 4325, "properties": { "rotation": "5", "waterlogged": "false" } }, { - "id": 3712, + "id": 4326, "properties": { "rotation": "6", "waterlogged": "true" } }, { - "id": 3713, + "id": 4327, "properties": { "rotation": "6", "waterlogged": "false" } }, { - "id": 3714, + "id": 4328, "properties": { "rotation": "7", "waterlogged": "true" } }, { - "id": 3715, + "id": 4329, "properties": { "rotation": "7", "waterlogged": "false" } }, { - "id": 3716, + "id": 4330, "properties": { "rotation": "8", "waterlogged": "true" } }, { - "id": 3717, + "id": 4331, "properties": { "rotation": "8", "waterlogged": "false" } }, { - "id": 3718, + "id": 4332, "properties": { "rotation": "9", "waterlogged": "true" } }, { - "id": 3719, + "id": 4333, "properties": { "rotation": "9", "waterlogged": "false" } }, { - "id": 3720, + "id": 4334, "properties": { "rotation": "10", "waterlogged": "true" } }, { - "id": 3721, + "id": 4335, "properties": { "rotation": "10", "waterlogged": "false" } }, { - "id": 3722, + "id": 4336, "properties": { "rotation": "11", "waterlogged": "true" } }, { - "id": 3723, + "id": 4337, "properties": { "rotation": "11", "waterlogged": "false" } }, { - "id": 3724, + "id": 4338, "properties": { "rotation": "12", "waterlogged": "true" } }, { - "id": 3725, + "id": 4339, "properties": { "rotation": "12", "waterlogged": "false" } }, { - "id": 3726, + "id": 4340, "properties": { "rotation": "13", "waterlogged": "true" } }, { - "id": 3727, + "id": 4341, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 3728, + "id": 4342, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 3729, + "id": 4343, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 3730, + "id": 4344, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 3731, + "id": 4345, "properties": { "rotation": "15", "waterlogged": "false" @@ -12312,21 +18312,21 @@ }, "states": [ { - "id": 9053, + "id": 10697, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 9054, + "id": 10698, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 9055, + "id": 10699, "properties": { "type": "bottom", "waterlogged": "true" @@ -12334,21 +18334,21 @@ }, { "default": true, - "id": 9056, + "id": 10700, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 9057, + "id": 10701, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 9058, + "id": 10702, "properties": { "type": "double", "waterlogged": "false" @@ -12382,7 +18382,7 @@ }, "states": [ { - "id": 6076, + "id": 7516, "properties": { "facing": "north", "half": "top", @@ -12391,7 +18391,7 @@ } }, { - "id": 6077, + "id": 7517, "properties": { "facing": "north", "half": "top", @@ -12400,7 +18400,7 @@ } }, { - "id": 6078, + "id": 7518, "properties": { "facing": "north", "half": "top", @@ -12409,7 +18409,7 @@ } }, { - "id": 6079, + "id": 7519, "properties": { "facing": "north", "half": "top", @@ -12418,7 +18418,7 @@ } }, { - "id": 6080, + "id": 7520, "properties": { "facing": "north", "half": "top", @@ -12427,7 +18427,7 @@ } }, { - "id": 6081, + "id": 7521, "properties": { "facing": "north", "half": "top", @@ -12436,7 +18436,7 @@ } }, { - "id": 6082, + "id": 7522, "properties": { "facing": "north", "half": "top", @@ -12445,7 +18445,7 @@ } }, { - "id": 6083, + "id": 7523, "properties": { "facing": "north", "half": "top", @@ -12454,7 +18454,7 @@ } }, { - "id": 6084, + "id": 7524, "properties": { "facing": "north", "half": "top", @@ -12463,7 +18463,7 @@ } }, { - "id": 6085, + "id": 7525, "properties": { "facing": "north", "half": "top", @@ -12472,7 +18472,7 @@ } }, { - "id": 6086, + "id": 7526, "properties": { "facing": "north", "half": "bottom", @@ -12482,7 +18482,7 @@ }, { "default": true, - "id": 6087, + "id": 7527, "properties": { "facing": "north", "half": "bottom", @@ -12491,7 +18491,7 @@ } }, { - "id": 6088, + "id": 7528, "properties": { "facing": "north", "half": "bottom", @@ -12500,7 +18500,7 @@ } }, { - "id": 6089, + "id": 7529, "properties": { "facing": "north", "half": "bottom", @@ -12509,7 +18509,7 @@ } }, { - "id": 6090, + "id": 7530, "properties": { "facing": "north", "half": "bottom", @@ -12518,7 +18518,7 @@ } }, { - "id": 6091, + "id": 7531, "properties": { "facing": "north", "half": "bottom", @@ -12527,7 +18527,7 @@ } }, { - "id": 6092, + "id": 7532, "properties": { "facing": "north", "half": "bottom", @@ -12536,7 +18536,7 @@ } }, { - "id": 6093, + "id": 7533, "properties": { "facing": "north", "half": "bottom", @@ -12545,7 +18545,7 @@ } }, { - "id": 6094, + "id": 7534, "properties": { "facing": "north", "half": "bottom", @@ -12554,7 +18554,7 @@ } }, { - "id": 6095, + "id": 7535, "properties": { "facing": "north", "half": "bottom", @@ -12563,7 +18563,7 @@ } }, { - "id": 6096, + "id": 7536, "properties": { "facing": "south", "half": "top", @@ -12572,7 +18572,7 @@ } }, { - "id": 6097, + "id": 7537, "properties": { "facing": "south", "half": "top", @@ -12581,7 +18581,7 @@ } }, { - "id": 6098, + "id": 7538, "properties": { "facing": "south", "half": "top", @@ -12590,7 +18590,7 @@ } }, { - "id": 6099, + "id": 7539, "properties": { "facing": "south", "half": "top", @@ -12599,7 +18599,7 @@ } }, { - "id": 6100, + "id": 7540, "properties": { "facing": "south", "half": "top", @@ -12608,7 +18608,7 @@ } }, { - "id": 6101, + "id": 7541, "properties": { "facing": "south", "half": "top", @@ -12617,7 +18617,7 @@ } }, { - "id": 6102, + "id": 7542, "properties": { "facing": "south", "half": "top", @@ -12626,7 +18626,7 @@ } }, { - "id": 6103, + "id": 7543, "properties": { "facing": "south", "half": "top", @@ -12635,7 +18635,7 @@ } }, { - "id": 6104, + "id": 7544, "properties": { "facing": "south", "half": "top", @@ -12644,7 +18644,7 @@ } }, { - "id": 6105, + "id": 7545, "properties": { "facing": "south", "half": "top", @@ -12653,7 +18653,7 @@ } }, { - "id": 6106, + "id": 7546, "properties": { "facing": "south", "half": "bottom", @@ -12662,7 +18662,7 @@ } }, { - "id": 6107, + "id": 7547, "properties": { "facing": "south", "half": "bottom", @@ -12671,7 +18671,7 @@ } }, { - "id": 6108, + "id": 7548, "properties": { "facing": "south", "half": "bottom", @@ -12680,7 +18680,7 @@ } }, { - "id": 6109, + "id": 7549, "properties": { "facing": "south", "half": "bottom", @@ -12689,7 +18689,7 @@ } }, { - "id": 6110, + "id": 7550, "properties": { "facing": "south", "half": "bottom", @@ -12698,7 +18698,7 @@ } }, { - "id": 6111, + "id": 7551, "properties": { "facing": "south", "half": "bottom", @@ -12707,7 +18707,7 @@ } }, { - "id": 6112, + "id": 7552, "properties": { "facing": "south", "half": "bottom", @@ -12716,7 +18716,7 @@ } }, { - "id": 6113, + "id": 7553, "properties": { "facing": "south", "half": "bottom", @@ -12725,7 +18725,7 @@ } }, { - "id": 6114, + "id": 7554, "properties": { "facing": "south", "half": "bottom", @@ -12734,7 +18734,7 @@ } }, { - "id": 6115, + "id": 7555, "properties": { "facing": "south", "half": "bottom", @@ -12743,7 +18743,7 @@ } }, { - "id": 6116, + "id": 7556, "properties": { "facing": "west", "half": "top", @@ -12752,7 +18752,7 @@ } }, { - "id": 6117, + "id": 7557, "properties": { "facing": "west", "half": "top", @@ -12761,7 +18761,7 @@ } }, { - "id": 6118, + "id": 7558, "properties": { "facing": "west", "half": "top", @@ -12770,7 +18770,7 @@ } }, { - "id": 6119, + "id": 7559, "properties": { "facing": "west", "half": "top", @@ -12779,7 +18779,7 @@ } }, { - "id": 6120, + "id": 7560, "properties": { "facing": "west", "half": "top", @@ -12788,7 +18788,7 @@ } }, { - "id": 6121, + "id": 7561, "properties": { "facing": "west", "half": "top", @@ -12797,7 +18797,7 @@ } }, { - "id": 6122, + "id": 7562, "properties": { "facing": "west", "half": "top", @@ -12806,7 +18806,7 @@ } }, { - "id": 6123, + "id": 7563, "properties": { "facing": "west", "half": "top", @@ -12815,7 +18815,7 @@ } }, { - "id": 6124, + "id": 7564, "properties": { "facing": "west", "half": "top", @@ -12824,7 +18824,7 @@ } }, { - "id": 6125, + "id": 7565, "properties": { "facing": "west", "half": "top", @@ -12833,7 +18833,7 @@ } }, { - "id": 6126, + "id": 7566, "properties": { "facing": "west", "half": "bottom", @@ -12842,7 +18842,7 @@ } }, { - "id": 6127, + "id": 7567, "properties": { "facing": "west", "half": "bottom", @@ -12851,7 +18851,7 @@ } }, { - "id": 6128, + "id": 7568, "properties": { "facing": "west", "half": "bottom", @@ -12860,7 +18860,7 @@ } }, { - "id": 6129, + "id": 7569, "properties": { "facing": "west", "half": "bottom", @@ -12869,7 +18869,7 @@ } }, { - "id": 6130, + "id": 7570, "properties": { "facing": "west", "half": "bottom", @@ -12878,7 +18878,7 @@ } }, { - "id": 6131, + "id": 7571, "properties": { "facing": "west", "half": "bottom", @@ -12887,7 +18887,7 @@ } }, { - "id": 6132, + "id": 7572, "properties": { "facing": "west", "half": "bottom", @@ -12896,7 +18896,7 @@ } }, { - "id": 6133, + "id": 7573, "properties": { "facing": "west", "half": "bottom", @@ -12905,7 +18905,7 @@ } }, { - "id": 6134, + "id": 7574, "properties": { "facing": "west", "half": "bottom", @@ -12914,7 +18914,7 @@ } }, { - "id": 6135, + "id": 7575, "properties": { "facing": "west", "half": "bottom", @@ -12923,7 +18923,7 @@ } }, { - "id": 6136, + "id": 7576, "properties": { "facing": "east", "half": "top", @@ -12932,7 +18932,7 @@ } }, { - "id": 6137, + "id": 7577, "properties": { "facing": "east", "half": "top", @@ -12941,7 +18941,7 @@ } }, { - "id": 6138, + "id": 7578, "properties": { "facing": "east", "half": "top", @@ -12950,7 +18950,7 @@ } }, { - "id": 6139, + "id": 7579, "properties": { "facing": "east", "half": "top", @@ -12959,7 +18959,7 @@ } }, { - "id": 6140, + "id": 7580, "properties": { "facing": "east", "half": "top", @@ -12968,7 +18968,7 @@ } }, { - "id": 6141, + "id": 7581, "properties": { "facing": "east", "half": "top", @@ -12977,7 +18977,7 @@ } }, { - "id": 6142, + "id": 7582, "properties": { "facing": "east", "half": "top", @@ -12986,7 +18986,7 @@ } }, { - "id": 6143, + "id": 7583, "properties": { "facing": "east", "half": "top", @@ -12995,7 +18995,7 @@ } }, { - "id": 6144, + "id": 7584, "properties": { "facing": "east", "half": "top", @@ -13004,7 +19004,7 @@ } }, { - "id": 6145, + "id": 7585, "properties": { "facing": "east", "half": "top", @@ -13013,7 +19013,7 @@ } }, { - "id": 6146, + "id": 7586, "properties": { "facing": "east", "half": "bottom", @@ -13022,7 +19022,7 @@ } }, { - "id": 6147, + "id": 7587, "properties": { "facing": "east", "half": "bottom", @@ -13031,7 +19031,7 @@ } }, { - "id": 6148, + "id": 7588, "properties": { "facing": "east", "half": "bottom", @@ -13040,7 +19040,7 @@ } }, { - "id": 6149, + "id": 7589, "properties": { "facing": "east", "half": "bottom", @@ -13049,7 +19049,7 @@ } }, { - "id": 6150, + "id": 7590, "properties": { "facing": "east", "half": "bottom", @@ -13058,7 +19058,7 @@ } }, { - "id": 6151, + "id": 7591, "properties": { "facing": "east", "half": "bottom", @@ -13067,7 +19067,7 @@ } }, { - "id": 6152, + "id": 7592, "properties": { "facing": "east", "half": "bottom", @@ -13076,7 +19076,7 @@ } }, { - "id": 6153, + "id": 7593, "properties": { "facing": "east", "half": "bottom", @@ -13085,7 +19085,7 @@ } }, { - "id": 6154, + "id": 7594, "properties": { "facing": "east", "half": "bottom", @@ -13094,7 +19094,7 @@ } }, { - "id": 6155, + "id": 7595, "properties": { "facing": "east", "half": "bottom", @@ -13131,7 +19131,7 @@ }, "states": [ { - "id": 4548, + "id": 5924, "properties": { "facing": "north", "half": "top", @@ -13141,7 +19141,7 @@ } }, { - "id": 4549, + "id": 5925, "properties": { "facing": "north", "half": "top", @@ -13151,7 +19151,7 @@ } }, { - "id": 4550, + "id": 5926, "properties": { "facing": "north", "half": "top", @@ -13161,7 +19161,7 @@ } }, { - "id": 4551, + "id": 5927, "properties": { "facing": "north", "half": "top", @@ -13171,7 +19171,7 @@ } }, { - "id": 4552, + "id": 5928, "properties": { "facing": "north", "half": "top", @@ -13181,7 +19181,7 @@ } }, { - "id": 4553, + "id": 5929, "properties": { "facing": "north", "half": "top", @@ -13191,7 +19191,7 @@ } }, { - "id": 4554, + "id": 5930, "properties": { "facing": "north", "half": "top", @@ -13201,7 +19201,7 @@ } }, { - "id": 4555, + "id": 5931, "properties": { "facing": "north", "half": "top", @@ -13211,7 +19211,7 @@ } }, { - "id": 4556, + "id": 5932, "properties": { "facing": "north", "half": "bottom", @@ -13221,7 +19221,7 @@ } }, { - "id": 4557, + "id": 5933, "properties": { "facing": "north", "half": "bottom", @@ -13231,7 +19231,7 @@ } }, { - "id": 4558, + "id": 5934, "properties": { "facing": "north", "half": "bottom", @@ -13241,7 +19241,7 @@ } }, { - "id": 4559, + "id": 5935, "properties": { "facing": "north", "half": "bottom", @@ -13251,7 +19251,7 @@ } }, { - "id": 4560, + "id": 5936, "properties": { "facing": "north", "half": "bottom", @@ -13261,7 +19261,7 @@ } }, { - "id": 4561, + "id": 5937, "properties": { "facing": "north", "half": "bottom", @@ -13271,7 +19271,7 @@ } }, { - "id": 4562, + "id": 5938, "properties": { "facing": "north", "half": "bottom", @@ -13282,7 +19282,7 @@ }, { "default": true, - "id": 4563, + "id": 5939, "properties": { "facing": "north", "half": "bottom", @@ -13292,7 +19292,7 @@ } }, { - "id": 4564, + "id": 5940, "properties": { "facing": "south", "half": "top", @@ -13302,7 +19302,7 @@ } }, { - "id": 4565, + "id": 5941, "properties": { "facing": "south", "half": "top", @@ -13312,7 +19312,7 @@ } }, { - "id": 4566, + "id": 5942, "properties": { "facing": "south", "half": "top", @@ -13322,7 +19322,7 @@ } }, { - "id": 4567, + "id": 5943, "properties": { "facing": "south", "half": "top", @@ -13332,7 +19332,7 @@ } }, { - "id": 4568, + "id": 5944, "properties": { "facing": "south", "half": "top", @@ -13342,7 +19342,7 @@ } }, { - "id": 4569, + "id": 5945, "properties": { "facing": "south", "half": "top", @@ -13352,7 +19352,7 @@ } }, { - "id": 4570, + "id": 5946, "properties": { "facing": "south", "half": "top", @@ -13362,7 +19362,7 @@ } }, { - "id": 4571, + "id": 5947, "properties": { "facing": "south", "half": "top", @@ -13372,7 +19372,7 @@ } }, { - "id": 4572, + "id": 5948, "properties": { "facing": "south", "half": "bottom", @@ -13382,7 +19382,7 @@ } }, { - "id": 4573, + "id": 5949, "properties": { "facing": "south", "half": "bottom", @@ -13392,7 +19392,7 @@ } }, { - "id": 4574, + "id": 5950, "properties": { "facing": "south", "half": "bottom", @@ -13402,7 +19402,7 @@ } }, { - "id": 4575, + "id": 5951, "properties": { "facing": "south", "half": "bottom", @@ -13412,7 +19412,7 @@ } }, { - "id": 4576, + "id": 5952, "properties": { "facing": "south", "half": "bottom", @@ -13422,7 +19422,7 @@ } }, { - "id": 4577, + "id": 5953, "properties": { "facing": "south", "half": "bottom", @@ -13432,7 +19432,7 @@ } }, { - "id": 4578, + "id": 5954, "properties": { "facing": "south", "half": "bottom", @@ -13442,7 +19442,7 @@ } }, { - "id": 4579, + "id": 5955, "properties": { "facing": "south", "half": "bottom", @@ -13452,7 +19452,7 @@ } }, { - "id": 4580, + "id": 5956, "properties": { "facing": "west", "half": "top", @@ -13462,7 +19462,7 @@ } }, { - "id": 4581, + "id": 5957, "properties": { "facing": "west", "half": "top", @@ -13472,7 +19472,7 @@ } }, { - "id": 4582, + "id": 5958, "properties": { "facing": "west", "half": "top", @@ -13482,7 +19482,7 @@ } }, { - "id": 4583, + "id": 5959, "properties": { "facing": "west", "half": "top", @@ -13492,7 +19492,7 @@ } }, { - "id": 4584, + "id": 5960, "properties": { "facing": "west", "half": "top", @@ -13502,7 +19502,7 @@ } }, { - "id": 4585, + "id": 5961, "properties": { "facing": "west", "half": "top", @@ -13512,7 +19512,7 @@ } }, { - "id": 4586, + "id": 5962, "properties": { "facing": "west", "half": "top", @@ -13522,7 +19522,7 @@ } }, { - "id": 4587, + "id": 5963, "properties": { "facing": "west", "half": "top", @@ -13532,7 +19532,7 @@ } }, { - "id": 4588, + "id": 5964, "properties": { "facing": "west", "half": "bottom", @@ -13542,7 +19542,7 @@ } }, { - "id": 4589, + "id": 5965, "properties": { "facing": "west", "half": "bottom", @@ -13552,7 +19552,7 @@ } }, { - "id": 4590, + "id": 5966, "properties": { "facing": "west", "half": "bottom", @@ -13562,7 +19562,7 @@ } }, { - "id": 4591, + "id": 5967, "properties": { "facing": "west", "half": "bottom", @@ -13572,7 +19572,7 @@ } }, { - "id": 4592, + "id": 5968, "properties": { "facing": "west", "half": "bottom", @@ -13582,7 +19582,7 @@ } }, { - "id": 4593, + "id": 5969, "properties": { "facing": "west", "half": "bottom", @@ -13592,7 +19592,7 @@ } }, { - "id": 4594, + "id": 5970, "properties": { "facing": "west", "half": "bottom", @@ -13602,7 +19602,7 @@ } }, { - "id": 4595, + "id": 5971, "properties": { "facing": "west", "half": "bottom", @@ -13612,7 +19612,7 @@ } }, { - "id": 4596, + "id": 5972, "properties": { "facing": "east", "half": "top", @@ -13622,7 +19622,7 @@ } }, { - "id": 4597, + "id": 5973, "properties": { "facing": "east", "half": "top", @@ -13632,7 +19632,7 @@ } }, { - "id": 4598, + "id": 5974, "properties": { "facing": "east", "half": "top", @@ -13642,7 +19642,7 @@ } }, { - "id": 4599, + "id": 5975, "properties": { "facing": "east", "half": "top", @@ -13652,7 +19652,7 @@ } }, { - "id": 4600, + "id": 5976, "properties": { "facing": "east", "half": "top", @@ -13662,7 +19662,7 @@ } }, { - "id": 4601, + "id": 5977, "properties": { "facing": "east", "half": "top", @@ -13672,7 +19672,7 @@ } }, { - "id": 4602, + "id": 5978, "properties": { "facing": "east", "half": "top", @@ -13682,7 +19682,7 @@ } }, { - "id": 4603, + "id": 5979, "properties": { "facing": "east", "half": "top", @@ -13692,7 +19692,7 @@ } }, { - "id": 4604, + "id": 5980, "properties": { "facing": "east", "half": "bottom", @@ -13702,7 +19702,7 @@ } }, { - "id": 4605, + "id": 5981, "properties": { "facing": "east", "half": "bottom", @@ -13712,7 +19712,7 @@ } }, { - "id": 4606, + "id": 5982, "properties": { "facing": "east", "half": "bottom", @@ -13722,7 +19722,7 @@ } }, { - "id": 4607, + "id": 5983, "properties": { "facing": "east", "half": "bottom", @@ -13732,7 +19732,7 @@ } }, { - "id": 4608, + "id": 5984, "properties": { "facing": "east", "half": "bottom", @@ -13742,7 +19742,7 @@ } }, { - "id": 4609, + "id": 5985, "properties": { "facing": "east", "half": "bottom", @@ -13752,7 +19752,7 @@ } }, { - "id": 4610, + "id": 5986, "properties": { "facing": "east", "half": "bottom", @@ -13762,7 +19762,7 @@ } }, { - "id": 4611, + "id": 5987, "properties": { "facing": "east", "half": "bottom", @@ -13773,6 +19773,79 @@ } ] }, + "minecraft:birch_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5398, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5399, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5400, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5401, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5402, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5403, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5404, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5405, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, "minecraft:birch_wall_sign": { "properties": { "facing": [ @@ -13788,7 +19861,7 @@ }, "states": [ { - "id": 4048, + "id": 4694, "properties": { "facing": "north", "waterlogged": "true" @@ -13796,49 +19869,49 @@ }, { "default": true, - "id": 4049, + "id": 4695, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 4050, + "id": 4696, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 4051, + "id": 4697, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 4052, + "id": 4698, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 4053, + "id": 4699, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 4054, + "id": 4700, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4055, + "id": 4701, "properties": { "facing": "east", "waterlogged": "false" @@ -13856,20 +19929,20 @@ }, "states": [ { - "id": 170, + "id": 178, "properties": { "axis": "x" } }, { "default": true, - "id": 171, + "id": 179, "properties": { "axis": "y" } }, { - "id": 172, + "id": 180, "properties": { "axis": "z" } @@ -13900,97 +19973,97 @@ "states": [ { "default": true, - "id": 8878, + "id": 10522, "properties": { "rotation": "0" } }, { - "id": 8879, + "id": 10523, "properties": { "rotation": "1" } }, { - "id": 8880, + "id": 10524, "properties": { "rotation": "2" } }, { - "id": 8881, + "id": 10525, "properties": { "rotation": "3" } }, { - "id": 8882, + "id": 10526, "properties": { "rotation": "4" } }, { - "id": 8883, + "id": 10527, "properties": { "rotation": "5" } }, { - "id": 8884, + "id": 10528, "properties": { "rotation": "6" } }, { - "id": 8885, + "id": 10529, "properties": { "rotation": "7" } }, { - "id": 8886, + "id": 10530, "properties": { "rotation": "8" } }, { - "id": 8887, + "id": 10531, "properties": { "rotation": "9" } }, { - "id": 8888, + "id": 10532, "properties": { "rotation": "10" } }, { - "id": 8889, + "id": 10533, "properties": { "rotation": "11" } }, { - "id": 8890, + "id": 10534, "properties": { "rotation": "12" } }, { - "id": 8891, + "id": 10535, "properties": { "rotation": "13" } }, { - "id": 8892, + "id": 10536, "properties": { "rotation": "14" } }, { - "id": 8893, + "id": 10537, "properties": { "rotation": "15" } @@ -14016,7 +20089,7 @@ }, "states": [ { - "id": 1519, + "id": 1877, "properties": { "facing": "north", "occupied": "true", @@ -14024,7 +20097,7 @@ } }, { - "id": 1520, + "id": 1878, "properties": { "facing": "north", "occupied": "true", @@ -14032,7 +20105,7 @@ } }, { - "id": 1521, + "id": 1879, "properties": { "facing": "north", "occupied": "false", @@ -14041,7 +20114,7 @@ }, { "default": true, - "id": 1522, + "id": 1880, "properties": { "facing": "north", "occupied": "false", @@ -14049,7 +20122,7 @@ } }, { - "id": 1523, + "id": 1881, "properties": { "facing": "south", "occupied": "true", @@ -14057,7 +20130,7 @@ } }, { - "id": 1524, + "id": 1882, "properties": { "facing": "south", "occupied": "true", @@ -14065,7 +20138,7 @@ } }, { - "id": 1525, + "id": 1883, "properties": { "facing": "south", "occupied": "false", @@ -14073,7 +20146,7 @@ } }, { - "id": 1526, + "id": 1884, "properties": { "facing": "south", "occupied": "false", @@ -14081,7 +20154,7 @@ } }, { - "id": 1527, + "id": 1885, "properties": { "facing": "west", "occupied": "true", @@ -14089,7 +20162,7 @@ } }, { - "id": 1528, + "id": 1886, "properties": { "facing": "west", "occupied": "true", @@ -14097,7 +20170,7 @@ } }, { - "id": 1529, + "id": 1887, "properties": { "facing": "west", "occupied": "false", @@ -14105,7 +20178,7 @@ } }, { - "id": 1530, + "id": 1888, "properties": { "facing": "west", "occupied": "false", @@ -14113,7 +20186,7 @@ } }, { - "id": 1531, + "id": 1889, "properties": { "facing": "east", "occupied": "true", @@ -14121,7 +20194,7 @@ } }, { - "id": 1532, + "id": 1890, "properties": { "facing": "east", "occupied": "true", @@ -14129,7 +20202,7 @@ } }, { - "id": 1533, + "id": 1891, "properties": { "facing": "east", "occupied": "false", @@ -14137,7 +20210,7 @@ } }, { - "id": 1534, + "id": 1892, "properties": { "facing": "east", "occupied": "false", @@ -14165,7 +20238,7 @@ }, "states": [ { - "id": 18569, + "id": 20353, "properties": { "candles": "1", "lit": "true", @@ -14173,7 +20246,7 @@ } }, { - "id": 18570, + "id": 20354, "properties": { "candles": "1", "lit": "true", @@ -14181,7 +20254,7 @@ } }, { - "id": 18571, + "id": 20355, "properties": { "candles": "1", "lit": "false", @@ -14190,7 +20263,7 @@ }, { "default": true, - "id": 18572, + "id": 20356, "properties": { "candles": "1", "lit": "false", @@ -14198,7 +20271,7 @@ } }, { - "id": 18573, + "id": 20357, "properties": { "candles": "2", "lit": "true", @@ -14206,7 +20279,7 @@ } }, { - "id": 18574, + "id": 20358, "properties": { "candles": "2", "lit": "true", @@ -14214,7 +20287,7 @@ } }, { - "id": 18575, + "id": 20359, "properties": { "candles": "2", "lit": "false", @@ -14222,7 +20295,7 @@ } }, { - "id": 18576, + "id": 20360, "properties": { "candles": "2", "lit": "false", @@ -14230,7 +20303,7 @@ } }, { - "id": 18577, + "id": 20361, "properties": { "candles": "3", "lit": "true", @@ -14238,7 +20311,7 @@ } }, { - "id": 18578, + "id": 20362, "properties": { "candles": "3", "lit": "true", @@ -14246,7 +20319,7 @@ } }, { - "id": 18579, + "id": 20363, "properties": { "candles": "3", "lit": "false", @@ -14254,7 +20327,7 @@ } }, { - "id": 18580, + "id": 20364, "properties": { "candles": "3", "lit": "false", @@ -14262,7 +20335,7 @@ } }, { - "id": 18581, + "id": 20365, "properties": { "candles": "4", "lit": "true", @@ -14270,7 +20343,7 @@ } }, { - "id": 18582, + "id": 20366, "properties": { "candles": "4", "lit": "true", @@ -14278,7 +20351,7 @@ } }, { - "id": 18583, + "id": 20367, "properties": { "candles": "4", "lit": "false", @@ -14286,7 +20359,7 @@ } }, { - "id": 18584, + "id": 20368, "properties": { "candles": "4", "lit": "false", @@ -14304,14 +20377,14 @@ }, "states": [ { - "id": 18617, + "id": 20401, "properties": { "lit": "true" } }, { "default": true, - "id": 18618, + "id": 20402, "properties": { "lit": "false" } @@ -14322,7 +20395,7 @@ "states": [ { "default": true, - "id": 8622 + "id": 10266 } ] }, @@ -14330,7 +20403,7 @@ "states": [ { "default": true, - "id": 10334 + "id": 12118 } ] }, @@ -14338,7 +20411,7 @@ "states": [ { "default": true, - "id": 10350 + "id": 12134 } ] }, @@ -14354,25 +20427,25 @@ "states": [ { "default": true, - "id": 10315, + "id": 12099, "properties": { "facing": "north" } }, { - "id": 10316, + "id": 12100, "properties": { "facing": "south" } }, { - "id": 10317, + "id": 12101, "properties": { "facing": "west" } }, { - "id": 10318, + "id": 12102, "properties": { "facing": "east" } @@ -14392,38 +20465,38 @@ }, "states": [ { - "id": 10249, + "id": 12033, "properties": { "facing": "north" } }, { - "id": 10250, + "id": 12034, "properties": { "facing": "east" } }, { - "id": 10251, + "id": 12035, "properties": { "facing": "south" } }, { - "id": 10252, + "id": 12036, "properties": { "facing": "west" } }, { "default": true, - "id": 10253, + "id": 12037, "properties": { "facing": "up" } }, { - "id": 10254, + "id": 12038, "properties": { "facing": "down" } @@ -14434,7 +20507,7 @@ "states": [ { "default": true, - "id": 4419 + "id": 5795 } ] }, @@ -14463,7 +20536,7 @@ }, "states": [ { - "id": 7972, + "id": 9456, "properties": { "east": "true", "north": "true", @@ -14473,7 +20546,7 @@ } }, { - "id": 7973, + "id": 9457, "properties": { "east": "true", "north": "true", @@ -14483,7 +20556,7 @@ } }, { - "id": 7974, + "id": 9458, "properties": { "east": "true", "north": "true", @@ -14493,7 +20566,7 @@ } }, { - "id": 7975, + "id": 9459, "properties": { "east": "true", "north": "true", @@ -14503,7 +20576,7 @@ } }, { - "id": 7976, + "id": 9460, "properties": { "east": "true", "north": "true", @@ -14513,7 +20586,7 @@ } }, { - "id": 7977, + "id": 9461, "properties": { "east": "true", "north": "true", @@ -14523,7 +20596,7 @@ } }, { - "id": 7978, + "id": 9462, "properties": { "east": "true", "north": "true", @@ -14533,7 +20606,7 @@ } }, { - "id": 7979, + "id": 9463, "properties": { "east": "true", "north": "true", @@ -14543,7 +20616,7 @@ } }, { - "id": 7980, + "id": 9464, "properties": { "east": "true", "north": "false", @@ -14553,7 +20626,7 @@ } }, { - "id": 7981, + "id": 9465, "properties": { "east": "true", "north": "false", @@ -14563,7 +20636,7 @@ } }, { - "id": 7982, + "id": 9466, "properties": { "east": "true", "north": "false", @@ -14573,7 +20646,7 @@ } }, { - "id": 7983, + "id": 9467, "properties": { "east": "true", "north": "false", @@ -14583,7 +20656,7 @@ } }, { - "id": 7984, + "id": 9468, "properties": { "east": "true", "north": "false", @@ -14593,7 +20666,7 @@ } }, { - "id": 7985, + "id": 9469, "properties": { "east": "true", "north": "false", @@ -14603,7 +20676,7 @@ } }, { - "id": 7986, + "id": 9470, "properties": { "east": "true", "north": "false", @@ -14613,7 +20686,7 @@ } }, { - "id": 7987, + "id": 9471, "properties": { "east": "true", "north": "false", @@ -14623,7 +20696,7 @@ } }, { - "id": 7988, + "id": 9472, "properties": { "east": "false", "north": "true", @@ -14633,7 +20706,7 @@ } }, { - "id": 7989, + "id": 9473, "properties": { "east": "false", "north": "true", @@ -14643,7 +20716,7 @@ } }, { - "id": 7990, + "id": 9474, "properties": { "east": "false", "north": "true", @@ -14653,7 +20726,7 @@ } }, { - "id": 7991, + "id": 9475, "properties": { "east": "false", "north": "true", @@ -14663,7 +20736,7 @@ } }, { - "id": 7992, + "id": 9476, "properties": { "east": "false", "north": "true", @@ -14673,7 +20746,7 @@ } }, { - "id": 7993, + "id": 9477, "properties": { "east": "false", "north": "true", @@ -14683,7 +20756,7 @@ } }, { - "id": 7994, + "id": 9478, "properties": { "east": "false", "north": "true", @@ -14693,7 +20766,7 @@ } }, { - "id": 7995, + "id": 9479, "properties": { "east": "false", "north": "true", @@ -14703,7 +20776,7 @@ } }, { - "id": 7996, + "id": 9480, "properties": { "east": "false", "north": "false", @@ -14713,7 +20786,7 @@ } }, { - "id": 7997, + "id": 9481, "properties": { "east": "false", "north": "false", @@ -14723,7 +20796,7 @@ } }, { - "id": 7998, + "id": 9482, "properties": { "east": "false", "north": "false", @@ -14733,7 +20806,7 @@ } }, { - "id": 7999, + "id": 9483, "properties": { "east": "false", "north": "false", @@ -14743,7 +20816,7 @@ } }, { - "id": 8000, + "id": 9484, "properties": { "east": "false", "north": "false", @@ -14753,7 +20826,7 @@ } }, { - "id": 8001, + "id": 9485, "properties": { "east": "false", "north": "false", @@ -14763,7 +20836,7 @@ } }, { - "id": 8002, + "id": 9486, "properties": { "east": "false", "north": "false", @@ -14774,7 +20847,7 @@ }, { "default": true, - "id": 8003, + "id": 9487, "properties": { "east": "false", "north": "false", @@ -14789,7 +20862,7 @@ "states": [ { "default": true, - "id": 7491 + "id": 8975 } ] }, @@ -14805,25 +20878,25 @@ "states": [ { "default": true, - "id": 8954, + "id": 10598, "properties": { "facing": "north" } }, { - "id": 8955, + "id": 10599, "properties": { "facing": "south" } }, { - "id": 8956, + "id": 10600, "properties": { "facing": "west" } }, { - "id": 8957, + "id": 10601, "properties": { "facing": "east" } @@ -14834,7 +20907,7 @@ "states": [ { "default": true, - "id": 1653 + "id": 2011 } ] }, @@ -14842,7 +20915,7 @@ "states": [ { "default": true, - "id": 17048 + "id": 18832 } ] }, @@ -14860,21 +20933,21 @@ }, "states": [ { - "id": 17453, + "id": 19237, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 17454, + "id": 19238, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 17455, + "id": 19239, "properties": { "type": "bottom", "waterlogged": "true" @@ -14882,21 +20955,21 @@ }, { "default": true, - "id": 17456, + "id": 19240, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 17457, + "id": 19241, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 17458, + "id": 19242, "properties": { "type": "double", "waterlogged": "false" @@ -14930,7 +21003,7 @@ }, "states": [ { - "id": 17049, + "id": 18833, "properties": { "facing": "north", "half": "top", @@ -14939,7 +21012,7 @@ } }, { - "id": 17050, + "id": 18834, "properties": { "facing": "north", "half": "top", @@ -14948,7 +21021,7 @@ } }, { - "id": 17051, + "id": 18835, "properties": { "facing": "north", "half": "top", @@ -14957,7 +21030,7 @@ } }, { - "id": 17052, + "id": 18836, "properties": { "facing": "north", "half": "top", @@ -14966,7 +21039,7 @@ } }, { - "id": 17053, + "id": 18837, "properties": { "facing": "north", "half": "top", @@ -14975,7 +21048,7 @@ } }, { - "id": 17054, + "id": 18838, "properties": { "facing": "north", "half": "top", @@ -14984,7 +21057,7 @@ } }, { - "id": 17055, + "id": 18839, "properties": { "facing": "north", "half": "top", @@ -14993,7 +21066,7 @@ } }, { - "id": 17056, + "id": 18840, "properties": { "facing": "north", "half": "top", @@ -15002,7 +21075,7 @@ } }, { - "id": 17057, + "id": 18841, "properties": { "facing": "north", "half": "top", @@ -15011,7 +21084,7 @@ } }, { - "id": 17058, + "id": 18842, "properties": { "facing": "north", "half": "top", @@ -15020,7 +21093,7 @@ } }, { - "id": 17059, + "id": 18843, "properties": { "facing": "north", "half": "bottom", @@ -15030,7 +21103,7 @@ }, { "default": true, - "id": 17060, + "id": 18844, "properties": { "facing": "north", "half": "bottom", @@ -15039,7 +21112,7 @@ } }, { - "id": 17061, + "id": 18845, "properties": { "facing": "north", "half": "bottom", @@ -15048,7 +21121,7 @@ } }, { - "id": 17062, + "id": 18846, "properties": { "facing": "north", "half": "bottom", @@ -15057,7 +21130,7 @@ } }, { - "id": 17063, + "id": 18847, "properties": { "facing": "north", "half": "bottom", @@ -15066,7 +21139,7 @@ } }, { - "id": 17064, + "id": 18848, "properties": { "facing": "north", "half": "bottom", @@ -15075,7 +21148,7 @@ } }, { - "id": 17065, + "id": 18849, "properties": { "facing": "north", "half": "bottom", @@ -15084,7 +21157,7 @@ } }, { - "id": 17066, + "id": 18850, "properties": { "facing": "north", "half": "bottom", @@ -15093,7 +21166,7 @@ } }, { - "id": 17067, + "id": 18851, "properties": { "facing": "north", "half": "bottom", @@ -15102,7 +21175,7 @@ } }, { - "id": 17068, + "id": 18852, "properties": { "facing": "north", "half": "bottom", @@ -15111,7 +21184,7 @@ } }, { - "id": 17069, + "id": 18853, "properties": { "facing": "south", "half": "top", @@ -15120,7 +21193,7 @@ } }, { - "id": 17070, + "id": 18854, "properties": { "facing": "south", "half": "top", @@ -15129,7 +21202,7 @@ } }, { - "id": 17071, + "id": 18855, "properties": { "facing": "south", "half": "top", @@ -15138,7 +21211,7 @@ } }, { - "id": 17072, + "id": 18856, "properties": { "facing": "south", "half": "top", @@ -15147,7 +21220,7 @@ } }, { - "id": 17073, + "id": 18857, "properties": { "facing": "south", "half": "top", @@ -15156,7 +21229,7 @@ } }, { - "id": 17074, + "id": 18858, "properties": { "facing": "south", "half": "top", @@ -15165,7 +21238,7 @@ } }, { - "id": 17075, + "id": 18859, "properties": { "facing": "south", "half": "top", @@ -15174,7 +21247,7 @@ } }, { - "id": 17076, + "id": 18860, "properties": { "facing": "south", "half": "top", @@ -15183,7 +21256,7 @@ } }, { - "id": 17077, + "id": 18861, "properties": { "facing": "south", "half": "top", @@ -15192,7 +21265,7 @@ } }, { - "id": 17078, + "id": 18862, "properties": { "facing": "south", "half": "top", @@ -15201,7 +21274,7 @@ } }, { - "id": 17079, + "id": 18863, "properties": { "facing": "south", "half": "bottom", @@ -15210,7 +21283,7 @@ } }, { - "id": 17080, + "id": 18864, "properties": { "facing": "south", "half": "bottom", @@ -15219,7 +21292,7 @@ } }, { - "id": 17081, + "id": 18865, "properties": { "facing": "south", "half": "bottom", @@ -15228,7 +21301,7 @@ } }, { - "id": 17082, + "id": 18866, "properties": { "facing": "south", "half": "bottom", @@ -15237,7 +21310,7 @@ } }, { - "id": 17083, + "id": 18867, "properties": { "facing": "south", "half": "bottom", @@ -15246,7 +21319,7 @@ } }, { - "id": 17084, + "id": 18868, "properties": { "facing": "south", "half": "bottom", @@ -15255,7 +21328,7 @@ } }, { - "id": 17085, + "id": 18869, "properties": { "facing": "south", "half": "bottom", @@ -15264,7 +21337,7 @@ } }, { - "id": 17086, + "id": 18870, "properties": { "facing": "south", "half": "bottom", @@ -15273,7 +21346,7 @@ } }, { - "id": 17087, + "id": 18871, "properties": { "facing": "south", "half": "bottom", @@ -15282,7 +21355,7 @@ } }, { - "id": 17088, + "id": 18872, "properties": { "facing": "south", "half": "bottom", @@ -15291,7 +21364,7 @@ } }, { - "id": 17089, + "id": 18873, "properties": { "facing": "west", "half": "top", @@ -15300,7 +21373,7 @@ } }, { - "id": 17090, + "id": 18874, "properties": { "facing": "west", "half": "top", @@ -15309,7 +21382,7 @@ } }, { - "id": 17091, + "id": 18875, "properties": { "facing": "west", "half": "top", @@ -15318,7 +21391,7 @@ } }, { - "id": 17092, + "id": 18876, "properties": { "facing": "west", "half": "top", @@ -15327,7 +21400,7 @@ } }, { - "id": 17093, + "id": 18877, "properties": { "facing": "west", "half": "top", @@ -15336,7 +21409,7 @@ } }, { - "id": 17094, + "id": 18878, "properties": { "facing": "west", "half": "top", @@ -15345,7 +21418,7 @@ } }, { - "id": 17095, + "id": 18879, "properties": { "facing": "west", "half": "top", @@ -15354,7 +21427,7 @@ } }, { - "id": 17096, + "id": 18880, "properties": { "facing": "west", "half": "top", @@ -15363,7 +21436,7 @@ } }, { - "id": 17097, + "id": 18881, "properties": { "facing": "west", "half": "top", @@ -15372,7 +21445,7 @@ } }, { - "id": 17098, + "id": 18882, "properties": { "facing": "west", "half": "top", @@ -15381,7 +21454,7 @@ } }, { - "id": 17099, + "id": 18883, "properties": { "facing": "west", "half": "bottom", @@ -15390,7 +21463,7 @@ } }, { - "id": 17100, + "id": 18884, "properties": { "facing": "west", "half": "bottom", @@ -15399,7 +21472,7 @@ } }, { - "id": 17101, + "id": 18885, "properties": { "facing": "west", "half": "bottom", @@ -15408,7 +21481,7 @@ } }, { - "id": 17102, + "id": 18886, "properties": { "facing": "west", "half": "bottom", @@ -15417,7 +21490,7 @@ } }, { - "id": 17103, + "id": 18887, "properties": { "facing": "west", "half": "bottom", @@ -15426,7 +21499,7 @@ } }, { - "id": 17104, + "id": 18888, "properties": { "facing": "west", "half": "bottom", @@ -15435,7 +21508,7 @@ } }, { - "id": 17105, + "id": 18889, "properties": { "facing": "west", "half": "bottom", @@ -15444,7 +21517,7 @@ } }, { - "id": 17106, + "id": 18890, "properties": { "facing": "west", "half": "bottom", @@ -15453,7 +21526,7 @@ } }, { - "id": 17107, + "id": 18891, "properties": { "facing": "west", "half": "bottom", @@ -15462,7 +21535,7 @@ } }, { - "id": 17108, + "id": 18892, "properties": { "facing": "west", "half": "bottom", @@ -15471,7 +21544,7 @@ } }, { - "id": 17109, + "id": 18893, "properties": { "facing": "east", "half": "top", @@ -15480,7 +21553,7 @@ } }, { - "id": 17110, + "id": 18894, "properties": { "facing": "east", "half": "top", @@ -15489,7 +21562,7 @@ } }, { - "id": 17111, + "id": 18895, "properties": { "facing": "east", "half": "top", @@ -15498,7 +21571,7 @@ } }, { - "id": 17112, + "id": 18896, "properties": { "facing": "east", "half": "top", @@ -15507,7 +21580,7 @@ } }, { - "id": 17113, + "id": 18897, "properties": { "facing": "east", "half": "top", @@ -15516,7 +21589,7 @@ } }, { - "id": 17114, + "id": 18898, "properties": { "facing": "east", "half": "top", @@ -15525,7 +21598,7 @@ } }, { - "id": 17115, + "id": 18899, "properties": { "facing": "east", "half": "top", @@ -15534,7 +21607,7 @@ } }, { - "id": 17116, + "id": 18900, "properties": { "facing": "east", "half": "top", @@ -15543,7 +21616,7 @@ } }, { - "id": 17117, + "id": 18901, "properties": { "facing": "east", "half": "top", @@ -15552,7 +21625,7 @@ } }, { - "id": 17118, + "id": 18902, "properties": { "facing": "east", "half": "top", @@ -15561,7 +21634,7 @@ } }, { - "id": 17119, + "id": 18903, "properties": { "facing": "east", "half": "bottom", @@ -15570,7 +21643,7 @@ } }, { - "id": 17120, + "id": 18904, "properties": { "facing": "east", "half": "bottom", @@ -15579,7 +21652,7 @@ } }, { - "id": 17121, + "id": 18905, "properties": { "facing": "east", "half": "bottom", @@ -15588,7 +21661,7 @@ } }, { - "id": 17122, + "id": 18906, "properties": { "facing": "east", "half": "bottom", @@ -15597,7 +21670,7 @@ } }, { - "id": 17123, + "id": 18907, "properties": { "facing": "east", "half": "bottom", @@ -15606,7 +21679,7 @@ } }, { - "id": 17124, + "id": 18908, "properties": { "facing": "east", "half": "bottom", @@ -15615,7 +21688,7 @@ } }, { - "id": 17125, + "id": 18909, "properties": { "facing": "east", "half": "bottom", @@ -15624,7 +21697,7 @@ } }, { - "id": 17126, + "id": 18910, "properties": { "facing": "east", "half": "bottom", @@ -15633,7 +21706,7 @@ } }, { - "id": 17127, + "id": 18911, "properties": { "facing": "east", "half": "bottom", @@ -15642,7 +21715,7 @@ } }, { - "id": 17128, + "id": 18912, "properties": { "facing": "east", "half": "bottom", @@ -15685,7 +21758,7 @@ }, "states": [ { - "id": 17129, + "id": 18913, "properties": { "east": "none", "north": "none", @@ -15696,7 +21769,7 @@ } }, { - "id": 17130, + "id": 18914, "properties": { "east": "none", "north": "none", @@ -15707,7 +21780,7 @@ } }, { - "id": 17131, + "id": 18915, "properties": { "east": "none", "north": "none", @@ -15719,7 +21792,7 @@ }, { "default": true, - "id": 17132, + "id": 18916, "properties": { "east": "none", "north": "none", @@ -15730,7 +21803,7 @@ } }, { - "id": 17133, + "id": 18917, "properties": { "east": "none", "north": "none", @@ -15741,7 +21814,7 @@ } }, { - "id": 17134, + "id": 18918, "properties": { "east": "none", "north": "none", @@ -15752,7 +21825,7 @@ } }, { - "id": 17135, + "id": 18919, "properties": { "east": "none", "north": "none", @@ -15763,7 +21836,7 @@ } }, { - "id": 17136, + "id": 18920, "properties": { "east": "none", "north": "none", @@ -15774,7 +21847,7 @@ } }, { - "id": 17137, + "id": 18921, "properties": { "east": "none", "north": "none", @@ -15785,7 +21858,7 @@ } }, { - "id": 17138, + "id": 18922, "properties": { "east": "none", "north": "none", @@ -15796,7 +21869,7 @@ } }, { - "id": 17139, + "id": 18923, "properties": { "east": "none", "north": "none", @@ -15807,7 +21880,7 @@ } }, { - "id": 17140, + "id": 18924, "properties": { "east": "none", "north": "none", @@ -15818,7 +21891,7 @@ } }, { - "id": 17141, + "id": 18925, "properties": { "east": "none", "north": "none", @@ -15829,7 +21902,7 @@ } }, { - "id": 17142, + "id": 18926, "properties": { "east": "none", "north": "none", @@ -15840,7 +21913,7 @@ } }, { - "id": 17143, + "id": 18927, "properties": { "east": "none", "north": "none", @@ -15851,7 +21924,7 @@ } }, { - "id": 17144, + "id": 18928, "properties": { "east": "none", "north": "none", @@ -15862,7 +21935,7 @@ } }, { - "id": 17145, + "id": 18929, "properties": { "east": "none", "north": "none", @@ -15873,7 +21946,7 @@ } }, { - "id": 17146, + "id": 18930, "properties": { "east": "none", "north": "none", @@ -15884,7 +21957,7 @@ } }, { - "id": 17147, + "id": 18931, "properties": { "east": "none", "north": "none", @@ -15895,7 +21968,7 @@ } }, { - "id": 17148, + "id": 18932, "properties": { "east": "none", "north": "none", @@ -15906,7 +21979,7 @@ } }, { - "id": 17149, + "id": 18933, "properties": { "east": "none", "north": "none", @@ -15917,7 +21990,7 @@ } }, { - "id": 17150, + "id": 18934, "properties": { "east": "none", "north": "none", @@ -15928,7 +22001,7 @@ } }, { - "id": 17151, + "id": 18935, "properties": { "east": "none", "north": "none", @@ -15939,7 +22012,7 @@ } }, { - "id": 17152, + "id": 18936, "properties": { "east": "none", "north": "none", @@ -15950,7 +22023,7 @@ } }, { - "id": 17153, + "id": 18937, "properties": { "east": "none", "north": "none", @@ -15961,7 +22034,7 @@ } }, { - "id": 17154, + "id": 18938, "properties": { "east": "none", "north": "none", @@ -15972,7 +22045,7 @@ } }, { - "id": 17155, + "id": 18939, "properties": { "east": "none", "north": "none", @@ -15983,7 +22056,7 @@ } }, { - "id": 17156, + "id": 18940, "properties": { "east": "none", "north": "none", @@ -15994,7 +22067,7 @@ } }, { - "id": 17157, + "id": 18941, "properties": { "east": "none", "north": "none", @@ -16005,7 +22078,7 @@ } }, { - "id": 17158, + "id": 18942, "properties": { "east": "none", "north": "none", @@ -16016,7 +22089,7 @@ } }, { - "id": 17159, + "id": 18943, "properties": { "east": "none", "north": "none", @@ -16027,7 +22100,7 @@ } }, { - "id": 17160, + "id": 18944, "properties": { "east": "none", "north": "none", @@ -16038,7 +22111,7 @@ } }, { - "id": 17161, + "id": 18945, "properties": { "east": "none", "north": "none", @@ -16049,7 +22122,7 @@ } }, { - "id": 17162, + "id": 18946, "properties": { "east": "none", "north": "none", @@ -16060,7 +22133,7 @@ } }, { - "id": 17163, + "id": 18947, "properties": { "east": "none", "north": "none", @@ -16071,7 +22144,7 @@ } }, { - "id": 17164, + "id": 18948, "properties": { "east": "none", "north": "none", @@ -16082,7 +22155,7 @@ } }, { - "id": 17165, + "id": 18949, "properties": { "east": "none", "north": "low", @@ -16093,7 +22166,7 @@ } }, { - "id": 17166, + "id": 18950, "properties": { "east": "none", "north": "low", @@ -16104,7 +22177,7 @@ } }, { - "id": 17167, + "id": 18951, "properties": { "east": "none", "north": "low", @@ -16115,7 +22188,7 @@ } }, { - "id": 17168, + "id": 18952, "properties": { "east": "none", "north": "low", @@ -16126,7 +22199,7 @@ } }, { - "id": 17169, + "id": 18953, "properties": { "east": "none", "north": "low", @@ -16137,7 +22210,7 @@ } }, { - "id": 17170, + "id": 18954, "properties": { "east": "none", "north": "low", @@ -16148,7 +22221,7 @@ } }, { - "id": 17171, + "id": 18955, "properties": { "east": "none", "north": "low", @@ -16159,7 +22232,7 @@ } }, { - "id": 17172, + "id": 18956, "properties": { "east": "none", "north": "low", @@ -16170,7 +22243,7 @@ } }, { - "id": 17173, + "id": 18957, "properties": { "east": "none", "north": "low", @@ -16181,7 +22254,7 @@ } }, { - "id": 17174, + "id": 18958, "properties": { "east": "none", "north": "low", @@ -16192,7 +22265,7 @@ } }, { - "id": 17175, + "id": 18959, "properties": { "east": "none", "north": "low", @@ -16203,7 +22276,7 @@ } }, { - "id": 17176, + "id": 18960, "properties": { "east": "none", "north": "low", @@ -16214,7 +22287,7 @@ } }, { - "id": 17177, + "id": 18961, "properties": { "east": "none", "north": "low", @@ -16225,7 +22298,7 @@ } }, { - "id": 17178, + "id": 18962, "properties": { "east": "none", "north": "low", @@ -16236,7 +22309,7 @@ } }, { - "id": 17179, + "id": 18963, "properties": { "east": "none", "north": "low", @@ -16247,7 +22320,7 @@ } }, { - "id": 17180, + "id": 18964, "properties": { "east": "none", "north": "low", @@ -16258,7 +22331,7 @@ } }, { - "id": 17181, + "id": 18965, "properties": { "east": "none", "north": "low", @@ -16269,7 +22342,7 @@ } }, { - "id": 17182, + "id": 18966, "properties": { "east": "none", "north": "low", @@ -16280,7 +22353,7 @@ } }, { - "id": 17183, + "id": 18967, "properties": { "east": "none", "north": "low", @@ -16291,7 +22364,7 @@ } }, { - "id": 17184, + "id": 18968, "properties": { "east": "none", "north": "low", @@ -16302,7 +22375,7 @@ } }, { - "id": 17185, + "id": 18969, "properties": { "east": "none", "north": "low", @@ -16313,7 +22386,7 @@ } }, { - "id": 17186, + "id": 18970, "properties": { "east": "none", "north": "low", @@ -16324,7 +22397,7 @@ } }, { - "id": 17187, + "id": 18971, "properties": { "east": "none", "north": "low", @@ -16335,7 +22408,7 @@ } }, { - "id": 17188, + "id": 18972, "properties": { "east": "none", "north": "low", @@ -16346,7 +22419,7 @@ } }, { - "id": 17189, + "id": 18973, "properties": { "east": "none", "north": "low", @@ -16357,7 +22430,7 @@ } }, { - "id": 17190, + "id": 18974, "properties": { "east": "none", "north": "low", @@ -16368,7 +22441,7 @@ } }, { - "id": 17191, + "id": 18975, "properties": { "east": "none", "north": "low", @@ -16379,7 +22452,7 @@ } }, { - "id": 17192, + "id": 18976, "properties": { "east": "none", "north": "low", @@ -16390,7 +22463,7 @@ } }, { - "id": 17193, + "id": 18977, "properties": { "east": "none", "north": "low", @@ -16401,7 +22474,7 @@ } }, { - "id": 17194, + "id": 18978, "properties": { "east": "none", "north": "low", @@ -16412,7 +22485,7 @@ } }, { - "id": 17195, + "id": 18979, "properties": { "east": "none", "north": "low", @@ -16423,7 +22496,7 @@ } }, { - "id": 17196, + "id": 18980, "properties": { "east": "none", "north": "low", @@ -16434,7 +22507,7 @@ } }, { - "id": 17197, + "id": 18981, "properties": { "east": "none", "north": "low", @@ -16445,7 +22518,7 @@ } }, { - "id": 17198, + "id": 18982, "properties": { "east": "none", "north": "low", @@ -16456,7 +22529,7 @@ } }, { - "id": 17199, + "id": 18983, "properties": { "east": "none", "north": "low", @@ -16467,7 +22540,7 @@ } }, { - "id": 17200, + "id": 18984, "properties": { "east": "none", "north": "low", @@ -16478,7 +22551,7 @@ } }, { - "id": 17201, + "id": 18985, "properties": { "east": "none", "north": "tall", @@ -16489,7 +22562,7 @@ } }, { - "id": 17202, + "id": 18986, "properties": { "east": "none", "north": "tall", @@ -16500,7 +22573,7 @@ } }, { - "id": 17203, + "id": 18987, "properties": { "east": "none", "north": "tall", @@ -16511,7 +22584,7 @@ } }, { - "id": 17204, + "id": 18988, "properties": { "east": "none", "north": "tall", @@ -16522,7 +22595,7 @@ } }, { - "id": 17205, + "id": 18989, "properties": { "east": "none", "north": "tall", @@ -16533,7 +22606,7 @@ } }, { - "id": 17206, + "id": 18990, "properties": { "east": "none", "north": "tall", @@ -16544,7 +22617,7 @@ } }, { - "id": 17207, + "id": 18991, "properties": { "east": "none", "north": "tall", @@ -16555,7 +22628,7 @@ } }, { - "id": 17208, + "id": 18992, "properties": { "east": "none", "north": "tall", @@ -16566,7 +22639,7 @@ } }, { - "id": 17209, + "id": 18993, "properties": { "east": "none", "north": "tall", @@ -16577,7 +22650,7 @@ } }, { - "id": 17210, + "id": 18994, "properties": { "east": "none", "north": "tall", @@ -16588,7 +22661,7 @@ } }, { - "id": 17211, + "id": 18995, "properties": { "east": "none", "north": "tall", @@ -16599,7 +22672,7 @@ } }, { - "id": 17212, + "id": 18996, "properties": { "east": "none", "north": "tall", @@ -16610,7 +22683,7 @@ } }, { - "id": 17213, + "id": 18997, "properties": { "east": "none", "north": "tall", @@ -16621,7 +22694,7 @@ } }, { - "id": 17214, + "id": 18998, "properties": { "east": "none", "north": "tall", @@ -16632,7 +22705,7 @@ } }, { - "id": 17215, + "id": 18999, "properties": { "east": "none", "north": "tall", @@ -16643,7 +22716,7 @@ } }, { - "id": 17216, + "id": 19000, "properties": { "east": "none", "north": "tall", @@ -16654,7 +22727,7 @@ } }, { - "id": 17217, + "id": 19001, "properties": { "east": "none", "north": "tall", @@ -16665,7 +22738,7 @@ } }, { - "id": 17218, + "id": 19002, "properties": { "east": "none", "north": "tall", @@ -16676,7 +22749,7 @@ } }, { - "id": 17219, + "id": 19003, "properties": { "east": "none", "north": "tall", @@ -16687,7 +22760,7 @@ } }, { - "id": 17220, + "id": 19004, "properties": { "east": "none", "north": "tall", @@ -16698,7 +22771,7 @@ } }, { - "id": 17221, + "id": 19005, "properties": { "east": "none", "north": "tall", @@ -16709,7 +22782,7 @@ } }, { - "id": 17222, + "id": 19006, "properties": { "east": "none", "north": "tall", @@ -16720,7 +22793,7 @@ } }, { - "id": 17223, + "id": 19007, "properties": { "east": "none", "north": "tall", @@ -16731,7 +22804,7 @@ } }, { - "id": 17224, + "id": 19008, "properties": { "east": "none", "north": "tall", @@ -16742,7 +22815,7 @@ } }, { - "id": 17225, + "id": 19009, "properties": { "east": "none", "north": "tall", @@ -16753,7 +22826,7 @@ } }, { - "id": 17226, + "id": 19010, "properties": { "east": "none", "north": "tall", @@ -16764,7 +22837,7 @@ } }, { - "id": 17227, + "id": 19011, "properties": { "east": "none", "north": "tall", @@ -16775,7 +22848,7 @@ } }, { - "id": 17228, + "id": 19012, "properties": { "east": "none", "north": "tall", @@ -16786,7 +22859,7 @@ } }, { - "id": 17229, + "id": 19013, "properties": { "east": "none", "north": "tall", @@ -16797,7 +22870,7 @@ } }, { - "id": 17230, + "id": 19014, "properties": { "east": "none", "north": "tall", @@ -16808,7 +22881,7 @@ } }, { - "id": 17231, + "id": 19015, "properties": { "east": "none", "north": "tall", @@ -16819,7 +22892,7 @@ } }, { - "id": 17232, + "id": 19016, "properties": { "east": "none", "north": "tall", @@ -16830,7 +22903,7 @@ } }, { - "id": 17233, + "id": 19017, "properties": { "east": "none", "north": "tall", @@ -16841,7 +22914,7 @@ } }, { - "id": 17234, + "id": 19018, "properties": { "east": "none", "north": "tall", @@ -16852,7 +22925,7 @@ } }, { - "id": 17235, + "id": 19019, "properties": { "east": "none", "north": "tall", @@ -16863,7 +22936,7 @@ } }, { - "id": 17236, + "id": 19020, "properties": { "east": "none", "north": "tall", @@ -16874,7 +22947,7 @@ } }, { - "id": 17237, + "id": 19021, "properties": { "east": "low", "north": "none", @@ -16885,7 +22958,7 @@ } }, { - "id": 17238, + "id": 19022, "properties": { "east": "low", "north": "none", @@ -16896,7 +22969,7 @@ } }, { - "id": 17239, + "id": 19023, "properties": { "east": "low", "north": "none", @@ -16907,7 +22980,7 @@ } }, { - "id": 17240, + "id": 19024, "properties": { "east": "low", "north": "none", @@ -16918,7 +22991,7 @@ } }, { - "id": 17241, + "id": 19025, "properties": { "east": "low", "north": "none", @@ -16929,7 +23002,7 @@ } }, { - "id": 17242, + "id": 19026, "properties": { "east": "low", "north": "none", @@ -16940,7 +23013,7 @@ } }, { - "id": 17243, + "id": 19027, "properties": { "east": "low", "north": "none", @@ -16951,7 +23024,7 @@ } }, { - "id": 17244, + "id": 19028, "properties": { "east": "low", "north": "none", @@ -16962,7 +23035,7 @@ } }, { - "id": 17245, + "id": 19029, "properties": { "east": "low", "north": "none", @@ -16973,7 +23046,7 @@ } }, { - "id": 17246, + "id": 19030, "properties": { "east": "low", "north": "none", @@ -16984,7 +23057,7 @@ } }, { - "id": 17247, + "id": 19031, "properties": { "east": "low", "north": "none", @@ -16995,7 +23068,7 @@ } }, { - "id": 17248, + "id": 19032, "properties": { "east": "low", "north": "none", @@ -17006,7 +23079,7 @@ } }, { - "id": 17249, + "id": 19033, "properties": { "east": "low", "north": "none", @@ -17017,7 +23090,7 @@ } }, { - "id": 17250, + "id": 19034, "properties": { "east": "low", "north": "none", @@ -17028,7 +23101,7 @@ } }, { - "id": 17251, + "id": 19035, "properties": { "east": "low", "north": "none", @@ -17039,7 +23112,7 @@ } }, { - "id": 17252, + "id": 19036, "properties": { "east": "low", "north": "none", @@ -17050,7 +23123,7 @@ } }, { - "id": 17253, + "id": 19037, "properties": { "east": "low", "north": "none", @@ -17061,7 +23134,7 @@ } }, { - "id": 17254, + "id": 19038, "properties": { "east": "low", "north": "none", @@ -17072,7 +23145,7 @@ } }, { - "id": 17255, + "id": 19039, "properties": { "east": "low", "north": "none", @@ -17083,7 +23156,7 @@ } }, { - "id": 17256, + "id": 19040, "properties": { "east": "low", "north": "none", @@ -17094,7 +23167,7 @@ } }, { - "id": 17257, + "id": 19041, "properties": { "east": "low", "north": "none", @@ -17105,7 +23178,7 @@ } }, { - "id": 17258, + "id": 19042, "properties": { "east": "low", "north": "none", @@ -17116,7 +23189,7 @@ } }, { - "id": 17259, + "id": 19043, "properties": { "east": "low", "north": "none", @@ -17127,7 +23200,7 @@ } }, { - "id": 17260, + "id": 19044, "properties": { "east": "low", "north": "none", @@ -17138,7 +23211,7 @@ } }, { - "id": 17261, + "id": 19045, "properties": { "east": "low", "north": "none", @@ -17149,7 +23222,7 @@ } }, { - "id": 17262, + "id": 19046, "properties": { "east": "low", "north": "none", @@ -17160,7 +23233,7 @@ } }, { - "id": 17263, + "id": 19047, "properties": { "east": "low", "north": "none", @@ -17171,7 +23244,7 @@ } }, { - "id": 17264, + "id": 19048, "properties": { "east": "low", "north": "none", @@ -17182,7 +23255,7 @@ } }, { - "id": 17265, + "id": 19049, "properties": { "east": "low", "north": "none", @@ -17193,7 +23266,7 @@ } }, { - "id": 17266, + "id": 19050, "properties": { "east": "low", "north": "none", @@ -17204,7 +23277,7 @@ } }, { - "id": 17267, + "id": 19051, "properties": { "east": "low", "north": "none", @@ -17215,7 +23288,7 @@ } }, { - "id": 17268, + "id": 19052, "properties": { "east": "low", "north": "none", @@ -17226,7 +23299,7 @@ } }, { - "id": 17269, + "id": 19053, "properties": { "east": "low", "north": "none", @@ -17237,7 +23310,7 @@ } }, { - "id": 17270, + "id": 19054, "properties": { "east": "low", "north": "none", @@ -17248,7 +23321,7 @@ } }, { - "id": 17271, + "id": 19055, "properties": { "east": "low", "north": "none", @@ -17259,7 +23332,7 @@ } }, { - "id": 17272, + "id": 19056, "properties": { "east": "low", "north": "none", @@ -17270,7 +23343,7 @@ } }, { - "id": 17273, + "id": 19057, "properties": { "east": "low", "north": "low", @@ -17281,7 +23354,7 @@ } }, { - "id": 17274, + "id": 19058, "properties": { "east": "low", "north": "low", @@ -17292,7 +23365,7 @@ } }, { - "id": 17275, + "id": 19059, "properties": { "east": "low", "north": "low", @@ -17303,7 +23376,7 @@ } }, { - "id": 17276, + "id": 19060, "properties": { "east": "low", "north": "low", @@ -17314,7 +23387,7 @@ } }, { - "id": 17277, + "id": 19061, "properties": { "east": "low", "north": "low", @@ -17325,7 +23398,7 @@ } }, { - "id": 17278, + "id": 19062, "properties": { "east": "low", "north": "low", @@ -17336,7 +23409,7 @@ } }, { - "id": 17279, + "id": 19063, "properties": { "east": "low", "north": "low", @@ -17347,7 +23420,7 @@ } }, { - "id": 17280, + "id": 19064, "properties": { "east": "low", "north": "low", @@ -17358,7 +23431,7 @@ } }, { - "id": 17281, + "id": 19065, "properties": { "east": "low", "north": "low", @@ -17369,7 +23442,7 @@ } }, { - "id": 17282, + "id": 19066, "properties": { "east": "low", "north": "low", @@ -17380,7 +23453,7 @@ } }, { - "id": 17283, + "id": 19067, "properties": { "east": "low", "north": "low", @@ -17391,7 +23464,7 @@ } }, { - "id": 17284, + "id": 19068, "properties": { "east": "low", "north": "low", @@ -17402,7 +23475,7 @@ } }, { - "id": 17285, + "id": 19069, "properties": { "east": "low", "north": "low", @@ -17413,7 +23486,7 @@ } }, { - "id": 17286, + "id": 19070, "properties": { "east": "low", "north": "low", @@ -17424,7 +23497,7 @@ } }, { - "id": 17287, + "id": 19071, "properties": { "east": "low", "north": "low", @@ -17435,7 +23508,7 @@ } }, { - "id": 17288, + "id": 19072, "properties": { "east": "low", "north": "low", @@ -17446,7 +23519,7 @@ } }, { - "id": 17289, + "id": 19073, "properties": { "east": "low", "north": "low", @@ -17457,7 +23530,7 @@ } }, { - "id": 17290, + "id": 19074, "properties": { "east": "low", "north": "low", @@ -17468,7 +23541,7 @@ } }, { - "id": 17291, + "id": 19075, "properties": { "east": "low", "north": "low", @@ -17479,7 +23552,7 @@ } }, { - "id": 17292, + "id": 19076, "properties": { "east": "low", "north": "low", @@ -17490,7 +23563,7 @@ } }, { - "id": 17293, + "id": 19077, "properties": { "east": "low", "north": "low", @@ -17501,7 +23574,7 @@ } }, { - "id": 17294, + "id": 19078, "properties": { "east": "low", "north": "low", @@ -17512,7 +23585,7 @@ } }, { - "id": 17295, + "id": 19079, "properties": { "east": "low", "north": "low", @@ -17523,7 +23596,7 @@ } }, { - "id": 17296, + "id": 19080, "properties": { "east": "low", "north": "low", @@ -17534,7 +23607,7 @@ } }, { - "id": 17297, + "id": 19081, "properties": { "east": "low", "north": "low", @@ -17545,7 +23618,7 @@ } }, { - "id": 17298, + "id": 19082, "properties": { "east": "low", "north": "low", @@ -17556,7 +23629,7 @@ } }, { - "id": 17299, + "id": 19083, "properties": { "east": "low", "north": "low", @@ -17567,7 +23640,7 @@ } }, { - "id": 17300, + "id": 19084, "properties": { "east": "low", "north": "low", @@ -17578,7 +23651,7 @@ } }, { - "id": 17301, + "id": 19085, "properties": { "east": "low", "north": "low", @@ -17589,7 +23662,7 @@ } }, { - "id": 17302, + "id": 19086, "properties": { "east": "low", "north": "low", @@ -17600,7 +23673,7 @@ } }, { - "id": 17303, + "id": 19087, "properties": { "east": "low", "north": "low", @@ -17611,7 +23684,7 @@ } }, { - "id": 17304, + "id": 19088, "properties": { "east": "low", "north": "low", @@ -17622,7 +23695,7 @@ } }, { - "id": 17305, + "id": 19089, "properties": { "east": "low", "north": "low", @@ -17633,7 +23706,7 @@ } }, { - "id": 17306, + "id": 19090, "properties": { "east": "low", "north": "low", @@ -17644,7 +23717,7 @@ } }, { - "id": 17307, + "id": 19091, "properties": { "east": "low", "north": "low", @@ -17655,7 +23728,7 @@ } }, { - "id": 17308, + "id": 19092, "properties": { "east": "low", "north": "low", @@ -17666,7 +23739,7 @@ } }, { - "id": 17309, + "id": 19093, "properties": { "east": "low", "north": "tall", @@ -17677,7 +23750,7 @@ } }, { - "id": 17310, + "id": 19094, "properties": { "east": "low", "north": "tall", @@ -17688,7 +23761,7 @@ } }, { - "id": 17311, + "id": 19095, "properties": { "east": "low", "north": "tall", @@ -17699,7 +23772,7 @@ } }, { - "id": 17312, + "id": 19096, "properties": { "east": "low", "north": "tall", @@ -17710,7 +23783,7 @@ } }, { - "id": 17313, + "id": 19097, "properties": { "east": "low", "north": "tall", @@ -17721,7 +23794,7 @@ } }, { - "id": 17314, + "id": 19098, "properties": { "east": "low", "north": "tall", @@ -17732,7 +23805,7 @@ } }, { - "id": 17315, + "id": 19099, "properties": { "east": "low", "north": "tall", @@ -17743,7 +23816,7 @@ } }, { - "id": 17316, + "id": 19100, "properties": { "east": "low", "north": "tall", @@ -17754,7 +23827,7 @@ } }, { - "id": 17317, + "id": 19101, "properties": { "east": "low", "north": "tall", @@ -17765,7 +23838,7 @@ } }, { - "id": 17318, + "id": 19102, "properties": { "east": "low", "north": "tall", @@ -17776,7 +23849,7 @@ } }, { - "id": 17319, + "id": 19103, "properties": { "east": "low", "north": "tall", @@ -17787,7 +23860,7 @@ } }, { - "id": 17320, + "id": 19104, "properties": { "east": "low", "north": "tall", @@ -17798,7 +23871,7 @@ } }, { - "id": 17321, + "id": 19105, "properties": { "east": "low", "north": "tall", @@ -17809,7 +23882,7 @@ } }, { - "id": 17322, + "id": 19106, "properties": { "east": "low", "north": "tall", @@ -17820,7 +23893,7 @@ } }, { - "id": 17323, + "id": 19107, "properties": { "east": "low", "north": "tall", @@ -17831,7 +23904,7 @@ } }, { - "id": 17324, + "id": 19108, "properties": { "east": "low", "north": "tall", @@ -17842,7 +23915,7 @@ } }, { - "id": 17325, + "id": 19109, "properties": { "east": "low", "north": "tall", @@ -17853,7 +23926,7 @@ } }, { - "id": 17326, + "id": 19110, "properties": { "east": "low", "north": "tall", @@ -17864,7 +23937,7 @@ } }, { - "id": 17327, + "id": 19111, "properties": { "east": "low", "north": "tall", @@ -17875,7 +23948,7 @@ } }, { - "id": 17328, + "id": 19112, "properties": { "east": "low", "north": "tall", @@ -17886,7 +23959,7 @@ } }, { - "id": 17329, + "id": 19113, "properties": { "east": "low", "north": "tall", @@ -17897,7 +23970,7 @@ } }, { - "id": 17330, + "id": 19114, "properties": { "east": "low", "north": "tall", @@ -17908,7 +23981,7 @@ } }, { - "id": 17331, + "id": 19115, "properties": { "east": "low", "north": "tall", @@ -17919,7 +23992,7 @@ } }, { - "id": 17332, + "id": 19116, "properties": { "east": "low", "north": "tall", @@ -17930,7 +24003,7 @@ } }, { - "id": 17333, + "id": 19117, "properties": { "east": "low", "north": "tall", @@ -17941,7 +24014,7 @@ } }, { - "id": 17334, + "id": 19118, "properties": { "east": "low", "north": "tall", @@ -17952,7 +24025,7 @@ } }, { - "id": 17335, + "id": 19119, "properties": { "east": "low", "north": "tall", @@ -17963,7 +24036,7 @@ } }, { - "id": 17336, + "id": 19120, "properties": { "east": "low", "north": "tall", @@ -17974,7 +24047,7 @@ } }, { - "id": 17337, + "id": 19121, "properties": { "east": "low", "north": "tall", @@ -17985,7 +24058,7 @@ } }, { - "id": 17338, + "id": 19122, "properties": { "east": "low", "north": "tall", @@ -17996,7 +24069,7 @@ } }, { - "id": 17339, + "id": 19123, "properties": { "east": "low", "north": "tall", @@ -18007,7 +24080,7 @@ } }, { - "id": 17340, + "id": 19124, "properties": { "east": "low", "north": "tall", @@ -18018,7 +24091,7 @@ } }, { - "id": 17341, + "id": 19125, "properties": { "east": "low", "north": "tall", @@ -18029,7 +24102,7 @@ } }, { - "id": 17342, + "id": 19126, "properties": { "east": "low", "north": "tall", @@ -18040,7 +24113,7 @@ } }, { - "id": 17343, + "id": 19127, "properties": { "east": "low", "north": "tall", @@ -18051,7 +24124,7 @@ } }, { - "id": 17344, + "id": 19128, "properties": { "east": "low", "north": "tall", @@ -18062,7 +24135,7 @@ } }, { - "id": 17345, + "id": 19129, "properties": { "east": "tall", "north": "none", @@ -18073,7 +24146,7 @@ } }, { - "id": 17346, + "id": 19130, "properties": { "east": "tall", "north": "none", @@ -18084,7 +24157,7 @@ } }, { - "id": 17347, + "id": 19131, "properties": { "east": "tall", "north": "none", @@ -18095,7 +24168,7 @@ } }, { - "id": 17348, + "id": 19132, "properties": { "east": "tall", "north": "none", @@ -18106,7 +24179,7 @@ } }, { - "id": 17349, + "id": 19133, "properties": { "east": "tall", "north": "none", @@ -18117,7 +24190,7 @@ } }, { - "id": 17350, + "id": 19134, "properties": { "east": "tall", "north": "none", @@ -18128,7 +24201,7 @@ } }, { - "id": 17351, + "id": 19135, "properties": { "east": "tall", "north": "none", @@ -18139,7 +24212,7 @@ } }, { - "id": 17352, + "id": 19136, "properties": { "east": "tall", "north": "none", @@ -18150,7 +24223,7 @@ } }, { - "id": 17353, + "id": 19137, "properties": { "east": "tall", "north": "none", @@ -18161,7 +24234,7 @@ } }, { - "id": 17354, + "id": 19138, "properties": { "east": "tall", "north": "none", @@ -18172,7 +24245,7 @@ } }, { - "id": 17355, + "id": 19139, "properties": { "east": "tall", "north": "none", @@ -18183,7 +24256,7 @@ } }, { - "id": 17356, + "id": 19140, "properties": { "east": "tall", "north": "none", @@ -18194,7 +24267,7 @@ } }, { - "id": 17357, + "id": 19141, "properties": { "east": "tall", "north": "none", @@ -18205,7 +24278,7 @@ } }, { - "id": 17358, + "id": 19142, "properties": { "east": "tall", "north": "none", @@ -18216,7 +24289,7 @@ } }, { - "id": 17359, + "id": 19143, "properties": { "east": "tall", "north": "none", @@ -18227,7 +24300,7 @@ } }, { - "id": 17360, + "id": 19144, "properties": { "east": "tall", "north": "none", @@ -18238,7 +24311,7 @@ } }, { - "id": 17361, + "id": 19145, "properties": { "east": "tall", "north": "none", @@ -18249,7 +24322,7 @@ } }, { - "id": 17362, + "id": 19146, "properties": { "east": "tall", "north": "none", @@ -18260,7 +24333,7 @@ } }, { - "id": 17363, + "id": 19147, "properties": { "east": "tall", "north": "none", @@ -18271,7 +24344,7 @@ } }, { - "id": 17364, + "id": 19148, "properties": { "east": "tall", "north": "none", @@ -18282,7 +24355,7 @@ } }, { - "id": 17365, + "id": 19149, "properties": { "east": "tall", "north": "none", @@ -18293,7 +24366,7 @@ } }, { - "id": 17366, + "id": 19150, "properties": { "east": "tall", "north": "none", @@ -18304,7 +24377,7 @@ } }, { - "id": 17367, + "id": 19151, "properties": { "east": "tall", "north": "none", @@ -18315,7 +24388,7 @@ } }, { - "id": 17368, + "id": 19152, "properties": { "east": "tall", "north": "none", @@ -18326,7 +24399,7 @@ } }, { - "id": 17369, + "id": 19153, "properties": { "east": "tall", "north": "none", @@ -18337,7 +24410,7 @@ } }, { - "id": 17370, + "id": 19154, "properties": { "east": "tall", "north": "none", @@ -18348,7 +24421,7 @@ } }, { - "id": 17371, + "id": 19155, "properties": { "east": "tall", "north": "none", @@ -18359,7 +24432,7 @@ } }, { - "id": 17372, + "id": 19156, "properties": { "east": "tall", "north": "none", @@ -18370,7 +24443,7 @@ } }, { - "id": 17373, + "id": 19157, "properties": { "east": "tall", "north": "none", @@ -18381,7 +24454,7 @@ } }, { - "id": 17374, + "id": 19158, "properties": { "east": "tall", "north": "none", @@ -18392,7 +24465,7 @@ } }, { - "id": 17375, + "id": 19159, "properties": { "east": "tall", "north": "none", @@ -18403,7 +24476,7 @@ } }, { - "id": 17376, + "id": 19160, "properties": { "east": "tall", "north": "none", @@ -18414,7 +24487,7 @@ } }, { - "id": 17377, + "id": 19161, "properties": { "east": "tall", "north": "none", @@ -18425,7 +24498,7 @@ } }, { - "id": 17378, + "id": 19162, "properties": { "east": "tall", "north": "none", @@ -18436,7 +24509,7 @@ } }, { - "id": 17379, + "id": 19163, "properties": { "east": "tall", "north": "none", @@ -18447,7 +24520,7 @@ } }, { - "id": 17380, + "id": 19164, "properties": { "east": "tall", "north": "none", @@ -18458,7 +24531,7 @@ } }, { - "id": 17381, + "id": 19165, "properties": { "east": "tall", "north": "low", @@ -18469,7 +24542,7 @@ } }, { - "id": 17382, + "id": 19166, "properties": { "east": "tall", "north": "low", @@ -18480,7 +24553,7 @@ } }, { - "id": 17383, + "id": 19167, "properties": { "east": "tall", "north": "low", @@ -18491,7 +24564,7 @@ } }, { - "id": 17384, + "id": 19168, "properties": { "east": "tall", "north": "low", @@ -18502,7 +24575,7 @@ } }, { - "id": 17385, + "id": 19169, "properties": { "east": "tall", "north": "low", @@ -18513,7 +24586,7 @@ } }, { - "id": 17386, + "id": 19170, "properties": { "east": "tall", "north": "low", @@ -18524,7 +24597,7 @@ } }, { - "id": 17387, + "id": 19171, "properties": { "east": "tall", "north": "low", @@ -18535,7 +24608,7 @@ } }, { - "id": 17388, + "id": 19172, "properties": { "east": "tall", "north": "low", @@ -18546,7 +24619,7 @@ } }, { - "id": 17389, + "id": 19173, "properties": { "east": "tall", "north": "low", @@ -18557,7 +24630,7 @@ } }, { - "id": 17390, + "id": 19174, "properties": { "east": "tall", "north": "low", @@ -18568,7 +24641,7 @@ } }, { - "id": 17391, + "id": 19175, "properties": { "east": "tall", "north": "low", @@ -18579,7 +24652,7 @@ } }, { - "id": 17392, + "id": 19176, "properties": { "east": "tall", "north": "low", @@ -18590,7 +24663,7 @@ } }, { - "id": 17393, + "id": 19177, "properties": { "east": "tall", "north": "low", @@ -18601,7 +24674,7 @@ } }, { - "id": 17394, + "id": 19178, "properties": { "east": "tall", "north": "low", @@ -18612,7 +24685,7 @@ } }, { - "id": 17395, + "id": 19179, "properties": { "east": "tall", "north": "low", @@ -18623,7 +24696,7 @@ } }, { - "id": 17396, + "id": 19180, "properties": { "east": "tall", "north": "low", @@ -18634,7 +24707,7 @@ } }, { - "id": 17397, + "id": 19181, "properties": { "east": "tall", "north": "low", @@ -18645,7 +24718,7 @@ } }, { - "id": 17398, + "id": 19182, "properties": { "east": "tall", "north": "low", @@ -18656,7 +24729,7 @@ } }, { - "id": 17399, + "id": 19183, "properties": { "east": "tall", "north": "low", @@ -18667,7 +24740,7 @@ } }, { - "id": 17400, + "id": 19184, "properties": { "east": "tall", "north": "low", @@ -18678,7 +24751,7 @@ } }, { - "id": 17401, + "id": 19185, "properties": { "east": "tall", "north": "low", @@ -18689,7 +24762,7 @@ } }, { - "id": 17402, + "id": 19186, "properties": { "east": "tall", "north": "low", @@ -18700,7 +24773,7 @@ } }, { - "id": 17403, + "id": 19187, "properties": { "east": "tall", "north": "low", @@ -18711,7 +24784,7 @@ } }, { - "id": 17404, + "id": 19188, "properties": { "east": "tall", "north": "low", @@ -18722,7 +24795,7 @@ } }, { - "id": 17405, + "id": 19189, "properties": { "east": "tall", "north": "low", @@ -18733,7 +24806,7 @@ } }, { - "id": 17406, + "id": 19190, "properties": { "east": "tall", "north": "low", @@ -18744,7 +24817,7 @@ } }, { - "id": 17407, + "id": 19191, "properties": { "east": "tall", "north": "low", @@ -18755,7 +24828,7 @@ } }, { - "id": 17408, + "id": 19192, "properties": { "east": "tall", "north": "low", @@ -18766,7 +24839,7 @@ } }, { - "id": 17409, + "id": 19193, "properties": { "east": "tall", "north": "low", @@ -18777,7 +24850,7 @@ } }, { - "id": 17410, + "id": 19194, "properties": { "east": "tall", "north": "low", @@ -18788,7 +24861,7 @@ } }, { - "id": 17411, + "id": 19195, "properties": { "east": "tall", "north": "low", @@ -18799,7 +24872,7 @@ } }, { - "id": 17412, + "id": 19196, "properties": { "east": "tall", "north": "low", @@ -18810,7 +24883,7 @@ } }, { - "id": 17413, + "id": 19197, "properties": { "east": "tall", "north": "low", @@ -18821,7 +24894,7 @@ } }, { - "id": 17414, + "id": 19198, "properties": { "east": "tall", "north": "low", @@ -18832,7 +24905,7 @@ } }, { - "id": 17415, + "id": 19199, "properties": { "east": "tall", "north": "low", @@ -18843,7 +24916,7 @@ } }, { - "id": 17416, + "id": 19200, "properties": { "east": "tall", "north": "low", @@ -18854,7 +24927,7 @@ } }, { - "id": 17417, + "id": 19201, "properties": { "east": "tall", "north": "tall", @@ -18865,7 +24938,7 @@ } }, { - "id": 17418, + "id": 19202, "properties": { "east": "tall", "north": "tall", @@ -18876,7 +24949,7 @@ } }, { - "id": 17419, + "id": 19203, "properties": { "east": "tall", "north": "tall", @@ -18887,7 +24960,7 @@ } }, { - "id": 17420, + "id": 19204, "properties": { "east": "tall", "north": "tall", @@ -18898,7 +24971,7 @@ } }, { - "id": 17421, + "id": 19205, "properties": { "east": "tall", "north": "tall", @@ -18909,7 +24982,7 @@ } }, { - "id": 17422, + "id": 19206, "properties": { "east": "tall", "north": "tall", @@ -18920,7 +24993,7 @@ } }, { - "id": 17423, + "id": 19207, "properties": { "east": "tall", "north": "tall", @@ -18931,7 +25004,7 @@ } }, { - "id": 17424, + "id": 19208, "properties": { "east": "tall", "north": "tall", @@ -18942,7 +25015,7 @@ } }, { - "id": 17425, + "id": 19209, "properties": { "east": "tall", "north": "tall", @@ -18953,7 +25026,7 @@ } }, { - "id": 17426, + "id": 19210, "properties": { "east": "tall", "north": "tall", @@ -18964,7 +25037,7 @@ } }, { - "id": 17427, + "id": 19211, "properties": { "east": "tall", "north": "tall", @@ -18975,7 +25048,7 @@ } }, { - "id": 17428, + "id": 19212, "properties": { "east": "tall", "north": "tall", @@ -18986,7 +25059,7 @@ } }, { - "id": 17429, + "id": 19213, "properties": { "east": "tall", "north": "tall", @@ -18997,7 +25070,7 @@ } }, { - "id": 17430, + "id": 19214, "properties": { "east": "tall", "north": "tall", @@ -19008,7 +25081,7 @@ } }, { - "id": 17431, + "id": 19215, "properties": { "east": "tall", "north": "tall", @@ -19019,7 +25092,7 @@ } }, { - "id": 17432, + "id": 19216, "properties": { "east": "tall", "north": "tall", @@ -19030,7 +25103,7 @@ } }, { - "id": 17433, + "id": 19217, "properties": { "east": "tall", "north": "tall", @@ -19041,7 +25114,7 @@ } }, { - "id": 17434, + "id": 19218, "properties": { "east": "tall", "north": "tall", @@ -19052,7 +25125,7 @@ } }, { - "id": 17435, + "id": 19219, "properties": { "east": "tall", "north": "tall", @@ -19063,7 +25136,7 @@ } }, { - "id": 17436, + "id": 19220, "properties": { "east": "tall", "north": "tall", @@ -19074,7 +25147,7 @@ } }, { - "id": 17437, + "id": 19221, "properties": { "east": "tall", "north": "tall", @@ -19085,7 +25158,7 @@ } }, { - "id": 17438, + "id": 19222, "properties": { "east": "tall", "north": "tall", @@ -19096,7 +25169,7 @@ } }, { - "id": 17439, + "id": 19223, "properties": { "east": "tall", "north": "tall", @@ -19107,7 +25180,7 @@ } }, { - "id": 17440, + "id": 19224, "properties": { "east": "tall", "north": "tall", @@ -19118,7 +25191,7 @@ } }, { - "id": 17441, + "id": 19225, "properties": { "east": "tall", "north": "tall", @@ -19129,7 +25202,7 @@ } }, { - "id": 17442, + "id": 19226, "properties": { "east": "tall", "north": "tall", @@ -19140,7 +25213,7 @@ } }, { - "id": 17443, + "id": 19227, "properties": { "east": "tall", "north": "tall", @@ -19151,7 +25224,7 @@ } }, { - "id": 17444, + "id": 19228, "properties": { "east": "tall", "north": "tall", @@ -19162,7 +25235,7 @@ } }, { - "id": 17445, + "id": 19229, "properties": { "east": "tall", "north": "tall", @@ -19173,7 +25246,7 @@ } }, { - "id": 17446, + "id": 19230, "properties": { "east": "tall", "north": "tall", @@ -19184,7 +25257,7 @@ } }, { - "id": 17447, + "id": 19231, "properties": { "east": "tall", "north": "tall", @@ -19195,7 +25268,7 @@ } }, { - "id": 17448, + "id": 19232, "properties": { "east": "tall", "north": "tall", @@ -19206,7 +25279,7 @@ } }, { - "id": 17449, + "id": 19233, "properties": { "east": "tall", "north": "tall", @@ -19217,7 +25290,7 @@ } }, { - "id": 17450, + "id": 19234, "properties": { "east": "tall", "north": "tall", @@ -19228,7 +25301,7 @@ } }, { - "id": 17451, + "id": 19235, "properties": { "east": "tall", "north": "tall", @@ -19239,7 +25312,7 @@ } }, { - "id": 17452, + "id": 19236, "properties": { "east": "tall", "north": "tall", @@ -19266,7 +25339,7 @@ }, "states": [ { - "id": 16016, + "id": 17800, "properties": { "facing": "north", "lit": "true" @@ -19274,49 +25347,49 @@ }, { "default": true, - "id": 16017, + "id": 17801, "properties": { "facing": "north", "lit": "false" } }, { - "id": 16018, + "id": 17802, "properties": { "facing": "south", "lit": "true" } }, { - "id": 16019, + "id": 17803, "properties": { "facing": "south", "lit": "false" } }, { - "id": 16020, + "id": 17804, "properties": { "facing": "west", "lit": "true" } }, { - "id": 16021, + "id": 17805, "properties": { "facing": "west", "lit": "false" } }, { - "id": 16022, + "id": 17806, "properties": { "facing": "east", "lit": "true" } }, { - "id": 16023, + "id": 17807, "properties": { "facing": "east", "lit": "false" @@ -19348,97 +25421,97 @@ "states": [ { "default": true, - "id": 8814, + "id": 10458, "properties": { "rotation": "0" } }, { - "id": 8815, + "id": 10459, "properties": { "rotation": "1" } }, { - "id": 8816, + "id": 10460, "properties": { "rotation": "2" } }, { - "id": 8817, + "id": 10461, "properties": { "rotation": "3" } }, { - "id": 8818, + "id": 10462, "properties": { "rotation": "4" } }, { - "id": 8819, + "id": 10463, "properties": { "rotation": "5" } }, { - "id": 8820, + "id": 10464, "properties": { "rotation": "6" } }, { - "id": 8821, + "id": 10465, "properties": { "rotation": "7" } }, { - "id": 8822, + "id": 10466, "properties": { "rotation": "8" } }, { - "id": 8823, + "id": 10467, "properties": { "rotation": "9" } }, { - "id": 8824, + "id": 10468, "properties": { "rotation": "10" } }, { - "id": 8825, + "id": 10469, "properties": { "rotation": "11" } }, { - "id": 8826, + "id": 10470, "properties": { "rotation": "12" } }, { - "id": 8827, + "id": 10471, "properties": { "rotation": "13" } }, { - "id": 8828, + "id": 10472, "properties": { "rotation": "14" } }, { - "id": 8829, + "id": 10473, "properties": { "rotation": "15" } @@ -19464,7 +25537,7 @@ }, "states": [ { - "id": 1455, + "id": 1813, "properties": { "facing": "north", "occupied": "true", @@ -19472,7 +25545,7 @@ } }, { - "id": 1456, + "id": 1814, "properties": { "facing": "north", "occupied": "true", @@ -19480,7 +25553,7 @@ } }, { - "id": 1457, + "id": 1815, "properties": { "facing": "north", "occupied": "false", @@ -19489,7 +25562,7 @@ }, { "default": true, - "id": 1458, + "id": 1816, "properties": { "facing": "north", "occupied": "false", @@ -19497,7 +25570,7 @@ } }, { - "id": 1459, + "id": 1817, "properties": { "facing": "south", "occupied": "true", @@ -19505,7 +25578,7 @@ } }, { - "id": 1460, + "id": 1818, "properties": { "facing": "south", "occupied": "true", @@ -19513,7 +25586,7 @@ } }, { - "id": 1461, + "id": 1819, "properties": { "facing": "south", "occupied": "false", @@ -19521,7 +25594,7 @@ } }, { - "id": 1462, + "id": 1820, "properties": { "facing": "south", "occupied": "false", @@ -19529,7 +25602,7 @@ } }, { - "id": 1463, + "id": 1821, "properties": { "facing": "west", "occupied": "true", @@ -19537,7 +25610,7 @@ } }, { - "id": 1464, + "id": 1822, "properties": { "facing": "west", "occupied": "true", @@ -19545,7 +25618,7 @@ } }, { - "id": 1465, + "id": 1823, "properties": { "facing": "west", "occupied": "false", @@ -19553,7 +25626,7 @@ } }, { - "id": 1466, + "id": 1824, "properties": { "facing": "west", "occupied": "false", @@ -19561,7 +25634,7 @@ } }, { - "id": 1467, + "id": 1825, "properties": { "facing": "east", "occupied": "true", @@ -19569,7 +25642,7 @@ } }, { - "id": 1468, + "id": 1826, "properties": { "facing": "east", "occupied": "true", @@ -19577,7 +25650,7 @@ } }, { - "id": 1469, + "id": 1827, "properties": { "facing": "east", "occupied": "false", @@ -19585,7 +25658,7 @@ } }, { - "id": 1470, + "id": 1828, "properties": { "facing": "east", "occupied": "false", @@ -19613,7 +25686,7 @@ }, "states": [ { - "id": 18505, + "id": 20289, "properties": { "candles": "1", "lit": "true", @@ -19621,7 +25694,7 @@ } }, { - "id": 18506, + "id": 20290, "properties": { "candles": "1", "lit": "true", @@ -19629,7 +25702,7 @@ } }, { - "id": 18507, + "id": 20291, "properties": { "candles": "1", "lit": "false", @@ -19638,7 +25711,7 @@ }, { "default": true, - "id": 18508, + "id": 20292, "properties": { "candles": "1", "lit": "false", @@ -19646,7 +25719,7 @@ } }, { - "id": 18509, + "id": 20293, "properties": { "candles": "2", "lit": "true", @@ -19654,7 +25727,7 @@ } }, { - "id": 18510, + "id": 20294, "properties": { "candles": "2", "lit": "true", @@ -19662,7 +25735,7 @@ } }, { - "id": 18511, + "id": 20295, "properties": { "candles": "2", "lit": "false", @@ -19670,7 +25743,7 @@ } }, { - "id": 18512, + "id": 20296, "properties": { "candles": "2", "lit": "false", @@ -19678,7 +25751,7 @@ } }, { - "id": 18513, + "id": 20297, "properties": { "candles": "3", "lit": "true", @@ -19686,7 +25759,7 @@ } }, { - "id": 18514, + "id": 20298, "properties": { "candles": "3", "lit": "true", @@ -19694,7 +25767,7 @@ } }, { - "id": 18515, + "id": 20299, "properties": { "candles": "3", "lit": "false", @@ -19702,7 +25775,7 @@ } }, { - "id": 18516, + "id": 20300, "properties": { "candles": "3", "lit": "false", @@ -19710,7 +25783,7 @@ } }, { - "id": 18517, + "id": 20301, "properties": { "candles": "4", "lit": "true", @@ -19718,7 +25791,7 @@ } }, { - "id": 18518, + "id": 20302, "properties": { "candles": "4", "lit": "true", @@ -19726,7 +25799,7 @@ } }, { - "id": 18519, + "id": 20303, "properties": { "candles": "4", "lit": "false", @@ -19734,7 +25807,7 @@ } }, { - "id": 18520, + "id": 20304, "properties": { "candles": "4", "lit": "false", @@ -19752,14 +25825,14 @@ }, "states": [ { - "id": 18609, + "id": 20393, "properties": { "lit": "true" } }, { "default": true, - "id": 18610, + "id": 20394, "properties": { "lit": "false" } @@ -19770,7 +25843,7 @@ "states": [ { "default": true, - "id": 8618 + "id": 10262 } ] }, @@ -19778,7 +25851,7 @@ "states": [ { "default": true, - "id": 10330 + "id": 12114 } ] }, @@ -19786,7 +25859,7 @@ "states": [ { "default": true, - "id": 10346 + "id": 12130 } ] }, @@ -19802,25 +25875,25 @@ "states": [ { "default": true, - "id": 10299, + "id": 12083, "properties": { "facing": "north" } }, { - "id": 10300, + "id": 12084, "properties": { "facing": "south" } }, { - "id": 10301, + "id": 12085, "properties": { "facing": "west" } }, { - "id": 10302, + "id": 12086, "properties": { "facing": "east" } @@ -19831,7 +25904,7 @@ "states": [ { "default": true, - "id": 10529 + "id": 12313 } ] }, @@ -19839,7 +25912,7 @@ "states": [ { "default": true, - "id": 1668 + "id": 2026 } ] }, @@ -19856,38 +25929,38 @@ }, "states": [ { - "id": 10225, + "id": 12009, "properties": { "facing": "north" } }, { - "id": 10226, + "id": 12010, "properties": { "facing": "east" } }, { - "id": 10227, + "id": 12011, "properties": { "facing": "south" } }, { - "id": 10228, + "id": 12012, "properties": { "facing": "west" } }, { "default": true, - "id": 10229, + "id": 12013, "properties": { "facing": "up" } }, { - "id": 10230, + "id": 12014, "properties": { "facing": "down" } @@ -19898,7 +25971,7 @@ "states": [ { "default": true, - "id": 4415 + "id": 5791 } ] }, @@ -19927,7 +26000,7 @@ }, "states": [ { - "id": 7844, + "id": 9328, "properties": { "east": "true", "north": "true", @@ -19937,7 +26010,7 @@ } }, { - "id": 7845, + "id": 9329, "properties": { "east": "true", "north": "true", @@ -19947,7 +26020,7 @@ } }, { - "id": 7846, + "id": 9330, "properties": { "east": "true", "north": "true", @@ -19957,7 +26030,7 @@ } }, { - "id": 7847, + "id": 9331, "properties": { "east": "true", "north": "true", @@ -19967,7 +26040,7 @@ } }, { - "id": 7848, + "id": 9332, "properties": { "east": "true", "north": "true", @@ -19977,7 +26050,7 @@ } }, { - "id": 7849, + "id": 9333, "properties": { "east": "true", "north": "true", @@ -19987,7 +26060,7 @@ } }, { - "id": 7850, + "id": 9334, "properties": { "east": "true", "north": "true", @@ -19997,7 +26070,7 @@ } }, { - "id": 7851, + "id": 9335, "properties": { "east": "true", "north": "true", @@ -20007,7 +26080,7 @@ } }, { - "id": 7852, + "id": 9336, "properties": { "east": "true", "north": "false", @@ -20017,7 +26090,7 @@ } }, { - "id": 7853, + "id": 9337, "properties": { "east": "true", "north": "false", @@ -20027,7 +26100,7 @@ } }, { - "id": 7854, + "id": 9338, "properties": { "east": "true", "north": "false", @@ -20037,7 +26110,7 @@ } }, { - "id": 7855, + "id": 9339, "properties": { "east": "true", "north": "false", @@ -20047,7 +26120,7 @@ } }, { - "id": 7856, + "id": 9340, "properties": { "east": "true", "north": "false", @@ -20057,7 +26130,7 @@ } }, { - "id": 7857, + "id": 9341, "properties": { "east": "true", "north": "false", @@ -20067,7 +26140,7 @@ } }, { - "id": 7858, + "id": 9342, "properties": { "east": "true", "north": "false", @@ -20077,7 +26150,7 @@ } }, { - "id": 7859, + "id": 9343, "properties": { "east": "true", "north": "false", @@ -20087,7 +26160,7 @@ } }, { - "id": 7860, + "id": 9344, "properties": { "east": "false", "north": "true", @@ -20097,7 +26170,7 @@ } }, { - "id": 7861, + "id": 9345, "properties": { "east": "false", "north": "true", @@ -20107,7 +26180,7 @@ } }, { - "id": 7862, + "id": 9346, "properties": { "east": "false", "north": "true", @@ -20117,7 +26190,7 @@ } }, { - "id": 7863, + "id": 9347, "properties": { "east": "false", "north": "true", @@ -20127,7 +26200,7 @@ } }, { - "id": 7864, + "id": 9348, "properties": { "east": "false", "north": "true", @@ -20137,7 +26210,7 @@ } }, { - "id": 7865, + "id": 9349, "properties": { "east": "false", "north": "true", @@ -20147,7 +26220,7 @@ } }, { - "id": 7866, + "id": 9350, "properties": { "east": "false", "north": "true", @@ -20157,7 +26230,7 @@ } }, { - "id": 7867, + "id": 9351, "properties": { "east": "false", "north": "true", @@ -20167,7 +26240,7 @@ } }, { - "id": 7868, + "id": 9352, "properties": { "east": "false", "north": "false", @@ -20177,7 +26250,7 @@ } }, { - "id": 7869, + "id": 9353, "properties": { "east": "false", "north": "false", @@ -20187,7 +26260,7 @@ } }, { - "id": 7870, + "id": 9354, "properties": { "east": "false", "north": "false", @@ -20197,7 +26270,7 @@ } }, { - "id": 7871, + "id": 9355, "properties": { "east": "false", "north": "false", @@ -20207,7 +26280,7 @@ } }, { - "id": 7872, + "id": 9356, "properties": { "east": "false", "north": "false", @@ -20217,7 +26290,7 @@ } }, { - "id": 7873, + "id": 9357, "properties": { "east": "false", "north": "false", @@ -20227,7 +26300,7 @@ } }, { - "id": 7874, + "id": 9358, "properties": { "east": "false", "north": "false", @@ -20238,7 +26311,7 @@ }, { "default": true, - "id": 7875, + "id": 9359, "properties": { "east": "false", "north": "false", @@ -20253,7 +26326,7 @@ "states": [ { "default": true, - "id": 7487 + "id": 8971 } ] }, @@ -20269,25 +26342,25 @@ "states": [ { "default": true, - "id": 8938, + "id": 10582, "properties": { "facing": "north" } }, { - "id": 8939, + "id": 10583, "properties": { "facing": "south" } }, { - "id": 8940, + "id": 10584, "properties": { "facing": "west" } }, { - "id": 8941, + "id": 10585, "properties": { "facing": "east" } @@ -20298,7 +26371,7 @@ "states": [ { "default": true, - "id": 1649 + "id": 2007 } ] }, @@ -20312,20 +26385,20 @@ }, "states": [ { - "id": 10137, + "id": 11921, "properties": { "axis": "x" } }, { "default": true, - "id": 10138, + "id": 11922, "properties": { "axis": "y" } }, { - "id": 10139, + "id": 11923, "properties": { "axis": "z" } @@ -20336,7 +26409,7 @@ "states": [ { "default": true, - "id": 1686 + "id": 2044 } ] }, @@ -20350,13 +26423,13 @@ "states": [ { "default": true, - "id": 10413, + "id": 12197, "properties": { "waterlogged": "true" } }, { - "id": 10414, + "id": 12198, "properties": { "waterlogged": "false" } @@ -20367,7 +26440,7 @@ "states": [ { "default": true, - "id": 10397 + "id": 12181 } ] }, @@ -20381,13 +26454,13 @@ "states": [ { "default": true, - "id": 10433, + "id": 12217, "properties": { "waterlogged": "true" } }, { - "id": 10434, + "id": 12218, "properties": { "waterlogged": "false" } @@ -20410,56 +26483,56 @@ "states": [ { "default": true, - "id": 10489, + "id": 12273, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 10490, + "id": 12274, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 10491, + "id": 12275, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 10492, + "id": 12276, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 10493, + "id": 12277, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 10494, + "id": 12278, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 10495, + "id": 12279, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 10496, + "id": 12280, "properties": { "facing": "east", "waterlogged": "false" @@ -20484,7 +26557,7 @@ }, "states": [ { - "id": 5720, + "id": 7160, "properties": { "has_bottle_0": "true", "has_bottle_1": "true", @@ -20492,7 +26565,7 @@ } }, { - "id": 5721, + "id": 7161, "properties": { "has_bottle_0": "true", "has_bottle_1": "true", @@ -20500,7 +26573,7 @@ } }, { - "id": 5722, + "id": 7162, "properties": { "has_bottle_0": "true", "has_bottle_1": "false", @@ -20508,7 +26581,7 @@ } }, { - "id": 5723, + "id": 7163, "properties": { "has_bottle_0": "true", "has_bottle_1": "false", @@ -20516,7 +26589,7 @@ } }, { - "id": 5724, + "id": 7164, "properties": { "has_bottle_0": "false", "has_bottle_1": "true", @@ -20524,7 +26597,7 @@ } }, { - "id": 5725, + "id": 7165, "properties": { "has_bottle_0": "false", "has_bottle_1": "true", @@ -20532,7 +26605,7 @@ } }, { - "id": 5726, + "id": 7166, "properties": { "has_bottle_0": "false", "has_bottle_1": "false", @@ -20541,7 +26614,7 @@ }, { "default": true, - "id": 5727, + "id": 7167, "properties": { "has_bottle_0": "false", "has_bottle_1": "false", @@ -20564,21 +26637,21 @@ }, "states": [ { - "id": 9119, + "id": 10775, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 9120, + "id": 10776, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 9121, + "id": 10777, "properties": { "type": "bottom", "waterlogged": "true" @@ -20586,21 +26659,21 @@ }, { "default": true, - "id": 9122, + "id": 10778, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 9123, + "id": 10779, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 9124, + "id": 10780, "properties": { "type": "double", "waterlogged": "false" @@ -20634,7 +26707,7 @@ }, "states": [ { - "id": 5359, + "id": 6799, "properties": { "facing": "north", "half": "top", @@ -20643,7 +26716,7 @@ } }, { - "id": 5360, + "id": 6800, "properties": { "facing": "north", "half": "top", @@ -20652,7 +26725,7 @@ } }, { - "id": 5361, + "id": 6801, "properties": { "facing": "north", "half": "top", @@ -20661,7 +26734,7 @@ } }, { - "id": 5362, + "id": 6802, "properties": { "facing": "north", "half": "top", @@ -20670,7 +26743,7 @@ } }, { - "id": 5363, + "id": 6803, "properties": { "facing": "north", "half": "top", @@ -20679,7 +26752,7 @@ } }, { - "id": 5364, + "id": 6804, "properties": { "facing": "north", "half": "top", @@ -20688,7 +26761,7 @@ } }, { - "id": 5365, + "id": 6805, "properties": { "facing": "north", "half": "top", @@ -20697,7 +26770,7 @@ } }, { - "id": 5366, + "id": 6806, "properties": { "facing": "north", "half": "top", @@ -20706,7 +26779,7 @@ } }, { - "id": 5367, + "id": 6807, "properties": { "facing": "north", "half": "top", @@ -20715,7 +26788,7 @@ } }, { - "id": 5368, + "id": 6808, "properties": { "facing": "north", "half": "top", @@ -20724,7 +26797,7 @@ } }, { - "id": 5369, + "id": 6809, "properties": { "facing": "north", "half": "bottom", @@ -20734,7 +26807,7 @@ }, { "default": true, - "id": 5370, + "id": 6810, "properties": { "facing": "north", "half": "bottom", @@ -20743,7 +26816,7 @@ } }, { - "id": 5371, + "id": 6811, "properties": { "facing": "north", "half": "bottom", @@ -20752,7 +26825,7 @@ } }, { - "id": 5372, + "id": 6812, "properties": { "facing": "north", "half": "bottom", @@ -20761,7 +26834,7 @@ } }, { - "id": 5373, + "id": 6813, "properties": { "facing": "north", "half": "bottom", @@ -20770,7 +26843,7 @@ } }, { - "id": 5374, + "id": 6814, "properties": { "facing": "north", "half": "bottom", @@ -20779,7 +26852,7 @@ } }, { - "id": 5375, + "id": 6815, "properties": { "facing": "north", "half": "bottom", @@ -20788,7 +26861,7 @@ } }, { - "id": 5376, + "id": 6816, "properties": { "facing": "north", "half": "bottom", @@ -20797,7 +26870,7 @@ } }, { - "id": 5377, + "id": 6817, "properties": { "facing": "north", "half": "bottom", @@ -20806,7 +26879,7 @@ } }, { - "id": 5378, + "id": 6818, "properties": { "facing": "north", "half": "bottom", @@ -20815,7 +26888,7 @@ } }, { - "id": 5379, + "id": 6819, "properties": { "facing": "south", "half": "top", @@ -20824,7 +26897,7 @@ } }, { - "id": 5380, + "id": 6820, "properties": { "facing": "south", "half": "top", @@ -20833,7 +26906,7 @@ } }, { - "id": 5381, + "id": 6821, "properties": { "facing": "south", "half": "top", @@ -20842,7 +26915,7 @@ } }, { - "id": 5382, + "id": 6822, "properties": { "facing": "south", "half": "top", @@ -20851,7 +26924,7 @@ } }, { - "id": 5383, + "id": 6823, "properties": { "facing": "south", "half": "top", @@ -20860,7 +26933,7 @@ } }, { - "id": 5384, + "id": 6824, "properties": { "facing": "south", "half": "top", @@ -20869,7 +26942,7 @@ } }, { - "id": 5385, + "id": 6825, "properties": { "facing": "south", "half": "top", @@ -20878,7 +26951,7 @@ } }, { - "id": 5386, + "id": 6826, "properties": { "facing": "south", "half": "top", @@ -20887,7 +26960,7 @@ } }, { - "id": 5387, + "id": 6827, "properties": { "facing": "south", "half": "top", @@ -20896,7 +26969,7 @@ } }, { - "id": 5388, + "id": 6828, "properties": { "facing": "south", "half": "top", @@ -20905,7 +26978,7 @@ } }, { - "id": 5389, + "id": 6829, "properties": { "facing": "south", "half": "bottom", @@ -20914,7 +26987,7 @@ } }, { - "id": 5390, + "id": 6830, "properties": { "facing": "south", "half": "bottom", @@ -20923,7 +26996,7 @@ } }, { - "id": 5391, + "id": 6831, "properties": { "facing": "south", "half": "bottom", @@ -20932,7 +27005,7 @@ } }, { - "id": 5392, + "id": 6832, "properties": { "facing": "south", "half": "bottom", @@ -20941,7 +27014,7 @@ } }, { - "id": 5393, + "id": 6833, "properties": { "facing": "south", "half": "bottom", @@ -20950,7 +27023,7 @@ } }, { - "id": 5394, + "id": 6834, "properties": { "facing": "south", "half": "bottom", @@ -20959,7 +27032,7 @@ } }, { - "id": 5395, + "id": 6835, "properties": { "facing": "south", "half": "bottom", @@ -20968,7 +27041,7 @@ } }, { - "id": 5396, + "id": 6836, "properties": { "facing": "south", "half": "bottom", @@ -20977,7 +27050,7 @@ } }, { - "id": 5397, + "id": 6837, "properties": { "facing": "south", "half": "bottom", @@ -20986,7 +27059,7 @@ } }, { - "id": 5398, + "id": 6838, "properties": { "facing": "south", "half": "bottom", @@ -20995,7 +27068,7 @@ } }, { - "id": 5399, + "id": 6839, "properties": { "facing": "west", "half": "top", @@ -21004,7 +27077,7 @@ } }, { - "id": 5400, + "id": 6840, "properties": { "facing": "west", "half": "top", @@ -21013,7 +27086,7 @@ } }, { - "id": 5401, + "id": 6841, "properties": { "facing": "west", "half": "top", @@ -21022,7 +27095,7 @@ } }, { - "id": 5402, + "id": 6842, "properties": { "facing": "west", "half": "top", @@ -21031,7 +27104,7 @@ } }, { - "id": 5403, + "id": 6843, "properties": { "facing": "west", "half": "top", @@ -21040,7 +27113,7 @@ } }, { - "id": 5404, + "id": 6844, "properties": { "facing": "west", "half": "top", @@ -21049,7 +27122,7 @@ } }, { - "id": 5405, + "id": 6845, "properties": { "facing": "west", "half": "top", @@ -21058,7 +27131,7 @@ } }, { - "id": 5406, + "id": 6846, "properties": { "facing": "west", "half": "top", @@ -21067,7 +27140,7 @@ } }, { - "id": 5407, + "id": 6847, "properties": { "facing": "west", "half": "top", @@ -21076,7 +27149,7 @@ } }, { - "id": 5408, + "id": 6848, "properties": { "facing": "west", "half": "top", @@ -21085,7 +27158,7 @@ } }, { - "id": 5409, + "id": 6849, "properties": { "facing": "west", "half": "bottom", @@ -21094,7 +27167,7 @@ } }, { - "id": 5410, + "id": 6850, "properties": { "facing": "west", "half": "bottom", @@ -21103,7 +27176,7 @@ } }, { - "id": 5411, + "id": 6851, "properties": { "facing": "west", "half": "bottom", @@ -21112,7 +27185,7 @@ } }, { - "id": 5412, + "id": 6852, "properties": { "facing": "west", "half": "bottom", @@ -21121,7 +27194,7 @@ } }, { - "id": 5413, + "id": 6853, "properties": { "facing": "west", "half": "bottom", @@ -21130,7 +27203,7 @@ } }, { - "id": 5414, + "id": 6854, "properties": { "facing": "west", "half": "bottom", @@ -21139,7 +27212,7 @@ } }, { - "id": 5415, + "id": 6855, "properties": { "facing": "west", "half": "bottom", @@ -21148,7 +27221,7 @@ } }, { - "id": 5416, + "id": 6856, "properties": { "facing": "west", "half": "bottom", @@ -21157,7 +27230,7 @@ } }, { - "id": 5417, + "id": 6857, "properties": { "facing": "west", "half": "bottom", @@ -21166,7 +27239,7 @@ } }, { - "id": 5418, + "id": 6858, "properties": { "facing": "west", "half": "bottom", @@ -21175,7 +27248,7 @@ } }, { - "id": 5419, + "id": 6859, "properties": { "facing": "east", "half": "top", @@ -21184,7 +27257,7 @@ } }, { - "id": 5420, + "id": 6860, "properties": { "facing": "east", "half": "top", @@ -21193,7 +27266,7 @@ } }, { - "id": 5421, + "id": 6861, "properties": { "facing": "east", "half": "top", @@ -21202,7 +27275,7 @@ } }, { - "id": 5422, + "id": 6862, "properties": { "facing": "east", "half": "top", @@ -21211,7 +27284,7 @@ } }, { - "id": 5423, + "id": 6863, "properties": { "facing": "east", "half": "top", @@ -21220,7 +27293,7 @@ } }, { - "id": 5424, + "id": 6864, "properties": { "facing": "east", "half": "top", @@ -21229,7 +27302,7 @@ } }, { - "id": 5425, + "id": 6865, "properties": { "facing": "east", "half": "top", @@ -21238,7 +27311,7 @@ } }, { - "id": 5426, + "id": 6866, "properties": { "facing": "east", "half": "top", @@ -21247,7 +27320,7 @@ } }, { - "id": 5427, + "id": 6867, "properties": { "facing": "east", "half": "top", @@ -21256,7 +27329,7 @@ } }, { - "id": 5428, + "id": 6868, "properties": { "facing": "east", "half": "top", @@ -21265,7 +27338,7 @@ } }, { - "id": 5429, + "id": 6869, "properties": { "facing": "east", "half": "bottom", @@ -21274,7 +27347,7 @@ } }, { - "id": 5430, + "id": 6870, "properties": { "facing": "east", "half": "bottom", @@ -21283,7 +27356,7 @@ } }, { - "id": 5431, + "id": 6871, "properties": { "facing": "east", "half": "bottom", @@ -21292,7 +27365,7 @@ } }, { - "id": 5432, + "id": 6872, "properties": { "facing": "east", "half": "bottom", @@ -21301,7 +27374,7 @@ } }, { - "id": 5433, + "id": 6873, "properties": { "facing": "east", "half": "bottom", @@ -21310,7 +27383,7 @@ } }, { - "id": 5434, + "id": 6874, "properties": { "facing": "east", "half": "bottom", @@ -21319,7 +27392,7 @@ } }, { - "id": 5435, + "id": 6875, "properties": { "facing": "east", "half": "bottom", @@ -21328,7 +27401,7 @@ } }, { - "id": 5436, + "id": 6876, "properties": { "facing": "east", "half": "bottom", @@ -21337,7 +27410,7 @@ } }, { - "id": 5437, + "id": 6877, "properties": { "facing": "east", "half": "bottom", @@ -21346,7 +27419,7 @@ } }, { - "id": 5438, + "id": 6878, "properties": { "facing": "east", "half": "bottom", @@ -21389,7 +27462,7 @@ }, "states": [ { - "id": 11748, + "id": 13532, "properties": { "east": "none", "north": "none", @@ -21400,7 +27473,7 @@ } }, { - "id": 11749, + "id": 13533, "properties": { "east": "none", "north": "none", @@ -21411,7 +27484,7 @@ } }, { - "id": 11750, + "id": 13534, "properties": { "east": "none", "north": "none", @@ -21423,7 +27496,7 @@ }, { "default": true, - "id": 11751, + "id": 13535, "properties": { "east": "none", "north": "none", @@ -21434,7 +27507,7 @@ } }, { - "id": 11752, + "id": 13536, "properties": { "east": "none", "north": "none", @@ -21445,7 +27518,7 @@ } }, { - "id": 11753, + "id": 13537, "properties": { "east": "none", "north": "none", @@ -21456,7 +27529,7 @@ } }, { - "id": 11754, + "id": 13538, "properties": { "east": "none", "north": "none", @@ -21467,7 +27540,7 @@ } }, { - "id": 11755, + "id": 13539, "properties": { "east": "none", "north": "none", @@ -21478,7 +27551,7 @@ } }, { - "id": 11756, + "id": 13540, "properties": { "east": "none", "north": "none", @@ -21489,7 +27562,7 @@ } }, { - "id": 11757, + "id": 13541, "properties": { "east": "none", "north": "none", @@ -21500,7 +27573,7 @@ } }, { - "id": 11758, + "id": 13542, "properties": { "east": "none", "north": "none", @@ -21511,7 +27584,7 @@ } }, { - "id": 11759, + "id": 13543, "properties": { "east": "none", "north": "none", @@ -21522,7 +27595,7 @@ } }, { - "id": 11760, + "id": 13544, "properties": { "east": "none", "north": "none", @@ -21533,7 +27606,7 @@ } }, { - "id": 11761, + "id": 13545, "properties": { "east": "none", "north": "none", @@ -21544,7 +27617,7 @@ } }, { - "id": 11762, + "id": 13546, "properties": { "east": "none", "north": "none", @@ -21555,7 +27628,7 @@ } }, { - "id": 11763, + "id": 13547, "properties": { "east": "none", "north": "none", @@ -21566,7 +27639,7 @@ } }, { - "id": 11764, + "id": 13548, "properties": { "east": "none", "north": "none", @@ -21577,7 +27650,7 @@ } }, { - "id": 11765, + "id": 13549, "properties": { "east": "none", "north": "none", @@ -21588,7 +27661,7 @@ } }, { - "id": 11766, + "id": 13550, "properties": { "east": "none", "north": "none", @@ -21599,7 +27672,7 @@ } }, { - "id": 11767, + "id": 13551, "properties": { "east": "none", "north": "none", @@ -21610,7 +27683,7 @@ } }, { - "id": 11768, + "id": 13552, "properties": { "east": "none", "north": "none", @@ -21621,7 +27694,7 @@ } }, { - "id": 11769, + "id": 13553, "properties": { "east": "none", "north": "none", @@ -21632,7 +27705,7 @@ } }, { - "id": 11770, + "id": 13554, "properties": { "east": "none", "north": "none", @@ -21643,7 +27716,7 @@ } }, { - "id": 11771, + "id": 13555, "properties": { "east": "none", "north": "none", @@ -21654,7 +27727,7 @@ } }, { - "id": 11772, + "id": 13556, "properties": { "east": "none", "north": "none", @@ -21665,7 +27738,7 @@ } }, { - "id": 11773, + "id": 13557, "properties": { "east": "none", "north": "none", @@ -21676,7 +27749,7 @@ } }, { - "id": 11774, + "id": 13558, "properties": { "east": "none", "north": "none", @@ -21687,7 +27760,7 @@ } }, { - "id": 11775, + "id": 13559, "properties": { "east": "none", "north": "none", @@ -21698,7 +27771,7 @@ } }, { - "id": 11776, + "id": 13560, "properties": { "east": "none", "north": "none", @@ -21709,7 +27782,7 @@ } }, { - "id": 11777, + "id": 13561, "properties": { "east": "none", "north": "none", @@ -21720,7 +27793,7 @@ } }, { - "id": 11778, + "id": 13562, "properties": { "east": "none", "north": "none", @@ -21731,7 +27804,7 @@ } }, { - "id": 11779, + "id": 13563, "properties": { "east": "none", "north": "none", @@ -21742,7 +27815,7 @@ } }, { - "id": 11780, + "id": 13564, "properties": { "east": "none", "north": "none", @@ -21753,7 +27826,7 @@ } }, { - "id": 11781, + "id": 13565, "properties": { "east": "none", "north": "none", @@ -21764,7 +27837,7 @@ } }, { - "id": 11782, + "id": 13566, "properties": { "east": "none", "north": "none", @@ -21775,7 +27848,7 @@ } }, { - "id": 11783, + "id": 13567, "properties": { "east": "none", "north": "none", @@ -21786,7 +27859,7 @@ } }, { - "id": 11784, + "id": 13568, "properties": { "east": "none", "north": "low", @@ -21797,7 +27870,7 @@ } }, { - "id": 11785, + "id": 13569, "properties": { "east": "none", "north": "low", @@ -21808,7 +27881,7 @@ } }, { - "id": 11786, + "id": 13570, "properties": { "east": "none", "north": "low", @@ -21819,7 +27892,7 @@ } }, { - "id": 11787, + "id": 13571, "properties": { "east": "none", "north": "low", @@ -21830,7 +27903,7 @@ } }, { - "id": 11788, + "id": 13572, "properties": { "east": "none", "north": "low", @@ -21841,7 +27914,7 @@ } }, { - "id": 11789, + "id": 13573, "properties": { "east": "none", "north": "low", @@ -21852,7 +27925,7 @@ } }, { - "id": 11790, + "id": 13574, "properties": { "east": "none", "north": "low", @@ -21863,7 +27936,7 @@ } }, { - "id": 11791, + "id": 13575, "properties": { "east": "none", "north": "low", @@ -21874,7 +27947,7 @@ } }, { - "id": 11792, + "id": 13576, "properties": { "east": "none", "north": "low", @@ -21885,7 +27958,7 @@ } }, { - "id": 11793, + "id": 13577, "properties": { "east": "none", "north": "low", @@ -21896,7 +27969,7 @@ } }, { - "id": 11794, + "id": 13578, "properties": { "east": "none", "north": "low", @@ -21907,7 +27980,7 @@ } }, { - "id": 11795, + "id": 13579, "properties": { "east": "none", "north": "low", @@ -21918,7 +27991,7 @@ } }, { - "id": 11796, + "id": 13580, "properties": { "east": "none", "north": "low", @@ -21929,7 +28002,7 @@ } }, { - "id": 11797, + "id": 13581, "properties": { "east": "none", "north": "low", @@ -21940,7 +28013,7 @@ } }, { - "id": 11798, + "id": 13582, "properties": { "east": "none", "north": "low", @@ -21951,7 +28024,7 @@ } }, { - "id": 11799, + "id": 13583, "properties": { "east": "none", "north": "low", @@ -21962,7 +28035,7 @@ } }, { - "id": 11800, + "id": 13584, "properties": { "east": "none", "north": "low", @@ -21973,7 +28046,7 @@ } }, { - "id": 11801, + "id": 13585, "properties": { "east": "none", "north": "low", @@ -21984,7 +28057,7 @@ } }, { - "id": 11802, + "id": 13586, "properties": { "east": "none", "north": "low", @@ -21995,7 +28068,7 @@ } }, { - "id": 11803, + "id": 13587, "properties": { "east": "none", "north": "low", @@ -22006,7 +28079,7 @@ } }, { - "id": 11804, + "id": 13588, "properties": { "east": "none", "north": "low", @@ -22017,7 +28090,7 @@ } }, { - "id": 11805, + "id": 13589, "properties": { "east": "none", "north": "low", @@ -22028,7 +28101,7 @@ } }, { - "id": 11806, + "id": 13590, "properties": { "east": "none", "north": "low", @@ -22039,7 +28112,7 @@ } }, { - "id": 11807, + "id": 13591, "properties": { "east": "none", "north": "low", @@ -22050,7 +28123,7 @@ } }, { - "id": 11808, + "id": 13592, "properties": { "east": "none", "north": "low", @@ -22061,7 +28134,7 @@ } }, { - "id": 11809, + "id": 13593, "properties": { "east": "none", "north": "low", @@ -22072,7 +28145,7 @@ } }, { - "id": 11810, + "id": 13594, "properties": { "east": "none", "north": "low", @@ -22083,7 +28156,7 @@ } }, { - "id": 11811, + "id": 13595, "properties": { "east": "none", "north": "low", @@ -22094,7 +28167,7 @@ } }, { - "id": 11812, + "id": 13596, "properties": { "east": "none", "north": "low", @@ -22105,7 +28178,7 @@ } }, { - "id": 11813, + "id": 13597, "properties": { "east": "none", "north": "low", @@ -22116,7 +28189,7 @@ } }, { - "id": 11814, + "id": 13598, "properties": { "east": "none", "north": "low", @@ -22127,7 +28200,7 @@ } }, { - "id": 11815, + "id": 13599, "properties": { "east": "none", "north": "low", @@ -22138,7 +28211,7 @@ } }, { - "id": 11816, + "id": 13600, "properties": { "east": "none", "north": "low", @@ -22149,7 +28222,7 @@ } }, { - "id": 11817, + "id": 13601, "properties": { "east": "none", "north": "low", @@ -22160,7 +28233,7 @@ } }, { - "id": 11818, + "id": 13602, "properties": { "east": "none", "north": "low", @@ -22171,7 +28244,7 @@ } }, { - "id": 11819, + "id": 13603, "properties": { "east": "none", "north": "low", @@ -22182,7 +28255,7 @@ } }, { - "id": 11820, + "id": 13604, "properties": { "east": "none", "north": "tall", @@ -22193,7 +28266,7 @@ } }, { - "id": 11821, + "id": 13605, "properties": { "east": "none", "north": "tall", @@ -22204,7 +28277,7 @@ } }, { - "id": 11822, + "id": 13606, "properties": { "east": "none", "north": "tall", @@ -22215,7 +28288,7 @@ } }, { - "id": 11823, + "id": 13607, "properties": { "east": "none", "north": "tall", @@ -22226,7 +28299,7 @@ } }, { - "id": 11824, + "id": 13608, "properties": { "east": "none", "north": "tall", @@ -22237,7 +28310,7 @@ } }, { - "id": 11825, + "id": 13609, "properties": { "east": "none", "north": "tall", @@ -22248,7 +28321,7 @@ } }, { - "id": 11826, + "id": 13610, "properties": { "east": "none", "north": "tall", @@ -22259,7 +28332,7 @@ } }, { - "id": 11827, + "id": 13611, "properties": { "east": "none", "north": "tall", @@ -22270,7 +28343,7 @@ } }, { - "id": 11828, + "id": 13612, "properties": { "east": "none", "north": "tall", @@ -22281,7 +28354,7 @@ } }, { - "id": 11829, + "id": 13613, "properties": { "east": "none", "north": "tall", @@ -22292,7 +28365,7 @@ } }, { - "id": 11830, + "id": 13614, "properties": { "east": "none", "north": "tall", @@ -22303,7 +28376,7 @@ } }, { - "id": 11831, + "id": 13615, "properties": { "east": "none", "north": "tall", @@ -22314,7 +28387,7 @@ } }, { - "id": 11832, + "id": 13616, "properties": { "east": "none", "north": "tall", @@ -22325,7 +28398,7 @@ } }, { - "id": 11833, + "id": 13617, "properties": { "east": "none", "north": "tall", @@ -22336,7 +28409,7 @@ } }, { - "id": 11834, + "id": 13618, "properties": { "east": "none", "north": "tall", @@ -22347,7 +28420,7 @@ } }, { - "id": 11835, + "id": 13619, "properties": { "east": "none", "north": "tall", @@ -22358,7 +28431,7 @@ } }, { - "id": 11836, + "id": 13620, "properties": { "east": "none", "north": "tall", @@ -22369,7 +28442,7 @@ } }, { - "id": 11837, + "id": 13621, "properties": { "east": "none", "north": "tall", @@ -22380,7 +28453,7 @@ } }, { - "id": 11838, + "id": 13622, "properties": { "east": "none", "north": "tall", @@ -22391,7 +28464,7 @@ } }, { - "id": 11839, + "id": 13623, "properties": { "east": "none", "north": "tall", @@ -22402,7 +28475,7 @@ } }, { - "id": 11840, + "id": 13624, "properties": { "east": "none", "north": "tall", @@ -22413,7 +28486,7 @@ } }, { - "id": 11841, + "id": 13625, "properties": { "east": "none", "north": "tall", @@ -22424,7 +28497,7 @@ } }, { - "id": 11842, + "id": 13626, "properties": { "east": "none", "north": "tall", @@ -22435,7 +28508,7 @@ } }, { - "id": 11843, + "id": 13627, "properties": { "east": "none", "north": "tall", @@ -22446,7 +28519,7 @@ } }, { - "id": 11844, + "id": 13628, "properties": { "east": "none", "north": "tall", @@ -22457,7 +28530,7 @@ } }, { - "id": 11845, + "id": 13629, "properties": { "east": "none", "north": "tall", @@ -22468,7 +28541,7 @@ } }, { - "id": 11846, + "id": 13630, "properties": { "east": "none", "north": "tall", @@ -22479,7 +28552,7 @@ } }, { - "id": 11847, + "id": 13631, "properties": { "east": "none", "north": "tall", @@ -22490,7 +28563,7 @@ } }, { - "id": 11848, + "id": 13632, "properties": { "east": "none", "north": "tall", @@ -22501,7 +28574,7 @@ } }, { - "id": 11849, + "id": 13633, "properties": { "east": "none", "north": "tall", @@ -22512,7 +28585,7 @@ } }, { - "id": 11850, + "id": 13634, "properties": { "east": "none", "north": "tall", @@ -22523,7 +28596,7 @@ } }, { - "id": 11851, + "id": 13635, "properties": { "east": "none", "north": "tall", @@ -22534,7 +28607,7 @@ } }, { - "id": 11852, + "id": 13636, "properties": { "east": "none", "north": "tall", @@ -22545,7 +28618,7 @@ } }, { - "id": 11853, + "id": 13637, "properties": { "east": "none", "north": "tall", @@ -22556,7 +28629,7 @@ } }, { - "id": 11854, + "id": 13638, "properties": { "east": "none", "north": "tall", @@ -22567,7 +28640,7 @@ } }, { - "id": 11855, + "id": 13639, "properties": { "east": "none", "north": "tall", @@ -22578,7 +28651,7 @@ } }, { - "id": 11856, + "id": 13640, "properties": { "east": "low", "north": "none", @@ -22589,7 +28662,7 @@ } }, { - "id": 11857, + "id": 13641, "properties": { "east": "low", "north": "none", @@ -22600,7 +28673,7 @@ } }, { - "id": 11858, + "id": 13642, "properties": { "east": "low", "north": "none", @@ -22611,7 +28684,7 @@ } }, { - "id": 11859, + "id": 13643, "properties": { "east": "low", "north": "none", @@ -22622,7 +28695,7 @@ } }, { - "id": 11860, + "id": 13644, "properties": { "east": "low", "north": "none", @@ -22633,7 +28706,7 @@ } }, { - "id": 11861, + "id": 13645, "properties": { "east": "low", "north": "none", @@ -22644,7 +28717,7 @@ } }, { - "id": 11862, + "id": 13646, "properties": { "east": "low", "north": "none", @@ -22655,7 +28728,7 @@ } }, { - "id": 11863, + "id": 13647, "properties": { "east": "low", "north": "none", @@ -22666,7 +28739,7 @@ } }, { - "id": 11864, + "id": 13648, "properties": { "east": "low", "north": "none", @@ -22677,7 +28750,7 @@ } }, { - "id": 11865, + "id": 13649, "properties": { "east": "low", "north": "none", @@ -22688,7 +28761,7 @@ } }, { - "id": 11866, + "id": 13650, "properties": { "east": "low", "north": "none", @@ -22699,7 +28772,7 @@ } }, { - "id": 11867, + "id": 13651, "properties": { "east": "low", "north": "none", @@ -22710,7 +28783,7 @@ } }, { - "id": 11868, + "id": 13652, "properties": { "east": "low", "north": "none", @@ -22721,7 +28794,7 @@ } }, { - "id": 11869, + "id": 13653, "properties": { "east": "low", "north": "none", @@ -22732,7 +28805,7 @@ } }, { - "id": 11870, + "id": 13654, "properties": { "east": "low", "north": "none", @@ -22743,7 +28816,7 @@ } }, { - "id": 11871, + "id": 13655, "properties": { "east": "low", "north": "none", @@ -22754,7 +28827,7 @@ } }, { - "id": 11872, + "id": 13656, "properties": { "east": "low", "north": "none", @@ -22765,7 +28838,7 @@ } }, { - "id": 11873, + "id": 13657, "properties": { "east": "low", "north": "none", @@ -22776,7 +28849,7 @@ } }, { - "id": 11874, + "id": 13658, "properties": { "east": "low", "north": "none", @@ -22787,7 +28860,7 @@ } }, { - "id": 11875, + "id": 13659, "properties": { "east": "low", "north": "none", @@ -22798,7 +28871,7 @@ } }, { - "id": 11876, + "id": 13660, "properties": { "east": "low", "north": "none", @@ -22809,7 +28882,7 @@ } }, { - "id": 11877, + "id": 13661, "properties": { "east": "low", "north": "none", @@ -22820,7 +28893,7 @@ } }, { - "id": 11878, + "id": 13662, "properties": { "east": "low", "north": "none", @@ -22831,7 +28904,7 @@ } }, { - "id": 11879, + "id": 13663, "properties": { "east": "low", "north": "none", @@ -22842,7 +28915,7 @@ } }, { - "id": 11880, + "id": 13664, "properties": { "east": "low", "north": "none", @@ -22853,7 +28926,7 @@ } }, { - "id": 11881, + "id": 13665, "properties": { "east": "low", "north": "none", @@ -22864,7 +28937,7 @@ } }, { - "id": 11882, + "id": 13666, "properties": { "east": "low", "north": "none", @@ -22875,7 +28948,7 @@ } }, { - "id": 11883, + "id": 13667, "properties": { "east": "low", "north": "none", @@ -22886,7 +28959,7 @@ } }, { - "id": 11884, + "id": 13668, "properties": { "east": "low", "north": "none", @@ -22897,7 +28970,7 @@ } }, { - "id": 11885, + "id": 13669, "properties": { "east": "low", "north": "none", @@ -22908,7 +28981,7 @@ } }, { - "id": 11886, + "id": 13670, "properties": { "east": "low", "north": "none", @@ -22919,7 +28992,7 @@ } }, { - "id": 11887, + "id": 13671, "properties": { "east": "low", "north": "none", @@ -22930,7 +29003,7 @@ } }, { - "id": 11888, + "id": 13672, "properties": { "east": "low", "north": "none", @@ -22941,7 +29014,7 @@ } }, { - "id": 11889, + "id": 13673, "properties": { "east": "low", "north": "none", @@ -22952,7 +29025,7 @@ } }, { - "id": 11890, + "id": 13674, "properties": { "east": "low", "north": "none", @@ -22963,7 +29036,7 @@ } }, { - "id": 11891, + "id": 13675, "properties": { "east": "low", "north": "none", @@ -22974,7 +29047,7 @@ } }, { - "id": 11892, + "id": 13676, "properties": { "east": "low", "north": "low", @@ -22985,7 +29058,7 @@ } }, { - "id": 11893, + "id": 13677, "properties": { "east": "low", "north": "low", @@ -22996,7 +29069,7 @@ } }, { - "id": 11894, + "id": 13678, "properties": { "east": "low", "north": "low", @@ -23007,7 +29080,7 @@ } }, { - "id": 11895, + "id": 13679, "properties": { "east": "low", "north": "low", @@ -23018,7 +29091,7 @@ } }, { - "id": 11896, + "id": 13680, "properties": { "east": "low", "north": "low", @@ -23029,7 +29102,7 @@ } }, { - "id": 11897, + "id": 13681, "properties": { "east": "low", "north": "low", @@ -23040,7 +29113,7 @@ } }, { - "id": 11898, + "id": 13682, "properties": { "east": "low", "north": "low", @@ -23051,7 +29124,7 @@ } }, { - "id": 11899, + "id": 13683, "properties": { "east": "low", "north": "low", @@ -23062,7 +29135,7 @@ } }, { - "id": 11900, + "id": 13684, "properties": { "east": "low", "north": "low", @@ -23073,7 +29146,7 @@ } }, { - "id": 11901, + "id": 13685, "properties": { "east": "low", "north": "low", @@ -23084,7 +29157,7 @@ } }, { - "id": 11902, + "id": 13686, "properties": { "east": "low", "north": "low", @@ -23095,7 +29168,7 @@ } }, { - "id": 11903, + "id": 13687, "properties": { "east": "low", "north": "low", @@ -23106,7 +29179,7 @@ } }, { - "id": 11904, + "id": 13688, "properties": { "east": "low", "north": "low", @@ -23117,7 +29190,7 @@ } }, { - "id": 11905, + "id": 13689, "properties": { "east": "low", "north": "low", @@ -23128,7 +29201,7 @@ } }, { - "id": 11906, + "id": 13690, "properties": { "east": "low", "north": "low", @@ -23139,7 +29212,7 @@ } }, { - "id": 11907, + "id": 13691, "properties": { "east": "low", "north": "low", @@ -23150,7 +29223,7 @@ } }, { - "id": 11908, + "id": 13692, "properties": { "east": "low", "north": "low", @@ -23161,7 +29234,7 @@ } }, { - "id": 11909, + "id": 13693, "properties": { "east": "low", "north": "low", @@ -23172,7 +29245,7 @@ } }, { - "id": 11910, + "id": 13694, "properties": { "east": "low", "north": "low", @@ -23183,7 +29256,7 @@ } }, { - "id": 11911, + "id": 13695, "properties": { "east": "low", "north": "low", @@ -23194,7 +29267,7 @@ } }, { - "id": 11912, + "id": 13696, "properties": { "east": "low", "north": "low", @@ -23205,7 +29278,7 @@ } }, { - "id": 11913, + "id": 13697, "properties": { "east": "low", "north": "low", @@ -23216,7 +29289,7 @@ } }, { - "id": 11914, + "id": 13698, "properties": { "east": "low", "north": "low", @@ -23227,7 +29300,7 @@ } }, { - "id": 11915, + "id": 13699, "properties": { "east": "low", "north": "low", @@ -23238,7 +29311,7 @@ } }, { - "id": 11916, + "id": 13700, "properties": { "east": "low", "north": "low", @@ -23249,7 +29322,7 @@ } }, { - "id": 11917, + "id": 13701, "properties": { "east": "low", "north": "low", @@ -23260,7 +29333,7 @@ } }, { - "id": 11918, + "id": 13702, "properties": { "east": "low", "north": "low", @@ -23271,7 +29344,7 @@ } }, { - "id": 11919, + "id": 13703, "properties": { "east": "low", "north": "low", @@ -23282,7 +29355,7 @@ } }, { - "id": 11920, + "id": 13704, "properties": { "east": "low", "north": "low", @@ -23293,7 +29366,7 @@ } }, { - "id": 11921, + "id": 13705, "properties": { "east": "low", "north": "low", @@ -23304,7 +29377,7 @@ } }, { - "id": 11922, + "id": 13706, "properties": { "east": "low", "north": "low", @@ -23315,7 +29388,7 @@ } }, { - "id": 11923, + "id": 13707, "properties": { "east": "low", "north": "low", @@ -23326,7 +29399,7 @@ } }, { - "id": 11924, + "id": 13708, "properties": { "east": "low", "north": "low", @@ -23337,7 +29410,7 @@ } }, { - "id": 11925, + "id": 13709, "properties": { "east": "low", "north": "low", @@ -23348,7 +29421,7 @@ } }, { - "id": 11926, + "id": 13710, "properties": { "east": "low", "north": "low", @@ -23359,7 +29432,7 @@ } }, { - "id": 11927, + "id": 13711, "properties": { "east": "low", "north": "low", @@ -23370,7 +29443,7 @@ } }, { - "id": 11928, + "id": 13712, "properties": { "east": "low", "north": "tall", @@ -23381,7 +29454,7 @@ } }, { - "id": 11929, + "id": 13713, "properties": { "east": "low", "north": "tall", @@ -23392,7 +29465,7 @@ } }, { - "id": 11930, + "id": 13714, "properties": { "east": "low", "north": "tall", @@ -23403,7 +29476,7 @@ } }, { - "id": 11931, + "id": 13715, "properties": { "east": "low", "north": "tall", @@ -23414,7 +29487,7 @@ } }, { - "id": 11932, + "id": 13716, "properties": { "east": "low", "north": "tall", @@ -23425,7 +29498,7 @@ } }, { - "id": 11933, + "id": 13717, "properties": { "east": "low", "north": "tall", @@ -23436,7 +29509,7 @@ } }, { - "id": 11934, + "id": 13718, "properties": { "east": "low", "north": "tall", @@ -23447,7 +29520,7 @@ } }, { - "id": 11935, + "id": 13719, "properties": { "east": "low", "north": "tall", @@ -23458,7 +29531,7 @@ } }, { - "id": 11936, + "id": 13720, "properties": { "east": "low", "north": "tall", @@ -23469,7 +29542,7 @@ } }, { - "id": 11937, + "id": 13721, "properties": { "east": "low", "north": "tall", @@ -23480,7 +29553,7 @@ } }, { - "id": 11938, + "id": 13722, "properties": { "east": "low", "north": "tall", @@ -23491,7 +29564,7 @@ } }, { - "id": 11939, + "id": 13723, "properties": { "east": "low", "north": "tall", @@ -23502,7 +29575,7 @@ } }, { - "id": 11940, + "id": 13724, "properties": { "east": "low", "north": "tall", @@ -23513,7 +29586,7 @@ } }, { - "id": 11941, + "id": 13725, "properties": { "east": "low", "north": "tall", @@ -23524,7 +29597,7 @@ } }, { - "id": 11942, + "id": 13726, "properties": { "east": "low", "north": "tall", @@ -23535,7 +29608,7 @@ } }, { - "id": 11943, + "id": 13727, "properties": { "east": "low", "north": "tall", @@ -23546,7 +29619,7 @@ } }, { - "id": 11944, + "id": 13728, "properties": { "east": "low", "north": "tall", @@ -23557,7 +29630,7 @@ } }, { - "id": 11945, + "id": 13729, "properties": { "east": "low", "north": "tall", @@ -23568,7 +29641,7 @@ } }, { - "id": 11946, + "id": 13730, "properties": { "east": "low", "north": "tall", @@ -23579,7 +29652,7 @@ } }, { - "id": 11947, + "id": 13731, "properties": { "east": "low", "north": "tall", @@ -23590,7 +29663,7 @@ } }, { - "id": 11948, + "id": 13732, "properties": { "east": "low", "north": "tall", @@ -23601,7 +29674,7 @@ } }, { - "id": 11949, + "id": 13733, "properties": { "east": "low", "north": "tall", @@ -23612,7 +29685,7 @@ } }, { - "id": 11950, + "id": 13734, "properties": { "east": "low", "north": "tall", @@ -23623,7 +29696,7 @@ } }, { - "id": 11951, + "id": 13735, "properties": { "east": "low", "north": "tall", @@ -23634,7 +29707,7 @@ } }, { - "id": 11952, + "id": 13736, "properties": { "east": "low", "north": "tall", @@ -23645,7 +29718,7 @@ } }, { - "id": 11953, + "id": 13737, "properties": { "east": "low", "north": "tall", @@ -23656,7 +29729,7 @@ } }, { - "id": 11954, + "id": 13738, "properties": { "east": "low", "north": "tall", @@ -23667,7 +29740,7 @@ } }, { - "id": 11955, + "id": 13739, "properties": { "east": "low", "north": "tall", @@ -23678,7 +29751,7 @@ } }, { - "id": 11956, + "id": 13740, "properties": { "east": "low", "north": "tall", @@ -23689,7 +29762,7 @@ } }, { - "id": 11957, + "id": 13741, "properties": { "east": "low", "north": "tall", @@ -23700,7 +29773,7 @@ } }, { - "id": 11958, + "id": 13742, "properties": { "east": "low", "north": "tall", @@ -23711,7 +29784,7 @@ } }, { - "id": 11959, + "id": 13743, "properties": { "east": "low", "north": "tall", @@ -23722,7 +29795,7 @@ } }, { - "id": 11960, + "id": 13744, "properties": { "east": "low", "north": "tall", @@ -23733,7 +29806,7 @@ } }, { - "id": 11961, + "id": 13745, "properties": { "east": "low", "north": "tall", @@ -23744,7 +29817,7 @@ } }, { - "id": 11962, + "id": 13746, "properties": { "east": "low", "north": "tall", @@ -23755,7 +29828,7 @@ } }, { - "id": 11963, + "id": 13747, "properties": { "east": "low", "north": "tall", @@ -23766,7 +29839,7 @@ } }, { - "id": 11964, + "id": 13748, "properties": { "east": "tall", "north": "none", @@ -23777,7 +29850,7 @@ } }, { - "id": 11965, + "id": 13749, "properties": { "east": "tall", "north": "none", @@ -23788,7 +29861,7 @@ } }, { - "id": 11966, + "id": 13750, "properties": { "east": "tall", "north": "none", @@ -23799,7 +29872,7 @@ } }, { - "id": 11967, + "id": 13751, "properties": { "east": "tall", "north": "none", @@ -23810,7 +29883,7 @@ } }, { - "id": 11968, + "id": 13752, "properties": { "east": "tall", "north": "none", @@ -23821,7 +29894,7 @@ } }, { - "id": 11969, + "id": 13753, "properties": { "east": "tall", "north": "none", @@ -23832,7 +29905,7 @@ } }, { - "id": 11970, + "id": 13754, "properties": { "east": "tall", "north": "none", @@ -23843,7 +29916,7 @@ } }, { - "id": 11971, + "id": 13755, "properties": { "east": "tall", "north": "none", @@ -23854,7 +29927,7 @@ } }, { - "id": 11972, + "id": 13756, "properties": { "east": "tall", "north": "none", @@ -23865,7 +29938,7 @@ } }, { - "id": 11973, + "id": 13757, "properties": { "east": "tall", "north": "none", @@ -23876,7 +29949,7 @@ } }, { - "id": 11974, + "id": 13758, "properties": { "east": "tall", "north": "none", @@ -23887,7 +29960,7 @@ } }, { - "id": 11975, + "id": 13759, "properties": { "east": "tall", "north": "none", @@ -23898,7 +29971,7 @@ } }, { - "id": 11976, + "id": 13760, "properties": { "east": "tall", "north": "none", @@ -23909,7 +29982,7 @@ } }, { - "id": 11977, + "id": 13761, "properties": { "east": "tall", "north": "none", @@ -23920,7 +29993,7 @@ } }, { - "id": 11978, + "id": 13762, "properties": { "east": "tall", "north": "none", @@ -23931,7 +30004,7 @@ } }, { - "id": 11979, + "id": 13763, "properties": { "east": "tall", "north": "none", @@ -23942,7 +30015,7 @@ } }, { - "id": 11980, + "id": 13764, "properties": { "east": "tall", "north": "none", @@ -23953,7 +30026,7 @@ } }, { - "id": 11981, + "id": 13765, "properties": { "east": "tall", "north": "none", @@ -23964,7 +30037,7 @@ } }, { - "id": 11982, + "id": 13766, "properties": { "east": "tall", "north": "none", @@ -23975,7 +30048,7 @@ } }, { - "id": 11983, + "id": 13767, "properties": { "east": "tall", "north": "none", @@ -23986,7 +30059,7 @@ } }, { - "id": 11984, + "id": 13768, "properties": { "east": "tall", "north": "none", @@ -23997,7 +30070,7 @@ } }, { - "id": 11985, + "id": 13769, "properties": { "east": "tall", "north": "none", @@ -24008,7 +30081,7 @@ } }, { - "id": 11986, + "id": 13770, "properties": { "east": "tall", "north": "none", @@ -24019,7 +30092,7 @@ } }, { - "id": 11987, + "id": 13771, "properties": { "east": "tall", "north": "none", @@ -24030,7 +30103,7 @@ } }, { - "id": 11988, + "id": 13772, "properties": { "east": "tall", "north": "none", @@ -24041,7 +30114,7 @@ } }, { - "id": 11989, + "id": 13773, "properties": { "east": "tall", "north": "none", @@ -24052,7 +30125,7 @@ } }, { - "id": 11990, + "id": 13774, "properties": { "east": "tall", "north": "none", @@ -24063,7 +30136,7 @@ } }, { - "id": 11991, + "id": 13775, "properties": { "east": "tall", "north": "none", @@ -24074,7 +30147,7 @@ } }, { - "id": 11992, + "id": 13776, "properties": { "east": "tall", "north": "none", @@ -24085,7 +30158,7 @@ } }, { - "id": 11993, + "id": 13777, "properties": { "east": "tall", "north": "none", @@ -24096,7 +30169,7 @@ } }, { - "id": 11994, + "id": 13778, "properties": { "east": "tall", "north": "none", @@ -24107,7 +30180,7 @@ } }, { - "id": 11995, + "id": 13779, "properties": { "east": "tall", "north": "none", @@ -24118,7 +30191,7 @@ } }, { - "id": 11996, + "id": 13780, "properties": { "east": "tall", "north": "none", @@ -24129,7 +30202,7 @@ } }, { - "id": 11997, + "id": 13781, "properties": { "east": "tall", "north": "none", @@ -24140,7 +30213,7 @@ } }, { - "id": 11998, + "id": 13782, "properties": { "east": "tall", "north": "none", @@ -24151,7 +30224,7 @@ } }, { - "id": 11999, + "id": 13783, "properties": { "east": "tall", "north": "none", @@ -24162,7 +30235,7 @@ } }, { - "id": 12000, + "id": 13784, "properties": { "east": "tall", "north": "low", @@ -24173,7 +30246,7 @@ } }, { - "id": 12001, + "id": 13785, "properties": { "east": "tall", "north": "low", @@ -24184,7 +30257,7 @@ } }, { - "id": 12002, + "id": 13786, "properties": { "east": "tall", "north": "low", @@ -24195,7 +30268,7 @@ } }, { - "id": 12003, + "id": 13787, "properties": { "east": "tall", "north": "low", @@ -24206,7 +30279,7 @@ } }, { - "id": 12004, + "id": 13788, "properties": { "east": "tall", "north": "low", @@ -24217,7 +30290,7 @@ } }, { - "id": 12005, + "id": 13789, "properties": { "east": "tall", "north": "low", @@ -24228,7 +30301,7 @@ } }, { - "id": 12006, + "id": 13790, "properties": { "east": "tall", "north": "low", @@ -24239,7 +30312,7 @@ } }, { - "id": 12007, + "id": 13791, "properties": { "east": "tall", "north": "low", @@ -24250,7 +30323,7 @@ } }, { - "id": 12008, + "id": 13792, "properties": { "east": "tall", "north": "low", @@ -24261,7 +30334,7 @@ } }, { - "id": 12009, + "id": 13793, "properties": { "east": "tall", "north": "low", @@ -24272,7 +30345,7 @@ } }, { - "id": 12010, + "id": 13794, "properties": { "east": "tall", "north": "low", @@ -24283,7 +30356,7 @@ } }, { - "id": 12011, + "id": 13795, "properties": { "east": "tall", "north": "low", @@ -24294,7 +30367,7 @@ } }, { - "id": 12012, + "id": 13796, "properties": { "east": "tall", "north": "low", @@ -24305,7 +30378,7 @@ } }, { - "id": 12013, + "id": 13797, "properties": { "east": "tall", "north": "low", @@ -24316,7 +30389,7 @@ } }, { - "id": 12014, + "id": 13798, "properties": { "east": "tall", "north": "low", @@ -24327,7 +30400,7 @@ } }, { - "id": 12015, + "id": 13799, "properties": { "east": "tall", "north": "low", @@ -24338,7 +30411,7 @@ } }, { - "id": 12016, + "id": 13800, "properties": { "east": "tall", "north": "low", @@ -24349,7 +30422,7 @@ } }, { - "id": 12017, + "id": 13801, "properties": { "east": "tall", "north": "low", @@ -24360,7 +30433,7 @@ } }, { - "id": 12018, + "id": 13802, "properties": { "east": "tall", "north": "low", @@ -24371,7 +30444,7 @@ } }, { - "id": 12019, + "id": 13803, "properties": { "east": "tall", "north": "low", @@ -24382,7 +30455,7 @@ } }, { - "id": 12020, + "id": 13804, "properties": { "east": "tall", "north": "low", @@ -24393,7 +30466,7 @@ } }, { - "id": 12021, + "id": 13805, "properties": { "east": "tall", "north": "low", @@ -24404,7 +30477,7 @@ } }, { - "id": 12022, + "id": 13806, "properties": { "east": "tall", "north": "low", @@ -24415,7 +30488,7 @@ } }, { - "id": 12023, + "id": 13807, "properties": { "east": "tall", "north": "low", @@ -24426,7 +30499,7 @@ } }, { - "id": 12024, + "id": 13808, "properties": { "east": "tall", "north": "low", @@ -24437,7 +30510,7 @@ } }, { - "id": 12025, + "id": 13809, "properties": { "east": "tall", "north": "low", @@ -24448,7 +30521,7 @@ } }, { - "id": 12026, + "id": 13810, "properties": { "east": "tall", "north": "low", @@ -24459,7 +30532,7 @@ } }, { - "id": 12027, + "id": 13811, "properties": { "east": "tall", "north": "low", @@ -24470,7 +30543,7 @@ } }, { - "id": 12028, + "id": 13812, "properties": { "east": "tall", "north": "low", @@ -24481,7 +30554,7 @@ } }, { - "id": 12029, + "id": 13813, "properties": { "east": "tall", "north": "low", @@ -24492,7 +30565,7 @@ } }, { - "id": 12030, + "id": 13814, "properties": { "east": "tall", "north": "low", @@ -24503,7 +30576,7 @@ } }, { - "id": 12031, + "id": 13815, "properties": { "east": "tall", "north": "low", @@ -24514,7 +30587,7 @@ } }, { - "id": 12032, + "id": 13816, "properties": { "east": "tall", "north": "low", @@ -24525,7 +30598,7 @@ } }, { - "id": 12033, + "id": 13817, "properties": { "east": "tall", "north": "low", @@ -24536,7 +30609,7 @@ } }, { - "id": 12034, + "id": 13818, "properties": { "east": "tall", "north": "low", @@ -24547,7 +30620,7 @@ } }, { - "id": 12035, + "id": 13819, "properties": { "east": "tall", "north": "low", @@ -24558,7 +30631,7 @@ } }, { - "id": 12036, + "id": 13820, "properties": { "east": "tall", "north": "tall", @@ -24569,7 +30642,7 @@ } }, { - "id": 12037, + "id": 13821, "properties": { "east": "tall", "north": "tall", @@ -24580,7 +30653,7 @@ } }, { - "id": 12038, + "id": 13822, "properties": { "east": "tall", "north": "tall", @@ -24591,7 +30664,7 @@ } }, { - "id": 12039, + "id": 13823, "properties": { "east": "tall", "north": "tall", @@ -24602,7 +30675,7 @@ } }, { - "id": 12040, + "id": 13824, "properties": { "east": "tall", "north": "tall", @@ -24613,7 +30686,7 @@ } }, { - "id": 12041, + "id": 13825, "properties": { "east": "tall", "north": "tall", @@ -24624,7 +30697,7 @@ } }, { - "id": 12042, + "id": 13826, "properties": { "east": "tall", "north": "tall", @@ -24635,7 +30708,7 @@ } }, { - "id": 12043, + "id": 13827, "properties": { "east": "tall", "north": "tall", @@ -24646,7 +30719,7 @@ } }, { - "id": 12044, + "id": 13828, "properties": { "east": "tall", "north": "tall", @@ -24657,7 +30730,7 @@ } }, { - "id": 12045, + "id": 13829, "properties": { "east": "tall", "north": "tall", @@ -24668,7 +30741,7 @@ } }, { - "id": 12046, + "id": 13830, "properties": { "east": "tall", "north": "tall", @@ -24679,7 +30752,7 @@ } }, { - "id": 12047, + "id": 13831, "properties": { "east": "tall", "north": "tall", @@ -24690,7 +30763,7 @@ } }, { - "id": 12048, + "id": 13832, "properties": { "east": "tall", "north": "tall", @@ -24701,7 +30774,7 @@ } }, { - "id": 12049, + "id": 13833, "properties": { "east": "tall", "north": "tall", @@ -24712,7 +30785,7 @@ } }, { - "id": 12050, + "id": 13834, "properties": { "east": "tall", "north": "tall", @@ -24723,7 +30796,7 @@ } }, { - "id": 12051, + "id": 13835, "properties": { "east": "tall", "north": "tall", @@ -24734,7 +30807,7 @@ } }, { - "id": 12052, + "id": 13836, "properties": { "east": "tall", "north": "tall", @@ -24745,7 +30818,7 @@ } }, { - "id": 12053, + "id": 13837, "properties": { "east": "tall", "north": "tall", @@ -24756,7 +30829,7 @@ } }, { - "id": 12054, + "id": 13838, "properties": { "east": "tall", "north": "tall", @@ -24767,7 +30840,7 @@ } }, { - "id": 12055, + "id": 13839, "properties": { "east": "tall", "north": "tall", @@ -24778,7 +30851,7 @@ } }, { - "id": 12056, + "id": 13840, "properties": { "east": "tall", "north": "tall", @@ -24789,7 +30862,7 @@ } }, { - "id": 12057, + "id": 13841, "properties": { "east": "tall", "north": "tall", @@ -24800,7 +30873,7 @@ } }, { - "id": 12058, + "id": 13842, "properties": { "east": "tall", "north": "tall", @@ -24811,7 +30884,7 @@ } }, { - "id": 12059, + "id": 13843, "properties": { "east": "tall", "north": "tall", @@ -24822,7 +30895,7 @@ } }, { - "id": 12060, + "id": 13844, "properties": { "east": "tall", "north": "tall", @@ -24833,7 +30906,7 @@ } }, { - "id": 12061, + "id": 13845, "properties": { "east": "tall", "north": "tall", @@ -24844,7 +30917,7 @@ } }, { - "id": 12062, + "id": 13846, "properties": { "east": "tall", "north": "tall", @@ -24855,7 +30928,7 @@ } }, { - "id": 12063, + "id": 13847, "properties": { "east": "tall", "north": "tall", @@ -24866,7 +30939,7 @@ } }, { - "id": 12064, + "id": 13848, "properties": { "east": "tall", "north": "tall", @@ -24877,7 +30950,7 @@ } }, { - "id": 12065, + "id": 13849, "properties": { "east": "tall", "north": "tall", @@ -24888,7 +30961,7 @@ } }, { - "id": 12066, + "id": 13850, "properties": { "east": "tall", "north": "tall", @@ -24899,7 +30972,7 @@ } }, { - "id": 12067, + "id": 13851, "properties": { "east": "tall", "north": "tall", @@ -24910,7 +30983,7 @@ } }, { - "id": 12068, + "id": 13852, "properties": { "east": "tall", "north": "tall", @@ -24921,7 +30994,7 @@ } }, { - "id": 12069, + "id": 13853, "properties": { "east": "tall", "north": "tall", @@ -24932,7 +31005,7 @@ } }, { - "id": 12070, + "id": 13854, "properties": { "east": "tall", "north": "tall", @@ -24943,7 +31016,7 @@ } }, { - "id": 12071, + "id": 13855, "properties": { "east": "tall", "north": "tall", @@ -24959,7 +31032,7 @@ "states": [ { "default": true, - "id": 1683 + "id": 2041 } ] }, @@ -24987,97 +31060,97 @@ "states": [ { "default": true, - "id": 8830, + "id": 10474, "properties": { "rotation": "0" } }, { - "id": 8831, + "id": 10475, "properties": { "rotation": "1" } }, { - "id": 8832, + "id": 10476, "properties": { "rotation": "2" } }, { - "id": 8833, + "id": 10477, "properties": { "rotation": "3" } }, { - "id": 8834, + "id": 10478, "properties": { "rotation": "4" } }, { - "id": 8835, + "id": 10479, "properties": { "rotation": "5" } }, { - "id": 8836, + "id": 10480, "properties": { "rotation": "6" } }, { - "id": 8837, + "id": 10481, "properties": { "rotation": "7" } }, { - "id": 8838, + "id": 10482, "properties": { "rotation": "8" } }, { - "id": 8839, + "id": 10483, "properties": { "rotation": "9" } }, { - "id": 8840, + "id": 10484, "properties": { "rotation": "10" } }, { - "id": 8841, + "id": 10485, "properties": { "rotation": "11" } }, { - "id": 8842, + "id": 10486, "properties": { "rotation": "12" } }, { - "id": 8843, + "id": 10487, "properties": { "rotation": "13" } }, { - "id": 8844, + "id": 10488, "properties": { "rotation": "14" } }, { - "id": 8845, + "id": 10489, "properties": { "rotation": "15" } @@ -25103,7 +31176,7 @@ }, "states": [ { - "id": 1471, + "id": 1829, "properties": { "facing": "north", "occupied": "true", @@ -25111,7 +31184,7 @@ } }, { - "id": 1472, + "id": 1830, "properties": { "facing": "north", "occupied": "true", @@ -25119,7 +31192,7 @@ } }, { - "id": 1473, + "id": 1831, "properties": { "facing": "north", "occupied": "false", @@ -25128,7 +31201,7 @@ }, { "default": true, - "id": 1474, + "id": 1832, "properties": { "facing": "north", "occupied": "false", @@ -25136,7 +31209,7 @@ } }, { - "id": 1475, + "id": 1833, "properties": { "facing": "south", "occupied": "true", @@ -25144,7 +31217,7 @@ } }, { - "id": 1476, + "id": 1834, "properties": { "facing": "south", "occupied": "true", @@ -25152,7 +31225,7 @@ } }, { - "id": 1477, + "id": 1835, "properties": { "facing": "south", "occupied": "false", @@ -25160,7 +31233,7 @@ } }, { - "id": 1478, + "id": 1836, "properties": { "facing": "south", "occupied": "false", @@ -25168,7 +31241,7 @@ } }, { - "id": 1479, + "id": 1837, "properties": { "facing": "west", "occupied": "true", @@ -25176,7 +31249,7 @@ } }, { - "id": 1480, + "id": 1838, "properties": { "facing": "west", "occupied": "true", @@ -25184,7 +31257,7 @@ } }, { - "id": 1481, + "id": 1839, "properties": { "facing": "west", "occupied": "false", @@ -25192,7 +31265,7 @@ } }, { - "id": 1482, + "id": 1840, "properties": { "facing": "west", "occupied": "false", @@ -25200,7 +31273,7 @@ } }, { - "id": 1483, + "id": 1841, "properties": { "facing": "east", "occupied": "true", @@ -25208,7 +31281,7 @@ } }, { - "id": 1484, + "id": 1842, "properties": { "facing": "east", "occupied": "true", @@ -25216,7 +31289,7 @@ } }, { - "id": 1485, + "id": 1843, "properties": { "facing": "east", "occupied": "false", @@ -25224,7 +31297,7 @@ } }, { - "id": 1486, + "id": 1844, "properties": { "facing": "east", "occupied": "false", @@ -25252,7 +31325,7 @@ }, "states": [ { - "id": 18521, + "id": 20305, "properties": { "candles": "1", "lit": "true", @@ -25260,7 +31333,7 @@ } }, { - "id": 18522, + "id": 20306, "properties": { "candles": "1", "lit": "true", @@ -25268,7 +31341,7 @@ } }, { - "id": 18523, + "id": 20307, "properties": { "candles": "1", "lit": "false", @@ -25277,7 +31350,7 @@ }, { "default": true, - "id": 18524, + "id": 20308, "properties": { "candles": "1", "lit": "false", @@ -25285,7 +31358,7 @@ } }, { - "id": 18525, + "id": 20309, "properties": { "candles": "2", "lit": "true", @@ -25293,7 +31366,7 @@ } }, { - "id": 18526, + "id": 20310, "properties": { "candles": "2", "lit": "true", @@ -25301,7 +31374,7 @@ } }, { - "id": 18527, + "id": 20311, "properties": { "candles": "2", "lit": "false", @@ -25309,7 +31382,7 @@ } }, { - "id": 18528, + "id": 20312, "properties": { "candles": "2", "lit": "false", @@ -25317,7 +31390,7 @@ } }, { - "id": 18529, + "id": 20313, "properties": { "candles": "3", "lit": "true", @@ -25325,7 +31398,7 @@ } }, { - "id": 18530, + "id": 20314, "properties": { "candles": "3", "lit": "true", @@ -25333,7 +31406,7 @@ } }, { - "id": 18531, + "id": 20315, "properties": { "candles": "3", "lit": "false", @@ -25341,7 +31414,7 @@ } }, { - "id": 18532, + "id": 20316, "properties": { "candles": "3", "lit": "false", @@ -25349,7 +31422,7 @@ } }, { - "id": 18533, + "id": 20317, "properties": { "candles": "4", "lit": "true", @@ -25357,7 +31430,7 @@ } }, { - "id": 18534, + "id": 20318, "properties": { "candles": "4", "lit": "true", @@ -25365,7 +31438,7 @@ } }, { - "id": 18535, + "id": 20319, "properties": { "candles": "4", "lit": "false", @@ -25373,7 +31446,7 @@ } }, { - "id": 18536, + "id": 20320, "properties": { "candles": "4", "lit": "false", @@ -25391,14 +31464,14 @@ }, "states": [ { - "id": 18611, + "id": 20395, "properties": { "lit": "true" } }, { "default": true, - "id": 18612, + "id": 20396, "properties": { "lit": "false" } @@ -25409,7 +31482,7 @@ "states": [ { "default": true, - "id": 8619 + "id": 10263 } ] }, @@ -25417,7 +31490,7 @@ "states": [ { "default": true, - "id": 10331 + "id": 12115 } ] }, @@ -25425,7 +31498,7 @@ "states": [ { "default": true, - "id": 10347 + "id": 12131 } ] }, @@ -25441,25 +31514,25 @@ "states": [ { "default": true, - "id": 10303, + "id": 12087, "properties": { "facing": "north" } }, { - "id": 10304, + "id": 12088, "properties": { "facing": "south" } }, { - "id": 10305, + "id": 12089, "properties": { "facing": "west" } }, { - "id": 10306, + "id": 12090, "properties": { "facing": "east" } @@ -25470,7 +31543,7 @@ "states": [ { "default": true, - "id": 1679 + "id": 2037 } ] }, @@ -25504,7 +31577,7 @@ "states": [ { "default": true, - "id": 4880, + "id": 6320, "properties": { "down": "true", "east": "true", @@ -25515,7 +31588,7 @@ } }, { - "id": 4881, + "id": 6321, "properties": { "down": "true", "east": "true", @@ -25526,7 +31599,7 @@ } }, { - "id": 4882, + "id": 6322, "properties": { "down": "true", "east": "true", @@ -25537,7 +31610,7 @@ } }, { - "id": 4883, + "id": 6323, "properties": { "down": "true", "east": "true", @@ -25548,7 +31621,7 @@ } }, { - "id": 4884, + "id": 6324, "properties": { "down": "true", "east": "true", @@ -25559,7 +31632,7 @@ } }, { - "id": 4885, + "id": 6325, "properties": { "down": "true", "east": "true", @@ -25570,7 +31643,7 @@ } }, { - "id": 4886, + "id": 6326, "properties": { "down": "true", "east": "true", @@ -25581,7 +31654,7 @@ } }, { - "id": 4887, + "id": 6327, "properties": { "down": "true", "east": "true", @@ -25592,7 +31665,7 @@ } }, { - "id": 4888, + "id": 6328, "properties": { "down": "true", "east": "true", @@ -25603,7 +31676,7 @@ } }, { - "id": 4889, + "id": 6329, "properties": { "down": "true", "east": "true", @@ -25614,7 +31687,7 @@ } }, { - "id": 4890, + "id": 6330, "properties": { "down": "true", "east": "true", @@ -25625,7 +31698,7 @@ } }, { - "id": 4891, + "id": 6331, "properties": { "down": "true", "east": "true", @@ -25636,7 +31709,7 @@ } }, { - "id": 4892, + "id": 6332, "properties": { "down": "true", "east": "true", @@ -25647,7 +31720,7 @@ } }, { - "id": 4893, + "id": 6333, "properties": { "down": "true", "east": "true", @@ -25658,7 +31731,7 @@ } }, { - "id": 4894, + "id": 6334, "properties": { "down": "true", "east": "true", @@ -25669,7 +31742,7 @@ } }, { - "id": 4895, + "id": 6335, "properties": { "down": "true", "east": "true", @@ -25680,7 +31753,7 @@ } }, { - "id": 4896, + "id": 6336, "properties": { "down": "true", "east": "false", @@ -25691,7 +31764,7 @@ } }, { - "id": 4897, + "id": 6337, "properties": { "down": "true", "east": "false", @@ -25702,7 +31775,7 @@ } }, { - "id": 4898, + "id": 6338, "properties": { "down": "true", "east": "false", @@ -25713,7 +31786,7 @@ } }, { - "id": 4899, + "id": 6339, "properties": { "down": "true", "east": "false", @@ -25724,7 +31797,7 @@ } }, { - "id": 4900, + "id": 6340, "properties": { "down": "true", "east": "false", @@ -25735,7 +31808,7 @@ } }, { - "id": 4901, + "id": 6341, "properties": { "down": "true", "east": "false", @@ -25746,7 +31819,7 @@ } }, { - "id": 4902, + "id": 6342, "properties": { "down": "true", "east": "false", @@ -25757,7 +31830,7 @@ } }, { - "id": 4903, + "id": 6343, "properties": { "down": "true", "east": "false", @@ -25768,7 +31841,7 @@ } }, { - "id": 4904, + "id": 6344, "properties": { "down": "true", "east": "false", @@ -25779,7 +31852,7 @@ } }, { - "id": 4905, + "id": 6345, "properties": { "down": "true", "east": "false", @@ -25790,7 +31863,7 @@ } }, { - "id": 4906, + "id": 6346, "properties": { "down": "true", "east": "false", @@ -25801,7 +31874,7 @@ } }, { - "id": 4907, + "id": 6347, "properties": { "down": "true", "east": "false", @@ -25812,7 +31885,7 @@ } }, { - "id": 4908, + "id": 6348, "properties": { "down": "true", "east": "false", @@ -25823,7 +31896,7 @@ } }, { - "id": 4909, + "id": 6349, "properties": { "down": "true", "east": "false", @@ -25834,7 +31907,7 @@ } }, { - "id": 4910, + "id": 6350, "properties": { "down": "true", "east": "false", @@ -25845,7 +31918,7 @@ } }, { - "id": 4911, + "id": 6351, "properties": { "down": "true", "east": "false", @@ -25856,7 +31929,7 @@ } }, { - "id": 4912, + "id": 6352, "properties": { "down": "false", "east": "true", @@ -25867,7 +31940,7 @@ } }, { - "id": 4913, + "id": 6353, "properties": { "down": "false", "east": "true", @@ -25878,7 +31951,7 @@ } }, { - "id": 4914, + "id": 6354, "properties": { "down": "false", "east": "true", @@ -25889,7 +31962,7 @@ } }, { - "id": 4915, + "id": 6355, "properties": { "down": "false", "east": "true", @@ -25900,7 +31973,7 @@ } }, { - "id": 4916, + "id": 6356, "properties": { "down": "false", "east": "true", @@ -25911,7 +31984,7 @@ } }, { - "id": 4917, + "id": 6357, "properties": { "down": "false", "east": "true", @@ -25922,7 +31995,7 @@ } }, { - "id": 4918, + "id": 6358, "properties": { "down": "false", "east": "true", @@ -25933,7 +32006,7 @@ } }, { - "id": 4919, + "id": 6359, "properties": { "down": "false", "east": "true", @@ -25944,7 +32017,7 @@ } }, { - "id": 4920, + "id": 6360, "properties": { "down": "false", "east": "true", @@ -25955,7 +32028,7 @@ } }, { - "id": 4921, + "id": 6361, "properties": { "down": "false", "east": "true", @@ -25966,7 +32039,7 @@ } }, { - "id": 4922, + "id": 6362, "properties": { "down": "false", "east": "true", @@ -25977,7 +32050,7 @@ } }, { - "id": 4923, + "id": 6363, "properties": { "down": "false", "east": "true", @@ -25988,7 +32061,7 @@ } }, { - "id": 4924, + "id": 6364, "properties": { "down": "false", "east": "true", @@ -25999,7 +32072,7 @@ } }, { - "id": 4925, + "id": 6365, "properties": { "down": "false", "east": "true", @@ -26010,7 +32083,7 @@ } }, { - "id": 4926, + "id": 6366, "properties": { "down": "false", "east": "true", @@ -26021,7 +32094,7 @@ } }, { - "id": 4927, + "id": 6367, "properties": { "down": "false", "east": "true", @@ -26032,7 +32105,7 @@ } }, { - "id": 4928, + "id": 6368, "properties": { "down": "false", "east": "false", @@ -26043,7 +32116,7 @@ } }, { - "id": 4929, + "id": 6369, "properties": { "down": "false", "east": "false", @@ -26054,7 +32127,7 @@ } }, { - "id": 4930, + "id": 6370, "properties": { "down": "false", "east": "false", @@ -26065,7 +32138,7 @@ } }, { - "id": 4931, + "id": 6371, "properties": { "down": "false", "east": "false", @@ -26076,7 +32149,7 @@ } }, { - "id": 4932, + "id": 6372, "properties": { "down": "false", "east": "false", @@ -26087,7 +32160,7 @@ } }, { - "id": 4933, + "id": 6373, "properties": { "down": "false", "east": "false", @@ -26098,7 +32171,7 @@ } }, { - "id": 4934, + "id": 6374, "properties": { "down": "false", "east": "false", @@ -26109,7 +32182,7 @@ } }, { - "id": 4935, + "id": 6375, "properties": { "down": "false", "east": "false", @@ -26120,7 +32193,7 @@ } }, { - "id": 4936, + "id": 6376, "properties": { "down": "false", "east": "false", @@ -26131,7 +32204,7 @@ } }, { - "id": 4937, + "id": 6377, "properties": { "down": "false", "east": "false", @@ -26142,7 +32215,7 @@ } }, { - "id": 4938, + "id": 6378, "properties": { "down": "false", "east": "false", @@ -26153,7 +32226,7 @@ } }, { - "id": 4939, + "id": 6379, "properties": { "down": "false", "east": "false", @@ -26164,7 +32237,7 @@ } }, { - "id": 4940, + "id": 6380, "properties": { "down": "false", "east": "false", @@ -26175,7 +32248,7 @@ } }, { - "id": 4941, + "id": 6381, "properties": { "down": "false", "east": "false", @@ -26186,7 +32259,7 @@ } }, { - "id": 4942, + "id": 6382, "properties": { "down": "false", "east": "false", @@ -26197,7 +32270,7 @@ } }, { - "id": 4943, + "id": 6383, "properties": { "down": "false", "east": "false", @@ -26222,38 +32295,38 @@ }, "states": [ { - "id": 10231, + "id": 12015, "properties": { "facing": "north" } }, { - "id": 10232, + "id": 12016, "properties": { "facing": "east" } }, { - "id": 10233, + "id": 12017, "properties": { "facing": "south" } }, { - "id": 10234, + "id": 12018, "properties": { "facing": "west" } }, { "default": true, - "id": 10235, + "id": 12019, "properties": { "facing": "up" } }, { - "id": 10236, + "id": 12020, "properties": { "facing": "down" } @@ -26264,7 +32337,7 @@ "states": [ { "default": true, - "id": 4416 + "id": 5792 } ] }, @@ -26293,7 +32366,7 @@ }, "states": [ { - "id": 7876, + "id": 9360, "properties": { "east": "true", "north": "true", @@ -26303,7 +32376,7 @@ } }, { - "id": 7877, + "id": 9361, "properties": { "east": "true", "north": "true", @@ -26313,7 +32386,7 @@ } }, { - "id": 7878, + "id": 9362, "properties": { "east": "true", "north": "true", @@ -26323,7 +32396,7 @@ } }, { - "id": 7879, + "id": 9363, "properties": { "east": "true", "north": "true", @@ -26333,7 +32406,7 @@ } }, { - "id": 7880, + "id": 9364, "properties": { "east": "true", "north": "true", @@ -26343,7 +32416,7 @@ } }, { - "id": 7881, + "id": 9365, "properties": { "east": "true", "north": "true", @@ -26353,7 +32426,7 @@ } }, { - "id": 7882, + "id": 9366, "properties": { "east": "true", "north": "true", @@ -26363,7 +32436,7 @@ } }, { - "id": 7883, + "id": 9367, "properties": { "east": "true", "north": "true", @@ -26373,7 +32446,7 @@ } }, { - "id": 7884, + "id": 9368, "properties": { "east": "true", "north": "false", @@ -26383,7 +32456,7 @@ } }, { - "id": 7885, + "id": 9369, "properties": { "east": "true", "north": "false", @@ -26393,7 +32466,7 @@ } }, { - "id": 7886, + "id": 9370, "properties": { "east": "true", "north": "false", @@ -26403,7 +32476,7 @@ } }, { - "id": 7887, + "id": 9371, "properties": { "east": "true", "north": "false", @@ -26413,7 +32486,7 @@ } }, { - "id": 7888, + "id": 9372, "properties": { "east": "true", "north": "false", @@ -26423,7 +32496,7 @@ } }, { - "id": 7889, + "id": 9373, "properties": { "east": "true", "north": "false", @@ -26433,7 +32506,7 @@ } }, { - "id": 7890, + "id": 9374, "properties": { "east": "true", "north": "false", @@ -26443,7 +32516,7 @@ } }, { - "id": 7891, + "id": 9375, "properties": { "east": "true", "north": "false", @@ -26453,7 +32526,7 @@ } }, { - "id": 7892, + "id": 9376, "properties": { "east": "false", "north": "true", @@ -26463,7 +32536,7 @@ } }, { - "id": 7893, + "id": 9377, "properties": { "east": "false", "north": "true", @@ -26473,7 +32546,7 @@ } }, { - "id": 7894, + "id": 9378, "properties": { "east": "false", "north": "true", @@ -26483,7 +32556,7 @@ } }, { - "id": 7895, + "id": 9379, "properties": { "east": "false", "north": "true", @@ -26493,7 +32566,7 @@ } }, { - "id": 7896, + "id": 9380, "properties": { "east": "false", "north": "true", @@ -26503,7 +32576,7 @@ } }, { - "id": 7897, + "id": 9381, "properties": { "east": "false", "north": "true", @@ -26513,7 +32586,7 @@ } }, { - "id": 7898, + "id": 9382, "properties": { "east": "false", "north": "true", @@ -26523,7 +32596,7 @@ } }, { - "id": 7899, + "id": 9383, "properties": { "east": "false", "north": "true", @@ -26533,7 +32606,7 @@ } }, { - "id": 7900, + "id": 9384, "properties": { "east": "false", "north": "false", @@ -26543,7 +32616,7 @@ } }, { - "id": 7901, + "id": 9385, "properties": { "east": "false", "north": "false", @@ -26553,7 +32626,7 @@ } }, { - "id": 7902, + "id": 9386, "properties": { "east": "false", "north": "false", @@ -26563,7 +32636,7 @@ } }, { - "id": 7903, + "id": 9387, "properties": { "east": "false", "north": "false", @@ -26573,7 +32646,7 @@ } }, { - "id": 7904, + "id": 9388, "properties": { "east": "false", "north": "false", @@ -26583,7 +32656,7 @@ } }, { - "id": 7905, + "id": 9389, "properties": { "east": "false", "north": "false", @@ -26593,7 +32666,7 @@ } }, { - "id": 7906, + "id": 9390, "properties": { "east": "false", "north": "false", @@ -26604,7 +32677,7 @@ }, { "default": true, - "id": 7907, + "id": 9391, "properties": { "east": "false", "north": "false", @@ -26619,7 +32692,7 @@ "states": [ { "default": true, - "id": 7488 + "id": 8972 } ] }, @@ -26635,25 +32708,25 @@ "states": [ { "default": true, - "id": 8942, + "id": 10586, "properties": { "facing": "north" } }, { - "id": 8943, + "id": 10587, "properties": { "facing": "south" } }, { - "id": 8944, + "id": 10588, "properties": { "facing": "west" } }, { - "id": 8945, + "id": 10589, "properties": { "facing": "east" } @@ -26664,7 +32737,7 @@ "states": [ { "default": true, - "id": 1650 + "id": 2008 } ] }, @@ -26678,13 +32751,13 @@ "states": [ { "default": true, - "id": 10548, + "id": 12332, "properties": { "drag": "true" } }, { - "id": 10549, + "id": 12333, "properties": { "drag": "false" } @@ -26701,13 +32774,13 @@ "states": [ { "default": true, - "id": 10415, + "id": 12199, "properties": { "waterlogged": "true" } }, { - "id": 10416, + "id": 12200, "properties": { "waterlogged": "false" } @@ -26718,7 +32791,7 @@ "states": [ { "default": true, - "id": 10398 + "id": 12182 } ] }, @@ -26732,13 +32805,13 @@ "states": [ { "default": true, - "id": 10435, + "id": 12219, "properties": { "waterlogged": "true" } }, { - "id": 10436, + "id": 12220, "properties": { "waterlogged": "false" } @@ -26761,56 +32834,56 @@ "states": [ { "default": true, - "id": 10497, + "id": 12281, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 10498, + "id": 12282, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 10499, + "id": 12283, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 10500, + "id": 12284, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 10501, + "id": 12285, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 10502, + "id": 12286, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 10503, + "id": 12287, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 10504, + "id": 12288, "properties": { "facing": "east", "waterlogged": "false" @@ -26822,7 +32895,7 @@ "states": [ { "default": true, - "id": 18620 + "id": 20404 } ] }, @@ -26850,97 +32923,97 @@ "states": [ { "default": true, - "id": 4240, + "id": 5616, "properties": { "age": "0" } }, { - "id": 4241, + "id": 5617, "properties": { "age": "1" } }, { - "id": 4242, + "id": 5618, "properties": { "age": "2" } }, { - "id": 4243, + "id": 5619, "properties": { "age": "3" } }, { - "id": 4244, + "id": 5620, "properties": { "age": "4" } }, { - "id": 4245, + "id": 5621, "properties": { "age": "5" } }, { - "id": 4246, + "id": 5622, "properties": { "age": "6" } }, { - "id": 4247, + "id": 5623, "properties": { "age": "7" } }, { - "id": 4248, + "id": 5624, "properties": { "age": "8" } }, { - "id": 4249, + "id": 5625, "properties": { "age": "9" } }, { - "id": 4250, + "id": 5626, "properties": { "age": "10" } }, { - "id": 4251, + "id": 5627, "properties": { "age": "11" } }, { - "id": 4252, + "id": 5628, "properties": { "age": "12" } }, { - "id": 4253, + "id": 5629, "properties": { "age": "13" } }, { - "id": 4254, + "id": 5630, "properties": { "age": "14" } }, { - "id": 4255, + "id": 5631, "properties": { "age": "15" } @@ -26962,43 +33035,43 @@ "states": [ { "default": true, - "id": 4333, + "id": 5709, "properties": { "bites": "0" } }, { - "id": 4334, + "id": 5710, "properties": { "bites": "1" } }, { - "id": 4335, + "id": 5711, "properties": { "bites": "2" } }, { - "id": 4336, + "id": 5712, "properties": { "bites": "3" } }, { - "id": 4337, + "id": 5713, "properties": { "bites": "4" } }, { - "id": 4338, + "id": 5714, "properties": { "bites": "5" } }, { - "id": 4339, + "id": 5715, "properties": { "bites": "6" } @@ -27009,7 +33082,7 @@ "states": [ { "default": true, - "id": 18670 + "id": 20454 } ] }, @@ -27036,7 +33109,7 @@ }, "states": [ { - "id": 16099, + "id": 17883, "properties": { "facing": "north", "lit": "true", @@ -27045,7 +33118,7 @@ } }, { - "id": 16100, + "id": 17884, "properties": { "facing": "north", "lit": "true", @@ -27054,7 +33127,7 @@ } }, { - "id": 16101, + "id": 17885, "properties": { "facing": "north", "lit": "true", @@ -27064,7 +33137,7 @@ }, { "default": true, - "id": 16102, + "id": 17886, "properties": { "facing": "north", "lit": "true", @@ -27073,7 +33146,7 @@ } }, { - "id": 16103, + "id": 17887, "properties": { "facing": "north", "lit": "false", @@ -27082,7 +33155,7 @@ } }, { - "id": 16104, + "id": 17888, "properties": { "facing": "north", "lit": "false", @@ -27091,7 +33164,7 @@ } }, { - "id": 16105, + "id": 17889, "properties": { "facing": "north", "lit": "false", @@ -27100,7 +33173,7 @@ } }, { - "id": 16106, + "id": 17890, "properties": { "facing": "north", "lit": "false", @@ -27109,7 +33182,7 @@ } }, { - "id": 16107, + "id": 17891, "properties": { "facing": "south", "lit": "true", @@ -27118,7 +33191,7 @@ } }, { - "id": 16108, + "id": 17892, "properties": { "facing": "south", "lit": "true", @@ -27127,7 +33200,7 @@ } }, { - "id": 16109, + "id": 17893, "properties": { "facing": "south", "lit": "true", @@ -27136,7 +33209,7 @@ } }, { - "id": 16110, + "id": 17894, "properties": { "facing": "south", "lit": "true", @@ -27145,7 +33218,7 @@ } }, { - "id": 16111, + "id": 17895, "properties": { "facing": "south", "lit": "false", @@ -27154,7 +33227,7 @@ } }, { - "id": 16112, + "id": 17896, "properties": { "facing": "south", "lit": "false", @@ -27163,7 +33236,7 @@ } }, { - "id": 16113, + "id": 17897, "properties": { "facing": "south", "lit": "false", @@ -27172,7 +33245,7 @@ } }, { - "id": 16114, + "id": 17898, "properties": { "facing": "south", "lit": "false", @@ -27181,7 +33254,7 @@ } }, { - "id": 16115, + "id": 17899, "properties": { "facing": "west", "lit": "true", @@ -27190,7 +33263,7 @@ } }, { - "id": 16116, + "id": 17900, "properties": { "facing": "west", "lit": "true", @@ -27199,7 +33272,7 @@ } }, { - "id": 16117, + "id": 17901, "properties": { "facing": "west", "lit": "true", @@ -27208,7 +33281,7 @@ } }, { - "id": 16118, + "id": 17902, "properties": { "facing": "west", "lit": "true", @@ -27217,7 +33290,7 @@ } }, { - "id": 16119, + "id": 17903, "properties": { "facing": "west", "lit": "false", @@ -27226,7 +33299,7 @@ } }, { - "id": 16120, + "id": 17904, "properties": { "facing": "west", "lit": "false", @@ -27235,7 +33308,7 @@ } }, { - "id": 16121, + "id": 17905, "properties": { "facing": "west", "lit": "false", @@ -27244,7 +33317,7 @@ } }, { - "id": 16122, + "id": 17906, "properties": { "facing": "west", "lit": "false", @@ -27253,7 +33326,7 @@ } }, { - "id": 16123, + "id": 17907, "properties": { "facing": "east", "lit": "true", @@ -27262,7 +33335,7 @@ } }, { - "id": 16124, + "id": 17908, "properties": { "facing": "east", "lit": "true", @@ -27271,7 +33344,7 @@ } }, { - "id": 16125, + "id": 17909, "properties": { "facing": "east", "lit": "true", @@ -27280,7 +33353,7 @@ } }, { - "id": 16126, + "id": 17910, "properties": { "facing": "east", "lit": "true", @@ -27289,7 +33362,7 @@ } }, { - "id": 16127, + "id": 17911, "properties": { "facing": "east", "lit": "false", @@ -27298,7 +33371,7 @@ } }, { - "id": 16128, + "id": 17912, "properties": { "facing": "east", "lit": "false", @@ -27307,7 +33380,7 @@ } }, { - "id": 16129, + "id": 17913, "properties": { "facing": "east", "lit": "false", @@ -27316,7 +33389,7 @@ } }, { - "id": 16130, + "id": 17914, "properties": { "facing": "east", "lit": "false", @@ -27345,7 +33418,7 @@ }, "states": [ { - "id": 18313, + "id": 20097, "properties": { "candles": "1", "lit": "true", @@ -27353,7 +33426,7 @@ } }, { - "id": 18314, + "id": 20098, "properties": { "candles": "1", "lit": "true", @@ -27361,7 +33434,7 @@ } }, { - "id": 18315, + "id": 20099, "properties": { "candles": "1", "lit": "false", @@ -27370,7 +33443,7 @@ }, { "default": true, - "id": 18316, + "id": 20100, "properties": { "candles": "1", "lit": "false", @@ -27378,7 +33451,7 @@ } }, { - "id": 18317, + "id": 20101, "properties": { "candles": "2", "lit": "true", @@ -27386,7 +33459,7 @@ } }, { - "id": 18318, + "id": 20102, "properties": { "candles": "2", "lit": "true", @@ -27394,7 +33467,7 @@ } }, { - "id": 18319, + "id": 20103, "properties": { "candles": "2", "lit": "false", @@ -27402,7 +33475,7 @@ } }, { - "id": 18320, + "id": 20104, "properties": { "candles": "2", "lit": "false", @@ -27410,7 +33483,7 @@ } }, { - "id": 18321, + "id": 20105, "properties": { "candles": "3", "lit": "true", @@ -27418,7 +33491,7 @@ } }, { - "id": 18322, + "id": 20106, "properties": { "candles": "3", "lit": "true", @@ -27426,7 +33499,7 @@ } }, { - "id": 18323, + "id": 20107, "properties": { "candles": "3", "lit": "false", @@ -27434,7 +33507,7 @@ } }, { - "id": 18324, + "id": 20108, "properties": { "candles": "3", "lit": "false", @@ -27442,7 +33515,7 @@ } }, { - "id": 18325, + "id": 20109, "properties": { "candles": "4", "lit": "true", @@ -27450,7 +33523,7 @@ } }, { - "id": 18326, + "id": 20110, "properties": { "candles": "4", "lit": "true", @@ -27458,7 +33531,7 @@ } }, { - "id": 18327, + "id": 20111, "properties": { "candles": "4", "lit": "false", @@ -27466,7 +33539,7 @@ } }, { - "id": 18328, + "id": 20112, "properties": { "candles": "4", "lit": "false", @@ -27484,14 +33557,14 @@ }, "states": [ { - "id": 18585, + "id": 20369, "properties": { "lit": "true" } }, { "default": true, - "id": 18586, + "id": 20370, "properties": { "lit": "false" } @@ -27514,49 +33587,49 @@ "states": [ { "default": true, - "id": 6923, + "id": 8363, "properties": { "age": "0" } }, { - "id": 6924, + "id": 8364, "properties": { "age": "1" } }, { - "id": 6925, + "id": 8365, "properties": { "age": "2" } }, { - "id": 6926, + "id": 8366, "properties": { "age": "3" } }, { - "id": 6927, + "id": 8367, "properties": { "age": "4" } }, { - "id": 6928, + "id": 8368, "properties": { "age": "5" } }, { - "id": 6929, + "id": 8369, "properties": { "age": "6" } }, { - "id": 6930, + "id": 8370, "properties": { "age": "7" } @@ -27567,7 +33640,7 @@ "states": [ { "default": true, - "id": 16024 + "id": 17808 } ] }, @@ -27583,25 +33656,25 @@ "states": [ { "default": true, - "id": 4325, + "id": 5701, "properties": { "facing": "north" } }, { - "id": 4326, + "id": 5702, "properties": { "facing": "south" } }, { - "id": 4327, + "id": 5703, "properties": { "facing": "west" } }, { - "id": 4328, + "id": 5704, "properties": { "facing": "east" } @@ -27612,7 +33685,7 @@ "states": [ { "default": true, - "id": 5728 + "id": 7168 } ] }, @@ -27620,7 +33693,7 @@ "states": [ { "default": true, - "id": 10547 + "id": 12331 } ] }, @@ -27661,7 +33734,7 @@ }, "states": [ { - "id": 19659, + "id": 21443, "properties": { "age": "0", "berries": "true" @@ -27669,357 +33742,357 @@ }, { "default": true, - "id": 19660, + "id": 21444, "properties": { "age": "0", "berries": "false" } }, { - "id": 19661, + "id": 21445, "properties": { "age": "1", "berries": "true" } }, { - "id": 19662, + "id": 21446, "properties": { "age": "1", "berries": "false" } }, { - "id": 19663, + "id": 21447, "properties": { "age": "2", "berries": "true" } }, { - "id": 19664, + "id": 21448, "properties": { "age": "2", "berries": "false" } }, { - "id": 19665, + "id": 21449, "properties": { "age": "3", "berries": "true" } }, { - "id": 19666, + "id": 21450, "properties": { "age": "3", "berries": "false" } }, { - "id": 19667, + "id": 21451, "properties": { "age": "4", "berries": "true" } }, { - "id": 19668, + "id": 21452, "properties": { "age": "4", "berries": "false" } }, { - "id": 19669, + "id": 21453, "properties": { "age": "5", "berries": "true" } }, { - "id": 19670, + "id": 21454, "properties": { "age": "5", "berries": "false" } }, { - "id": 19671, + "id": 21455, "properties": { "age": "6", "berries": "true" } }, { - "id": 19672, + "id": 21456, "properties": { "age": "6", "berries": "false" } }, { - "id": 19673, + "id": 21457, "properties": { "age": "7", "berries": "true" } }, { - "id": 19674, + "id": 21458, "properties": { "age": "7", "berries": "false" } }, { - "id": 19675, + "id": 21459, "properties": { "age": "8", "berries": "true" } }, { - "id": 19676, + "id": 21460, "properties": { "age": "8", "berries": "false" } }, { - "id": 19677, + "id": 21461, "properties": { "age": "9", "berries": "true" } }, { - "id": 19678, + "id": 21462, "properties": { "age": "9", "berries": "false" } }, { - "id": 19679, + "id": 21463, "properties": { "age": "10", "berries": "true" } }, { - "id": 19680, + "id": 21464, "properties": { "age": "10", "berries": "false" } }, { - "id": 19681, + "id": 21465, "properties": { "age": "11", "berries": "true" } }, { - "id": 19682, + "id": 21466, "properties": { "age": "11", "berries": "false" } }, { - "id": 19683, + "id": 21467, "properties": { "age": "12", "berries": "true" } }, { - "id": 19684, + "id": 21468, "properties": { "age": "12", "berries": "false" } }, { - "id": 19685, + "id": 21469, "properties": { "age": "13", "berries": "true" } }, { - "id": 19686, + "id": 21470, "properties": { "age": "13", "berries": "false" } }, { - "id": 19687, + "id": 21471, "properties": { "age": "14", "berries": "true" } }, { - "id": 19688, + "id": 21472, "properties": { "age": "14", "berries": "false" } }, { - "id": 19689, + "id": 21473, "properties": { "age": "15", "berries": "true" } }, { - "id": 19690, + "id": 21474, "properties": { "age": "15", "berries": "false" } }, { - "id": 19691, + "id": 21475, "properties": { "age": "16", "berries": "true" } }, { - "id": 19692, + "id": 21476, "properties": { "age": "16", "berries": "false" } }, { - "id": 19693, + "id": 21477, "properties": { "age": "17", "berries": "true" } }, { - "id": 19694, + "id": 21478, "properties": { "age": "17", "berries": "false" } }, { - "id": 19695, + "id": 21479, "properties": { "age": "18", "berries": "true" } }, { - "id": 19696, + "id": 21480, "properties": { "age": "18", "berries": "false" } }, { - "id": 19697, + "id": 21481, "properties": { "age": "19", "berries": "true" } }, { - "id": 19698, + "id": 21482, "properties": { "age": "19", "berries": "false" } }, { - "id": 19699, + "id": 21483, "properties": { "age": "20", "berries": "true" } }, { - "id": 19700, + "id": 21484, "properties": { "age": "20", "berries": "false" } }, { - "id": 19701, + "id": 21485, "properties": { "age": "21", "berries": "true" } }, { - "id": 19702, + "id": 21486, "properties": { "age": "21", "berries": "false" } }, { - "id": 19703, + "id": 21487, "properties": { "age": "22", "berries": "true" } }, { - "id": 19704, + "id": 21488, "properties": { "age": "22", "berries": "false" } }, { - "id": 19705, + "id": 21489, "properties": { "age": "23", "berries": "true" } }, { - "id": 19706, + "id": 21490, "properties": { "age": "23", "berries": "false" } }, { - "id": 19707, + "id": 21491, "properties": { "age": "24", "berries": "true" } }, { - "id": 19708, + "id": 21492, "properties": { "age": "24", "berries": "false" } }, { - "id": 19709, + "id": 21493, "properties": { "age": "25", "berries": "true" } }, { - "id": 19710, + "id": 21494, "properties": { "age": "25", "berries": "false" @@ -28036,14 +34109,14 @@ }, "states": [ { - "id": 19711, + "id": 21495, "properties": { "berries": "true" } }, { "default": true, - "id": 19712, + "id": 21496, "properties": { "berries": "false" } @@ -28064,21 +34137,21 @@ }, "states": [ { - "id": 5104, + "id": 6544, "properties": { "axis": "x", "waterlogged": "true" } }, { - "id": 5105, + "id": 6545, "properties": { "axis": "x", "waterlogged": "false" } }, { - "id": 5106, + "id": 6546, "properties": { "axis": "y", "waterlogged": "true" @@ -28086,21 +34159,21 @@ }, { "default": true, - "id": 5107, + "id": 6547, "properties": { "axis": "y", "waterlogged": "false" } }, { - "id": 5108, + "id": 6548, "properties": { "axis": "z", "waterlogged": "true" } }, { - "id": 5109, + "id": 6549, "properties": { "axis": "z", "waterlogged": "false" @@ -28125,42 +34198,42 @@ }, "states": [ { - "id": 10118, + "id": 11902, "properties": { "conditional": "true", "facing": "north" } }, { - "id": 10119, + "id": 11903, "properties": { "conditional": "true", "facing": "east" } }, { - "id": 10120, + "id": 11904, "properties": { "conditional": "true", "facing": "south" } }, { - "id": 10121, + "id": 11905, "properties": { "conditional": "true", "facing": "west" } }, { - "id": 10122, + "id": 11906, "properties": { "conditional": "true", "facing": "up" } }, { - "id": 10123, + "id": 11907, "properties": { "conditional": "true", "facing": "down" @@ -28168,42 +34241,42 @@ }, { "default": true, - "id": 10124, + "id": 11908, "properties": { "conditional": "false", "facing": "north" } }, { - "id": 10125, + "id": 11909, "properties": { "conditional": "false", "facing": "east" } }, { - "id": 10126, + "id": 11910, "properties": { "conditional": "false", "facing": "south" } }, { - "id": 10127, + "id": 11911, "properties": { "conditional": "false", "facing": "west" } }, { - "id": 10128, + "id": 11912, "properties": { "conditional": "false", "facing": "up" } }, { - "id": 10129, + "id": 11913, "properties": { "conditional": "false", "facing": "down" @@ -28231,7 +34304,7 @@ }, "states": [ { - "id": 2288, + "id": 2902, "properties": { "type": "single", "facing": "north", @@ -28240,7 +34313,7 @@ }, { "default": true, - "id": 2289, + "id": 2903, "properties": { "type": "single", "facing": "north", @@ -28248,7 +34321,7 @@ } }, { - "id": 2290, + "id": 2904, "properties": { "type": "left", "facing": "north", @@ -28256,7 +34329,7 @@ } }, { - "id": 2291, + "id": 2905, "properties": { "type": "left", "facing": "north", @@ -28264,7 +34337,7 @@ } }, { - "id": 2292, + "id": 2906, "properties": { "type": "right", "facing": "north", @@ -28272,7 +34345,7 @@ } }, { - "id": 2293, + "id": 2907, "properties": { "type": "right", "facing": "north", @@ -28280,7 +34353,7 @@ } }, { - "id": 2294, + "id": 2908, "properties": { "type": "single", "facing": "south", @@ -28288,7 +34361,7 @@ } }, { - "id": 2295, + "id": 2909, "properties": { "type": "single", "facing": "south", @@ -28296,7 +34369,7 @@ } }, { - "id": 2296, + "id": 2910, "properties": { "type": "left", "facing": "south", @@ -28304,7 +34377,7 @@ } }, { - "id": 2297, + "id": 2911, "properties": { "type": "left", "facing": "south", @@ -28312,7 +34385,7 @@ } }, { - "id": 2298, + "id": 2912, "properties": { "type": "right", "facing": "south", @@ -28320,7 +34393,7 @@ } }, { - "id": 2299, + "id": 2913, "properties": { "type": "right", "facing": "south", @@ -28328,7 +34401,7 @@ } }, { - "id": 2300, + "id": 2914, "properties": { "type": "single", "facing": "west", @@ -28336,7 +34409,7 @@ } }, { - "id": 2301, + "id": 2915, "properties": { "type": "single", "facing": "west", @@ -28344,7 +34417,7 @@ } }, { - "id": 2302, + "id": 2916, "properties": { "type": "left", "facing": "west", @@ -28352,7 +34425,7 @@ } }, { - "id": 2303, + "id": 2917, "properties": { "type": "left", "facing": "west", @@ -28360,7 +34433,7 @@ } }, { - "id": 2304, + "id": 2918, "properties": { "type": "right", "facing": "west", @@ -28368,7 +34441,7 @@ } }, { - "id": 2305, + "id": 2919, "properties": { "type": "right", "facing": "west", @@ -28376,7 +34449,7 @@ } }, { - "id": 2306, + "id": 2920, "properties": { "type": "single", "facing": "east", @@ -28384,7 +34457,7 @@ } }, { - "id": 2307, + "id": 2921, "properties": { "type": "single", "facing": "east", @@ -28392,7 +34465,7 @@ } }, { - "id": 2308, + "id": 2922, "properties": { "type": "left", "facing": "east", @@ -28400,7 +34473,7 @@ } }, { - "id": 2309, + "id": 2923, "properties": { "type": "left", "facing": "east", @@ -28408,7 +34481,7 @@ } }, { - "id": 2310, + "id": 2924, "properties": { "type": "right", "facing": "east", @@ -28416,7 +34489,7 @@ } }, { - "id": 2311, + "id": 2925, "properties": { "type": "right", "facing": "east", @@ -28437,36 +34510,3145 @@ "states": [ { "default": true, - "id": 7231, + "id": 8715, "properties": { "facing": "north" } }, { - "id": 7232, + "id": 8716, "properties": { "facing": "south" } }, { - "id": 7233, + "id": 8717, "properties": { "facing": "west" } }, { - "id": 7234, + "id": 8718, "properties": { "facing": "east" } } ] }, + "minecraft:chiseled_bookshelf": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "slot_0_occupied": [ + "true", + "false" + ], + "slot_1_occupied": [ + "true", + "false" + ], + "slot_2_occupied": [ + "true", + "false" + ], + "slot_3_occupied": [ + "true", + "false" + ], + "slot_4_occupied": [ + "true", + "false" + ], + "slot_5_occupied": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2045, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2046, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2047, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2048, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2049, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2050, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2051, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2052, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2053, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2054, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2055, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2056, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2057, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2058, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2059, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2060, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2061, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2062, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2063, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2064, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2065, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2066, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2067, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2068, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2069, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2070, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2071, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2072, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2073, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2074, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2075, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2076, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2077, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2078, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2079, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2080, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2081, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2082, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2083, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2084, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2085, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2086, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2087, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2088, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2089, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2090, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2091, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2092, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2093, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2094, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2095, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2096, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2097, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2098, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2099, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2100, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2101, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2102, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2103, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2104, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2105, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2106, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2107, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "default": true, + "id": 2108, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2109, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2110, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2111, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2112, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2113, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2114, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2115, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2116, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2117, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2118, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2119, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2120, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2121, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2122, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2123, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2124, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2125, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2126, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2127, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2128, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2129, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2130, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2131, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2132, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2133, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2134, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2135, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2136, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2137, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2138, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2139, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2140, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2141, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2142, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2143, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2144, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2145, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2146, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2147, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2148, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2149, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2150, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2151, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2152, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2153, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2154, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2155, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2156, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2157, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2158, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2159, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2160, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2161, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2162, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2163, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2164, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2165, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2166, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2167, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2168, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2169, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2170, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2171, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2172, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2173, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2174, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2175, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2176, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2177, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2178, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2179, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2180, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2181, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2182, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2183, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2184, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2185, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2186, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2187, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2188, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2189, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2190, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2191, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2192, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2193, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2194, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2195, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2196, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2197, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2198, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2199, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2200, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2201, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2202, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2203, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2204, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2205, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2206, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2207, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2208, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2209, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2210, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2211, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2212, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2213, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2214, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2215, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2216, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2217, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2218, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2219, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2220, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2221, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2222, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2223, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2224, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2225, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2226, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2227, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2228, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2229, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2230, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2231, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2232, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2233, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2234, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2235, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2236, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2237, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2238, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2239, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2240, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2241, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2242, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2243, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2244, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2245, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2246, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2247, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2248, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2249, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2250, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2251, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2252, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2253, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2254, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2255, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2256, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2257, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2258, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2259, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2260, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2261, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2262, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2263, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2264, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2265, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2266, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2267, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2268, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2269, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2270, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2271, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2272, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2273, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2274, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2275, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2276, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2277, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2278, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2279, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2280, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2281, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2282, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2283, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2284, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2285, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2286, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2287, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2288, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2289, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2290, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2291, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2292, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2293, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2294, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2295, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2296, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2297, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2298, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2299, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2300, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + } + ] + }, "minecraft:chiseled_deepslate": { "states": [ { "default": true, - "id": 21425 + "id": 23209 } ] }, @@ -28474,7 +37656,7 @@ "states": [ { "default": true, - "id": 18310 + "id": 20094 } ] }, @@ -28482,7 +37664,7 @@ "states": [ { "default": true, - "id": 17462 + "id": 19246 } ] }, @@ -28490,7 +37672,7 @@ "states": [ { "default": true, - "id": 7356 + "id": 8840 } ] }, @@ -28498,7 +37680,7 @@ "states": [ { "default": true, - "id": 8959 + "id": 10603 } ] }, @@ -28506,7 +37688,7 @@ "states": [ { "default": true, - "id": 477 + "id": 485 } ] }, @@ -28514,7 +37696,7 @@ "states": [ { "default": true, - "id": 4871 + "id": 6311 } ] }, @@ -28532,37 +37714,37 @@ "states": [ { "default": true, - "id": 10009, + "id": 11793, "properties": { "age": "0" } }, { - "id": 10010, + "id": 11794, "properties": { "age": "1" } }, { - "id": 10011, + "id": 11795, "properties": { "age": "2" } }, { - "id": 10012, + "id": 11796, "properties": { "age": "3" } }, { - "id": 10013, + "id": 11797, "properties": { "age": "4" } }, { - "id": 10014, + "id": 11798, "properties": { "age": "5" } @@ -28598,7 +37780,7 @@ }, "states": [ { - "id": 9945, + "id": 11729, "properties": { "down": "true", "east": "true", @@ -28609,7 +37791,7 @@ } }, { - "id": 9946, + "id": 11730, "properties": { "down": "true", "east": "true", @@ -28620,7 +37802,7 @@ } }, { - "id": 9947, + "id": 11731, "properties": { "down": "true", "east": "true", @@ -28631,7 +37813,7 @@ } }, { - "id": 9948, + "id": 11732, "properties": { "down": "true", "east": "true", @@ -28642,7 +37824,7 @@ } }, { - "id": 9949, + "id": 11733, "properties": { "down": "true", "east": "true", @@ -28653,7 +37835,7 @@ } }, { - "id": 9950, + "id": 11734, "properties": { "down": "true", "east": "true", @@ -28664,7 +37846,7 @@ } }, { - "id": 9951, + "id": 11735, "properties": { "down": "true", "east": "true", @@ -28675,7 +37857,7 @@ } }, { - "id": 9952, + "id": 11736, "properties": { "down": "true", "east": "true", @@ -28686,7 +37868,7 @@ } }, { - "id": 9953, + "id": 11737, "properties": { "down": "true", "east": "true", @@ -28697,7 +37879,7 @@ } }, { - "id": 9954, + "id": 11738, "properties": { "down": "true", "east": "true", @@ -28708,7 +37890,7 @@ } }, { - "id": 9955, + "id": 11739, "properties": { "down": "true", "east": "true", @@ -28719,7 +37901,7 @@ } }, { - "id": 9956, + "id": 11740, "properties": { "down": "true", "east": "true", @@ -28730,7 +37912,7 @@ } }, { - "id": 9957, + "id": 11741, "properties": { "down": "true", "east": "true", @@ -28741,7 +37923,7 @@ } }, { - "id": 9958, + "id": 11742, "properties": { "down": "true", "east": "true", @@ -28752,7 +37934,7 @@ } }, { - "id": 9959, + "id": 11743, "properties": { "down": "true", "east": "true", @@ -28763,7 +37945,7 @@ } }, { - "id": 9960, + "id": 11744, "properties": { "down": "true", "east": "true", @@ -28774,7 +37956,7 @@ } }, { - "id": 9961, + "id": 11745, "properties": { "down": "true", "east": "false", @@ -28785,7 +37967,7 @@ } }, { - "id": 9962, + "id": 11746, "properties": { "down": "true", "east": "false", @@ -28796,7 +37978,7 @@ } }, { - "id": 9963, + "id": 11747, "properties": { "down": "true", "east": "false", @@ -28807,7 +37989,7 @@ } }, { - "id": 9964, + "id": 11748, "properties": { "down": "true", "east": "false", @@ -28818,7 +38000,7 @@ } }, { - "id": 9965, + "id": 11749, "properties": { "down": "true", "east": "false", @@ -28829,7 +38011,7 @@ } }, { - "id": 9966, + "id": 11750, "properties": { "down": "true", "east": "false", @@ -28840,7 +38022,7 @@ } }, { - "id": 9967, + "id": 11751, "properties": { "down": "true", "east": "false", @@ -28851,7 +38033,7 @@ } }, { - "id": 9968, + "id": 11752, "properties": { "down": "true", "east": "false", @@ -28862,7 +38044,7 @@ } }, { - "id": 9969, + "id": 11753, "properties": { "down": "true", "east": "false", @@ -28873,7 +38055,7 @@ } }, { - "id": 9970, + "id": 11754, "properties": { "down": "true", "east": "false", @@ -28884,7 +38066,7 @@ } }, { - "id": 9971, + "id": 11755, "properties": { "down": "true", "east": "false", @@ -28895,7 +38077,7 @@ } }, { - "id": 9972, + "id": 11756, "properties": { "down": "true", "east": "false", @@ -28906,7 +38088,7 @@ } }, { - "id": 9973, + "id": 11757, "properties": { "down": "true", "east": "false", @@ -28917,7 +38099,7 @@ } }, { - "id": 9974, + "id": 11758, "properties": { "down": "true", "east": "false", @@ -28928,7 +38110,7 @@ } }, { - "id": 9975, + "id": 11759, "properties": { "down": "true", "east": "false", @@ -28939,7 +38121,7 @@ } }, { - "id": 9976, + "id": 11760, "properties": { "down": "true", "east": "false", @@ -28950,7 +38132,7 @@ } }, { - "id": 9977, + "id": 11761, "properties": { "down": "false", "east": "true", @@ -28961,7 +38143,7 @@ } }, { - "id": 9978, + "id": 11762, "properties": { "down": "false", "east": "true", @@ -28972,7 +38154,7 @@ } }, { - "id": 9979, + "id": 11763, "properties": { "down": "false", "east": "true", @@ -28983,7 +38165,7 @@ } }, { - "id": 9980, + "id": 11764, "properties": { "down": "false", "east": "true", @@ -28994,7 +38176,7 @@ } }, { - "id": 9981, + "id": 11765, "properties": { "down": "false", "east": "true", @@ -29005,7 +38187,7 @@ } }, { - "id": 9982, + "id": 11766, "properties": { "down": "false", "east": "true", @@ -29016,7 +38198,7 @@ } }, { - "id": 9983, + "id": 11767, "properties": { "down": "false", "east": "true", @@ -29027,7 +38209,7 @@ } }, { - "id": 9984, + "id": 11768, "properties": { "down": "false", "east": "true", @@ -29038,7 +38220,7 @@ } }, { - "id": 9985, + "id": 11769, "properties": { "down": "false", "east": "true", @@ -29049,7 +38231,7 @@ } }, { - "id": 9986, + "id": 11770, "properties": { "down": "false", "east": "true", @@ -29060,7 +38242,7 @@ } }, { - "id": 9987, + "id": 11771, "properties": { "down": "false", "east": "true", @@ -29071,7 +38253,7 @@ } }, { - "id": 9988, + "id": 11772, "properties": { "down": "false", "east": "true", @@ -29082,7 +38264,7 @@ } }, { - "id": 9989, + "id": 11773, "properties": { "down": "false", "east": "true", @@ -29093,7 +38275,7 @@ } }, { - "id": 9990, + "id": 11774, "properties": { "down": "false", "east": "true", @@ -29104,7 +38286,7 @@ } }, { - "id": 9991, + "id": 11775, "properties": { "down": "false", "east": "true", @@ -29115,7 +38297,7 @@ } }, { - "id": 9992, + "id": 11776, "properties": { "down": "false", "east": "true", @@ -29126,7 +38308,7 @@ } }, { - "id": 9993, + "id": 11777, "properties": { "down": "false", "east": "false", @@ -29137,7 +38319,7 @@ } }, { - "id": 9994, + "id": 11778, "properties": { "down": "false", "east": "false", @@ -29148,7 +38330,7 @@ } }, { - "id": 9995, + "id": 11779, "properties": { "down": "false", "east": "false", @@ -29159,7 +38341,7 @@ } }, { - "id": 9996, + "id": 11780, "properties": { "down": "false", "east": "false", @@ -29170,7 +38352,7 @@ } }, { - "id": 9997, + "id": 11781, "properties": { "down": "false", "east": "false", @@ -29181,7 +38363,7 @@ } }, { - "id": 9998, + "id": 11782, "properties": { "down": "false", "east": "false", @@ -29192,7 +38374,7 @@ } }, { - "id": 9999, + "id": 11783, "properties": { "down": "false", "east": "false", @@ -29203,7 +38385,7 @@ } }, { - "id": 10000, + "id": 11784, "properties": { "down": "false", "east": "false", @@ -29214,7 +38396,7 @@ } }, { - "id": 10001, + "id": 11785, "properties": { "down": "false", "east": "false", @@ -29225,7 +38407,7 @@ } }, { - "id": 10002, + "id": 11786, "properties": { "down": "false", "east": "false", @@ -29236,7 +38418,7 @@ } }, { - "id": 10003, + "id": 11787, "properties": { "down": "false", "east": "false", @@ -29247,7 +38429,7 @@ } }, { - "id": 10004, + "id": 11788, "properties": { "down": "false", "east": "false", @@ -29258,7 +38440,7 @@ } }, { - "id": 10005, + "id": 11789, "properties": { "down": "false", "east": "false", @@ -29269,7 +38451,7 @@ } }, { - "id": 10006, + "id": 11790, "properties": { "down": "false", "east": "false", @@ -29280,7 +38462,7 @@ } }, { - "id": 10007, + "id": 11791, "properties": { "down": "false", "east": "false", @@ -29292,7 +38474,7 @@ }, { "default": true, - "id": 10008, + "id": 11792, "properties": { "down": "false", "east": "false", @@ -29308,7 +38490,7 @@ "states": [ { "default": true, - "id": 4256 + "id": 5632 } ] }, @@ -29316,7 +38498,7 @@ "states": [ { "default": true, - "id": 8624 + "id": 10268 } ] }, @@ -29324,7 +38506,7 @@ "states": [ { "default": true, - "id": 114 + "id": 116 } ] }, @@ -29340,7 +38522,7 @@ "states": [ { "default": true, - "id": 19781 + "id": 21565 } ] }, @@ -29358,21 +38540,21 @@ }, "states": [ { - "id": 19862, + "id": 21646, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 19863, + "id": 21647, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 19864, + "id": 21648, "properties": { "type": "bottom", "waterlogged": "true" @@ -29380,21 +38562,21 @@ }, { "default": true, - "id": 19865, + "id": 21649, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 19866, + "id": 21650, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 19867, + "id": 21651, "properties": { "type": "double", "waterlogged": "false" @@ -29428,7 +38610,7 @@ }, "states": [ { - "id": 19782, + "id": 21566, "properties": { "facing": "north", "half": "top", @@ -29437,7 +38619,7 @@ } }, { - "id": 19783, + "id": 21567, "properties": { "facing": "north", "half": "top", @@ -29446,7 +38628,7 @@ } }, { - "id": 19784, + "id": 21568, "properties": { "facing": "north", "half": "top", @@ -29455,7 +38637,7 @@ } }, { - "id": 19785, + "id": 21569, "properties": { "facing": "north", "half": "top", @@ -29464,7 +38646,7 @@ } }, { - "id": 19786, + "id": 21570, "properties": { "facing": "north", "half": "top", @@ -29473,7 +38655,7 @@ } }, { - "id": 19787, + "id": 21571, "properties": { "facing": "north", "half": "top", @@ -29482,7 +38664,7 @@ } }, { - "id": 19788, + "id": 21572, "properties": { "facing": "north", "half": "top", @@ -29491,7 +38673,7 @@ } }, { - "id": 19789, + "id": 21573, "properties": { "facing": "north", "half": "top", @@ -29500,7 +38682,7 @@ } }, { - "id": 19790, + "id": 21574, "properties": { "facing": "north", "half": "top", @@ -29509,7 +38691,7 @@ } }, { - "id": 19791, + "id": 21575, "properties": { "facing": "north", "half": "top", @@ -29518,7 +38700,7 @@ } }, { - "id": 19792, + "id": 21576, "properties": { "facing": "north", "half": "bottom", @@ -29528,7 +38710,7 @@ }, { "default": true, - "id": 19793, + "id": 21577, "properties": { "facing": "north", "half": "bottom", @@ -29537,7 +38719,7 @@ } }, { - "id": 19794, + "id": 21578, "properties": { "facing": "north", "half": "bottom", @@ -29546,7 +38728,7 @@ } }, { - "id": 19795, + "id": 21579, "properties": { "facing": "north", "half": "bottom", @@ -29555,7 +38737,7 @@ } }, { - "id": 19796, + "id": 21580, "properties": { "facing": "north", "half": "bottom", @@ -29564,7 +38746,7 @@ } }, { - "id": 19797, + "id": 21581, "properties": { "facing": "north", "half": "bottom", @@ -29573,7 +38755,7 @@ } }, { - "id": 19798, + "id": 21582, "properties": { "facing": "north", "half": "bottom", @@ -29582,7 +38764,7 @@ } }, { - "id": 19799, + "id": 21583, "properties": { "facing": "north", "half": "bottom", @@ -29591,7 +38773,7 @@ } }, { - "id": 19800, + "id": 21584, "properties": { "facing": "north", "half": "bottom", @@ -29600,7 +38782,7 @@ } }, { - "id": 19801, + "id": 21585, "properties": { "facing": "north", "half": "bottom", @@ -29609,7 +38791,7 @@ } }, { - "id": 19802, + "id": 21586, "properties": { "facing": "south", "half": "top", @@ -29618,7 +38800,7 @@ } }, { - "id": 19803, + "id": 21587, "properties": { "facing": "south", "half": "top", @@ -29627,7 +38809,7 @@ } }, { - "id": 19804, + "id": 21588, "properties": { "facing": "south", "half": "top", @@ -29636,7 +38818,7 @@ } }, { - "id": 19805, + "id": 21589, "properties": { "facing": "south", "half": "top", @@ -29645,7 +38827,7 @@ } }, { - "id": 19806, + "id": 21590, "properties": { "facing": "south", "half": "top", @@ -29654,7 +38836,7 @@ } }, { - "id": 19807, + "id": 21591, "properties": { "facing": "south", "half": "top", @@ -29663,7 +38845,7 @@ } }, { - "id": 19808, + "id": 21592, "properties": { "facing": "south", "half": "top", @@ -29672,7 +38854,7 @@ } }, { - "id": 19809, + "id": 21593, "properties": { "facing": "south", "half": "top", @@ -29681,7 +38863,7 @@ } }, { - "id": 19810, + "id": 21594, "properties": { "facing": "south", "half": "top", @@ -29690,7 +38872,7 @@ } }, { - "id": 19811, + "id": 21595, "properties": { "facing": "south", "half": "top", @@ -29699,7 +38881,7 @@ } }, { - "id": 19812, + "id": 21596, "properties": { "facing": "south", "half": "bottom", @@ -29708,7 +38890,7 @@ } }, { - "id": 19813, + "id": 21597, "properties": { "facing": "south", "half": "bottom", @@ -29717,7 +38899,7 @@ } }, { - "id": 19814, + "id": 21598, "properties": { "facing": "south", "half": "bottom", @@ -29726,7 +38908,7 @@ } }, { - "id": 19815, + "id": 21599, "properties": { "facing": "south", "half": "bottom", @@ -29735,7 +38917,7 @@ } }, { - "id": 19816, + "id": 21600, "properties": { "facing": "south", "half": "bottom", @@ -29744,7 +38926,7 @@ } }, { - "id": 19817, + "id": 21601, "properties": { "facing": "south", "half": "bottom", @@ -29753,7 +38935,7 @@ } }, { - "id": 19818, + "id": 21602, "properties": { "facing": "south", "half": "bottom", @@ -29762,7 +38944,7 @@ } }, { - "id": 19819, + "id": 21603, "properties": { "facing": "south", "half": "bottom", @@ -29771,7 +38953,7 @@ } }, { - "id": 19820, + "id": 21604, "properties": { "facing": "south", "half": "bottom", @@ -29780,7 +38962,7 @@ } }, { - "id": 19821, + "id": 21605, "properties": { "facing": "south", "half": "bottom", @@ -29789,7 +38971,7 @@ } }, { - "id": 19822, + "id": 21606, "properties": { "facing": "west", "half": "top", @@ -29798,7 +38980,7 @@ } }, { - "id": 19823, + "id": 21607, "properties": { "facing": "west", "half": "top", @@ -29807,7 +38989,7 @@ } }, { - "id": 19824, + "id": 21608, "properties": { "facing": "west", "half": "top", @@ -29816,7 +38998,7 @@ } }, { - "id": 19825, + "id": 21609, "properties": { "facing": "west", "half": "top", @@ -29825,7 +39007,7 @@ } }, { - "id": 19826, + "id": 21610, "properties": { "facing": "west", "half": "top", @@ -29834,7 +39016,7 @@ } }, { - "id": 19827, + "id": 21611, "properties": { "facing": "west", "half": "top", @@ -29843,7 +39025,7 @@ } }, { - "id": 19828, + "id": 21612, "properties": { "facing": "west", "half": "top", @@ -29852,7 +39034,7 @@ } }, { - "id": 19829, + "id": 21613, "properties": { "facing": "west", "half": "top", @@ -29861,7 +39043,7 @@ } }, { - "id": 19830, + "id": 21614, "properties": { "facing": "west", "half": "top", @@ -29870,7 +39052,7 @@ } }, { - "id": 19831, + "id": 21615, "properties": { "facing": "west", "half": "top", @@ -29879,7 +39061,7 @@ } }, { - "id": 19832, + "id": 21616, "properties": { "facing": "west", "half": "bottom", @@ -29888,7 +39070,7 @@ } }, { - "id": 19833, + "id": 21617, "properties": { "facing": "west", "half": "bottom", @@ -29897,7 +39079,7 @@ } }, { - "id": 19834, + "id": 21618, "properties": { "facing": "west", "half": "bottom", @@ -29906,7 +39088,7 @@ } }, { - "id": 19835, + "id": 21619, "properties": { "facing": "west", "half": "bottom", @@ -29915,7 +39097,7 @@ } }, { - "id": 19836, + "id": 21620, "properties": { "facing": "west", "half": "bottom", @@ -29924,7 +39106,7 @@ } }, { - "id": 19837, + "id": 21621, "properties": { "facing": "west", "half": "bottom", @@ -29933,7 +39115,7 @@ } }, { - "id": 19838, + "id": 21622, "properties": { "facing": "west", "half": "bottom", @@ -29942,7 +39124,7 @@ } }, { - "id": 19839, + "id": 21623, "properties": { "facing": "west", "half": "bottom", @@ -29951,7 +39133,7 @@ } }, { - "id": 19840, + "id": 21624, "properties": { "facing": "west", "half": "bottom", @@ -29960,7 +39142,7 @@ } }, { - "id": 19841, + "id": 21625, "properties": { "facing": "west", "half": "bottom", @@ -29969,7 +39151,7 @@ } }, { - "id": 19842, + "id": 21626, "properties": { "facing": "east", "half": "top", @@ -29978,7 +39160,7 @@ } }, { - "id": 19843, + "id": 21627, "properties": { "facing": "east", "half": "top", @@ -29987,7 +39169,7 @@ } }, { - "id": 19844, + "id": 21628, "properties": { "facing": "east", "half": "top", @@ -29996,7 +39178,7 @@ } }, { - "id": 19845, + "id": 21629, "properties": { "facing": "east", "half": "top", @@ -30005,7 +39187,7 @@ } }, { - "id": 19846, + "id": 21630, "properties": { "facing": "east", "half": "top", @@ -30014,7 +39196,7 @@ } }, { - "id": 19847, + "id": 21631, "properties": { "facing": "east", "half": "top", @@ -30023,7 +39205,7 @@ } }, { - "id": 19848, + "id": 21632, "properties": { "facing": "east", "half": "top", @@ -30032,7 +39214,7 @@ } }, { - "id": 19849, + "id": 21633, "properties": { "facing": "east", "half": "top", @@ -30041,7 +39223,7 @@ } }, { - "id": 19850, + "id": 21634, "properties": { "facing": "east", "half": "top", @@ -30050,7 +39232,7 @@ } }, { - "id": 19851, + "id": 21635, "properties": { "facing": "east", "half": "top", @@ -30059,7 +39241,7 @@ } }, { - "id": 19852, + "id": 21636, "properties": { "facing": "east", "half": "bottom", @@ -30068,7 +39250,7 @@ } }, { - "id": 19853, + "id": 21637, "properties": { "facing": "east", "half": "bottom", @@ -30077,7 +39259,7 @@ } }, { - "id": 19854, + "id": 21638, "properties": { "facing": "east", "half": "bottom", @@ -30086,7 +39268,7 @@ } }, { - "id": 19855, + "id": 21639, "properties": { "facing": "east", "half": "bottom", @@ -30095,7 +39277,7 @@ } }, { - "id": 19856, + "id": 21640, "properties": { "facing": "east", "half": "bottom", @@ -30104,7 +39286,7 @@ } }, { - "id": 19857, + "id": 21641, "properties": { "facing": "east", "half": "bottom", @@ -30113,7 +39295,7 @@ } }, { - "id": 19858, + "id": 21642, "properties": { "facing": "east", "half": "bottom", @@ -30122,7 +39304,7 @@ } }, { - "id": 19859, + "id": 21643, "properties": { "facing": "east", "half": "bottom", @@ -30131,7 +39313,7 @@ } }, { - "id": 19860, + "id": 21644, "properties": { "facing": "east", "half": "bottom", @@ -30140,7 +39322,7 @@ } }, { - "id": 19861, + "id": 21645, "properties": { "facing": "east", "half": "bottom", @@ -30183,7 +39365,7 @@ }, "states": [ { - "id": 19868, + "id": 21652, "properties": { "east": "none", "north": "none", @@ -30194,7 +39376,7 @@ } }, { - "id": 19869, + "id": 21653, "properties": { "east": "none", "north": "none", @@ -30205,7 +39387,7 @@ } }, { - "id": 19870, + "id": 21654, "properties": { "east": "none", "north": "none", @@ -30217,7 +39399,7 @@ }, { "default": true, - "id": 19871, + "id": 21655, "properties": { "east": "none", "north": "none", @@ -30228,7 +39410,7 @@ } }, { - "id": 19872, + "id": 21656, "properties": { "east": "none", "north": "none", @@ -30239,7 +39421,7 @@ } }, { - "id": 19873, + "id": 21657, "properties": { "east": "none", "north": "none", @@ -30250,7 +39432,7 @@ } }, { - "id": 19874, + "id": 21658, "properties": { "east": "none", "north": "none", @@ -30261,7 +39443,7 @@ } }, { - "id": 19875, + "id": 21659, "properties": { "east": "none", "north": "none", @@ -30272,7 +39454,7 @@ } }, { - "id": 19876, + "id": 21660, "properties": { "east": "none", "north": "none", @@ -30283,7 +39465,7 @@ } }, { - "id": 19877, + "id": 21661, "properties": { "east": "none", "north": "none", @@ -30294,7 +39476,7 @@ } }, { - "id": 19878, + "id": 21662, "properties": { "east": "none", "north": "none", @@ -30305,7 +39487,7 @@ } }, { - "id": 19879, + "id": 21663, "properties": { "east": "none", "north": "none", @@ -30316,7 +39498,7 @@ } }, { - "id": 19880, + "id": 21664, "properties": { "east": "none", "north": "none", @@ -30327,7 +39509,7 @@ } }, { - "id": 19881, + "id": 21665, "properties": { "east": "none", "north": "none", @@ -30338,7 +39520,7 @@ } }, { - "id": 19882, + "id": 21666, "properties": { "east": "none", "north": "none", @@ -30349,7 +39531,7 @@ } }, { - "id": 19883, + "id": 21667, "properties": { "east": "none", "north": "none", @@ -30360,7 +39542,7 @@ } }, { - "id": 19884, + "id": 21668, "properties": { "east": "none", "north": "none", @@ -30371,7 +39553,7 @@ } }, { - "id": 19885, + "id": 21669, "properties": { "east": "none", "north": "none", @@ -30382,7 +39564,7 @@ } }, { - "id": 19886, + "id": 21670, "properties": { "east": "none", "north": "none", @@ -30393,7 +39575,7 @@ } }, { - "id": 19887, + "id": 21671, "properties": { "east": "none", "north": "none", @@ -30404,7 +39586,7 @@ } }, { - "id": 19888, + "id": 21672, "properties": { "east": "none", "north": "none", @@ -30415,7 +39597,7 @@ } }, { - "id": 19889, + "id": 21673, "properties": { "east": "none", "north": "none", @@ -30426,7 +39608,7 @@ } }, { - "id": 19890, + "id": 21674, "properties": { "east": "none", "north": "none", @@ -30437,7 +39619,7 @@ } }, { - "id": 19891, + "id": 21675, "properties": { "east": "none", "north": "none", @@ -30448,7 +39630,7 @@ } }, { - "id": 19892, + "id": 21676, "properties": { "east": "none", "north": "none", @@ -30459,7 +39641,7 @@ } }, { - "id": 19893, + "id": 21677, "properties": { "east": "none", "north": "none", @@ -30470,7 +39652,7 @@ } }, { - "id": 19894, + "id": 21678, "properties": { "east": "none", "north": "none", @@ -30481,7 +39663,7 @@ } }, { - "id": 19895, + "id": 21679, "properties": { "east": "none", "north": "none", @@ -30492,7 +39674,7 @@ } }, { - "id": 19896, + "id": 21680, "properties": { "east": "none", "north": "none", @@ -30503,7 +39685,7 @@ } }, { - "id": 19897, + "id": 21681, "properties": { "east": "none", "north": "none", @@ -30514,7 +39696,7 @@ } }, { - "id": 19898, + "id": 21682, "properties": { "east": "none", "north": "none", @@ -30525,7 +39707,7 @@ } }, { - "id": 19899, + "id": 21683, "properties": { "east": "none", "north": "none", @@ -30536,7 +39718,7 @@ } }, { - "id": 19900, + "id": 21684, "properties": { "east": "none", "north": "none", @@ -30547,7 +39729,7 @@ } }, { - "id": 19901, + "id": 21685, "properties": { "east": "none", "north": "none", @@ -30558,7 +39740,7 @@ } }, { - "id": 19902, + "id": 21686, "properties": { "east": "none", "north": "none", @@ -30569,7 +39751,7 @@ } }, { - "id": 19903, + "id": 21687, "properties": { "east": "none", "north": "none", @@ -30580,7 +39762,7 @@ } }, { - "id": 19904, + "id": 21688, "properties": { "east": "none", "north": "low", @@ -30591,7 +39773,7 @@ } }, { - "id": 19905, + "id": 21689, "properties": { "east": "none", "north": "low", @@ -30602,7 +39784,7 @@ } }, { - "id": 19906, + "id": 21690, "properties": { "east": "none", "north": "low", @@ -30613,7 +39795,7 @@ } }, { - "id": 19907, + "id": 21691, "properties": { "east": "none", "north": "low", @@ -30624,7 +39806,7 @@ } }, { - "id": 19908, + "id": 21692, "properties": { "east": "none", "north": "low", @@ -30635,7 +39817,7 @@ } }, { - "id": 19909, + "id": 21693, "properties": { "east": "none", "north": "low", @@ -30646,7 +39828,7 @@ } }, { - "id": 19910, + "id": 21694, "properties": { "east": "none", "north": "low", @@ -30657,7 +39839,7 @@ } }, { - "id": 19911, + "id": 21695, "properties": { "east": "none", "north": "low", @@ -30668,7 +39850,7 @@ } }, { - "id": 19912, + "id": 21696, "properties": { "east": "none", "north": "low", @@ -30679,7 +39861,7 @@ } }, { - "id": 19913, + "id": 21697, "properties": { "east": "none", "north": "low", @@ -30690,7 +39872,7 @@ } }, { - "id": 19914, + "id": 21698, "properties": { "east": "none", "north": "low", @@ -30701,7 +39883,7 @@ } }, { - "id": 19915, + "id": 21699, "properties": { "east": "none", "north": "low", @@ -30712,7 +39894,7 @@ } }, { - "id": 19916, + "id": 21700, "properties": { "east": "none", "north": "low", @@ -30723,7 +39905,7 @@ } }, { - "id": 19917, + "id": 21701, "properties": { "east": "none", "north": "low", @@ -30734,7 +39916,7 @@ } }, { - "id": 19918, + "id": 21702, "properties": { "east": "none", "north": "low", @@ -30745,7 +39927,7 @@ } }, { - "id": 19919, + "id": 21703, "properties": { "east": "none", "north": "low", @@ -30756,7 +39938,7 @@ } }, { - "id": 19920, + "id": 21704, "properties": { "east": "none", "north": "low", @@ -30767,7 +39949,7 @@ } }, { - "id": 19921, + "id": 21705, "properties": { "east": "none", "north": "low", @@ -30778,7 +39960,7 @@ } }, { - "id": 19922, + "id": 21706, "properties": { "east": "none", "north": "low", @@ -30789,7 +39971,7 @@ } }, { - "id": 19923, + "id": 21707, "properties": { "east": "none", "north": "low", @@ -30800,7 +39982,7 @@ } }, { - "id": 19924, + "id": 21708, "properties": { "east": "none", "north": "low", @@ -30811,7 +39993,7 @@ } }, { - "id": 19925, + "id": 21709, "properties": { "east": "none", "north": "low", @@ -30822,7 +40004,7 @@ } }, { - "id": 19926, + "id": 21710, "properties": { "east": "none", "north": "low", @@ -30833,7 +40015,7 @@ } }, { - "id": 19927, + "id": 21711, "properties": { "east": "none", "north": "low", @@ -30844,7 +40026,7 @@ } }, { - "id": 19928, + "id": 21712, "properties": { "east": "none", "north": "low", @@ -30855,7 +40037,7 @@ } }, { - "id": 19929, + "id": 21713, "properties": { "east": "none", "north": "low", @@ -30866,7 +40048,7 @@ } }, { - "id": 19930, + "id": 21714, "properties": { "east": "none", "north": "low", @@ -30877,7 +40059,7 @@ } }, { - "id": 19931, + "id": 21715, "properties": { "east": "none", "north": "low", @@ -30888,7 +40070,7 @@ } }, { - "id": 19932, + "id": 21716, "properties": { "east": "none", "north": "low", @@ -30899,7 +40081,7 @@ } }, { - "id": 19933, + "id": 21717, "properties": { "east": "none", "north": "low", @@ -30910,7 +40092,7 @@ } }, { - "id": 19934, + "id": 21718, "properties": { "east": "none", "north": "low", @@ -30921,7 +40103,7 @@ } }, { - "id": 19935, + "id": 21719, "properties": { "east": "none", "north": "low", @@ -30932,7 +40114,7 @@ } }, { - "id": 19936, + "id": 21720, "properties": { "east": "none", "north": "low", @@ -30943,7 +40125,7 @@ } }, { - "id": 19937, + "id": 21721, "properties": { "east": "none", "north": "low", @@ -30954,7 +40136,7 @@ } }, { - "id": 19938, + "id": 21722, "properties": { "east": "none", "north": "low", @@ -30965,7 +40147,7 @@ } }, { - "id": 19939, + "id": 21723, "properties": { "east": "none", "north": "low", @@ -30976,7 +40158,7 @@ } }, { - "id": 19940, + "id": 21724, "properties": { "east": "none", "north": "tall", @@ -30987,7 +40169,7 @@ } }, { - "id": 19941, + "id": 21725, "properties": { "east": "none", "north": "tall", @@ -30998,7 +40180,7 @@ } }, { - "id": 19942, + "id": 21726, "properties": { "east": "none", "north": "tall", @@ -31009,7 +40191,7 @@ } }, { - "id": 19943, + "id": 21727, "properties": { "east": "none", "north": "tall", @@ -31020,7 +40202,7 @@ } }, { - "id": 19944, + "id": 21728, "properties": { "east": "none", "north": "tall", @@ -31031,7 +40213,7 @@ } }, { - "id": 19945, + "id": 21729, "properties": { "east": "none", "north": "tall", @@ -31042,7 +40224,7 @@ } }, { - "id": 19946, + "id": 21730, "properties": { "east": "none", "north": "tall", @@ -31053,7 +40235,7 @@ } }, { - "id": 19947, + "id": 21731, "properties": { "east": "none", "north": "tall", @@ -31064,7 +40246,7 @@ } }, { - "id": 19948, + "id": 21732, "properties": { "east": "none", "north": "tall", @@ -31075,7 +40257,7 @@ } }, { - "id": 19949, + "id": 21733, "properties": { "east": "none", "north": "tall", @@ -31086,7 +40268,7 @@ } }, { - "id": 19950, + "id": 21734, "properties": { "east": "none", "north": "tall", @@ -31097,7 +40279,7 @@ } }, { - "id": 19951, + "id": 21735, "properties": { "east": "none", "north": "tall", @@ -31108,7 +40290,7 @@ } }, { - "id": 19952, + "id": 21736, "properties": { "east": "none", "north": "tall", @@ -31119,7 +40301,7 @@ } }, { - "id": 19953, + "id": 21737, "properties": { "east": "none", "north": "tall", @@ -31130,7 +40312,7 @@ } }, { - "id": 19954, + "id": 21738, "properties": { "east": "none", "north": "tall", @@ -31141,7 +40323,7 @@ } }, { - "id": 19955, + "id": 21739, "properties": { "east": "none", "north": "tall", @@ -31152,7 +40334,7 @@ } }, { - "id": 19956, + "id": 21740, "properties": { "east": "none", "north": "tall", @@ -31163,7 +40345,7 @@ } }, { - "id": 19957, + "id": 21741, "properties": { "east": "none", "north": "tall", @@ -31174,7 +40356,7 @@ } }, { - "id": 19958, + "id": 21742, "properties": { "east": "none", "north": "tall", @@ -31185,7 +40367,7 @@ } }, { - "id": 19959, + "id": 21743, "properties": { "east": "none", "north": "tall", @@ -31196,7 +40378,7 @@ } }, { - "id": 19960, + "id": 21744, "properties": { "east": "none", "north": "tall", @@ -31207,7 +40389,7 @@ } }, { - "id": 19961, + "id": 21745, "properties": { "east": "none", "north": "tall", @@ -31218,7 +40400,7 @@ } }, { - "id": 19962, + "id": 21746, "properties": { "east": "none", "north": "tall", @@ -31229,7 +40411,7 @@ } }, { - "id": 19963, + "id": 21747, "properties": { "east": "none", "north": "tall", @@ -31240,7 +40422,7 @@ } }, { - "id": 19964, + "id": 21748, "properties": { "east": "none", "north": "tall", @@ -31251,7 +40433,7 @@ } }, { - "id": 19965, + "id": 21749, "properties": { "east": "none", "north": "tall", @@ -31262,7 +40444,7 @@ } }, { - "id": 19966, + "id": 21750, "properties": { "east": "none", "north": "tall", @@ -31273,7 +40455,7 @@ } }, { - "id": 19967, + "id": 21751, "properties": { "east": "none", "north": "tall", @@ -31284,7 +40466,7 @@ } }, { - "id": 19968, + "id": 21752, "properties": { "east": "none", "north": "tall", @@ -31295,7 +40477,7 @@ } }, { - "id": 19969, + "id": 21753, "properties": { "east": "none", "north": "tall", @@ -31306,7 +40488,7 @@ } }, { - "id": 19970, + "id": 21754, "properties": { "east": "none", "north": "tall", @@ -31317,7 +40499,7 @@ } }, { - "id": 19971, + "id": 21755, "properties": { "east": "none", "north": "tall", @@ -31328,7 +40510,7 @@ } }, { - "id": 19972, + "id": 21756, "properties": { "east": "none", "north": "tall", @@ -31339,7 +40521,7 @@ } }, { - "id": 19973, + "id": 21757, "properties": { "east": "none", "north": "tall", @@ -31350,7 +40532,7 @@ } }, { - "id": 19974, + "id": 21758, "properties": { "east": "none", "north": "tall", @@ -31361,7 +40543,7 @@ } }, { - "id": 19975, + "id": 21759, "properties": { "east": "none", "north": "tall", @@ -31372,7 +40554,7 @@ } }, { - "id": 19976, + "id": 21760, "properties": { "east": "low", "north": "none", @@ -31383,7 +40565,7 @@ } }, { - "id": 19977, + "id": 21761, "properties": { "east": "low", "north": "none", @@ -31394,7 +40576,7 @@ } }, { - "id": 19978, + "id": 21762, "properties": { "east": "low", "north": "none", @@ -31405,7 +40587,7 @@ } }, { - "id": 19979, + "id": 21763, "properties": { "east": "low", "north": "none", @@ -31416,7 +40598,7 @@ } }, { - "id": 19980, + "id": 21764, "properties": { "east": "low", "north": "none", @@ -31427,7 +40609,7 @@ } }, { - "id": 19981, + "id": 21765, "properties": { "east": "low", "north": "none", @@ -31438,7 +40620,7 @@ } }, { - "id": 19982, + "id": 21766, "properties": { "east": "low", "north": "none", @@ -31449,7 +40631,7 @@ } }, { - "id": 19983, + "id": 21767, "properties": { "east": "low", "north": "none", @@ -31460,7 +40642,7 @@ } }, { - "id": 19984, + "id": 21768, "properties": { "east": "low", "north": "none", @@ -31471,7 +40653,7 @@ } }, { - "id": 19985, + "id": 21769, "properties": { "east": "low", "north": "none", @@ -31482,7 +40664,7 @@ } }, { - "id": 19986, + "id": 21770, "properties": { "east": "low", "north": "none", @@ -31493,7 +40675,7 @@ } }, { - "id": 19987, + "id": 21771, "properties": { "east": "low", "north": "none", @@ -31504,7 +40686,7 @@ } }, { - "id": 19988, + "id": 21772, "properties": { "east": "low", "north": "none", @@ -31515,7 +40697,7 @@ } }, { - "id": 19989, + "id": 21773, "properties": { "east": "low", "north": "none", @@ -31526,7 +40708,7 @@ } }, { - "id": 19990, + "id": 21774, "properties": { "east": "low", "north": "none", @@ -31537,7 +40719,7 @@ } }, { - "id": 19991, + "id": 21775, "properties": { "east": "low", "north": "none", @@ -31548,7 +40730,7 @@ } }, { - "id": 19992, + "id": 21776, "properties": { "east": "low", "north": "none", @@ -31559,7 +40741,7 @@ } }, { - "id": 19993, + "id": 21777, "properties": { "east": "low", "north": "none", @@ -31570,7 +40752,7 @@ } }, { - "id": 19994, + "id": 21778, "properties": { "east": "low", "north": "none", @@ -31581,7 +40763,7 @@ } }, { - "id": 19995, + "id": 21779, "properties": { "east": "low", "north": "none", @@ -31592,7 +40774,7 @@ } }, { - "id": 19996, + "id": 21780, "properties": { "east": "low", "north": "none", @@ -31603,7 +40785,7 @@ } }, { - "id": 19997, + "id": 21781, "properties": { "east": "low", "north": "none", @@ -31614,7 +40796,7 @@ } }, { - "id": 19998, + "id": 21782, "properties": { "east": "low", "north": "none", @@ -31625,7 +40807,7 @@ } }, { - "id": 19999, + "id": 21783, "properties": { "east": "low", "north": "none", @@ -31636,7 +40818,7 @@ } }, { - "id": 20000, + "id": 21784, "properties": { "east": "low", "north": "none", @@ -31647,7 +40829,7 @@ } }, { - "id": 20001, + "id": 21785, "properties": { "east": "low", "north": "none", @@ -31658,7 +40840,7 @@ } }, { - "id": 20002, + "id": 21786, "properties": { "east": "low", "north": "none", @@ -31669,7 +40851,7 @@ } }, { - "id": 20003, + "id": 21787, "properties": { "east": "low", "north": "none", @@ -31680,7 +40862,7 @@ } }, { - "id": 20004, + "id": 21788, "properties": { "east": "low", "north": "none", @@ -31691,7 +40873,7 @@ } }, { - "id": 20005, + "id": 21789, "properties": { "east": "low", "north": "none", @@ -31702,7 +40884,7 @@ } }, { - "id": 20006, + "id": 21790, "properties": { "east": "low", "north": "none", @@ -31713,7 +40895,7 @@ } }, { - "id": 20007, + "id": 21791, "properties": { "east": "low", "north": "none", @@ -31724,7 +40906,7 @@ } }, { - "id": 20008, + "id": 21792, "properties": { "east": "low", "north": "none", @@ -31735,7 +40917,7 @@ } }, { - "id": 20009, + "id": 21793, "properties": { "east": "low", "north": "none", @@ -31746,7 +40928,7 @@ } }, { - "id": 20010, + "id": 21794, "properties": { "east": "low", "north": "none", @@ -31757,7 +40939,7 @@ } }, { - "id": 20011, + "id": 21795, "properties": { "east": "low", "north": "none", @@ -31768,7 +40950,7 @@ } }, { - "id": 20012, + "id": 21796, "properties": { "east": "low", "north": "low", @@ -31779,7 +40961,7 @@ } }, { - "id": 20013, + "id": 21797, "properties": { "east": "low", "north": "low", @@ -31790,7 +40972,7 @@ } }, { - "id": 20014, + "id": 21798, "properties": { "east": "low", "north": "low", @@ -31801,7 +40983,7 @@ } }, { - "id": 20015, + "id": 21799, "properties": { "east": "low", "north": "low", @@ -31812,7 +40994,7 @@ } }, { - "id": 20016, + "id": 21800, "properties": { "east": "low", "north": "low", @@ -31823,7 +41005,7 @@ } }, { - "id": 20017, + "id": 21801, "properties": { "east": "low", "north": "low", @@ -31834,7 +41016,7 @@ } }, { - "id": 20018, + "id": 21802, "properties": { "east": "low", "north": "low", @@ -31845,7 +41027,7 @@ } }, { - "id": 20019, + "id": 21803, "properties": { "east": "low", "north": "low", @@ -31856,7 +41038,7 @@ } }, { - "id": 20020, + "id": 21804, "properties": { "east": "low", "north": "low", @@ -31867,7 +41049,7 @@ } }, { - "id": 20021, + "id": 21805, "properties": { "east": "low", "north": "low", @@ -31878,7 +41060,7 @@ } }, { - "id": 20022, + "id": 21806, "properties": { "east": "low", "north": "low", @@ -31889,7 +41071,7 @@ } }, { - "id": 20023, + "id": 21807, "properties": { "east": "low", "north": "low", @@ -31900,7 +41082,7 @@ } }, { - "id": 20024, + "id": 21808, "properties": { "east": "low", "north": "low", @@ -31911,7 +41093,7 @@ } }, { - "id": 20025, + "id": 21809, "properties": { "east": "low", "north": "low", @@ -31922,7 +41104,7 @@ } }, { - "id": 20026, + "id": 21810, "properties": { "east": "low", "north": "low", @@ -31933,7 +41115,7 @@ } }, { - "id": 20027, + "id": 21811, "properties": { "east": "low", "north": "low", @@ -31944,7 +41126,7 @@ } }, { - "id": 20028, + "id": 21812, "properties": { "east": "low", "north": "low", @@ -31955,7 +41137,7 @@ } }, { - "id": 20029, + "id": 21813, "properties": { "east": "low", "north": "low", @@ -31966,7 +41148,7 @@ } }, { - "id": 20030, + "id": 21814, "properties": { "east": "low", "north": "low", @@ -31977,7 +41159,7 @@ } }, { - "id": 20031, + "id": 21815, "properties": { "east": "low", "north": "low", @@ -31988,7 +41170,7 @@ } }, { - "id": 20032, + "id": 21816, "properties": { "east": "low", "north": "low", @@ -31999,7 +41181,7 @@ } }, { - "id": 20033, + "id": 21817, "properties": { "east": "low", "north": "low", @@ -32010,7 +41192,7 @@ } }, { - "id": 20034, + "id": 21818, "properties": { "east": "low", "north": "low", @@ -32021,7 +41203,7 @@ } }, { - "id": 20035, + "id": 21819, "properties": { "east": "low", "north": "low", @@ -32032,7 +41214,7 @@ } }, { - "id": 20036, + "id": 21820, "properties": { "east": "low", "north": "low", @@ -32043,7 +41225,7 @@ } }, { - "id": 20037, + "id": 21821, "properties": { "east": "low", "north": "low", @@ -32054,7 +41236,7 @@ } }, { - "id": 20038, + "id": 21822, "properties": { "east": "low", "north": "low", @@ -32065,7 +41247,7 @@ } }, { - "id": 20039, + "id": 21823, "properties": { "east": "low", "north": "low", @@ -32076,7 +41258,7 @@ } }, { - "id": 20040, + "id": 21824, "properties": { "east": "low", "north": "low", @@ -32087,7 +41269,7 @@ } }, { - "id": 20041, + "id": 21825, "properties": { "east": "low", "north": "low", @@ -32098,7 +41280,7 @@ } }, { - "id": 20042, + "id": 21826, "properties": { "east": "low", "north": "low", @@ -32109,7 +41291,7 @@ } }, { - "id": 20043, + "id": 21827, "properties": { "east": "low", "north": "low", @@ -32120,7 +41302,7 @@ } }, { - "id": 20044, + "id": 21828, "properties": { "east": "low", "north": "low", @@ -32131,7 +41313,7 @@ } }, { - "id": 20045, + "id": 21829, "properties": { "east": "low", "north": "low", @@ -32142,7 +41324,7 @@ } }, { - "id": 20046, + "id": 21830, "properties": { "east": "low", "north": "low", @@ -32153,7 +41335,7 @@ } }, { - "id": 20047, + "id": 21831, "properties": { "east": "low", "north": "low", @@ -32164,7 +41346,7 @@ } }, { - "id": 20048, + "id": 21832, "properties": { "east": "low", "north": "tall", @@ -32175,7 +41357,7 @@ } }, { - "id": 20049, + "id": 21833, "properties": { "east": "low", "north": "tall", @@ -32186,7 +41368,7 @@ } }, { - "id": 20050, + "id": 21834, "properties": { "east": "low", "north": "tall", @@ -32197,7 +41379,7 @@ } }, { - "id": 20051, + "id": 21835, "properties": { "east": "low", "north": "tall", @@ -32208,7 +41390,7 @@ } }, { - "id": 20052, + "id": 21836, "properties": { "east": "low", "north": "tall", @@ -32219,7 +41401,7 @@ } }, { - "id": 20053, + "id": 21837, "properties": { "east": "low", "north": "tall", @@ -32230,7 +41412,7 @@ } }, { - "id": 20054, + "id": 21838, "properties": { "east": "low", "north": "tall", @@ -32241,7 +41423,7 @@ } }, { - "id": 20055, + "id": 21839, "properties": { "east": "low", "north": "tall", @@ -32252,7 +41434,7 @@ } }, { - "id": 20056, + "id": 21840, "properties": { "east": "low", "north": "tall", @@ -32263,7 +41445,7 @@ } }, { - "id": 20057, + "id": 21841, "properties": { "east": "low", "north": "tall", @@ -32274,7 +41456,7 @@ } }, { - "id": 20058, + "id": 21842, "properties": { "east": "low", "north": "tall", @@ -32285,7 +41467,7 @@ } }, { - "id": 20059, + "id": 21843, "properties": { "east": "low", "north": "tall", @@ -32296,7 +41478,7 @@ } }, { - "id": 20060, + "id": 21844, "properties": { "east": "low", "north": "tall", @@ -32307,7 +41489,7 @@ } }, { - "id": 20061, + "id": 21845, "properties": { "east": "low", "north": "tall", @@ -32318,7 +41500,7 @@ } }, { - "id": 20062, + "id": 21846, "properties": { "east": "low", "north": "tall", @@ -32329,7 +41511,7 @@ } }, { - "id": 20063, + "id": 21847, "properties": { "east": "low", "north": "tall", @@ -32340,7 +41522,7 @@ } }, { - "id": 20064, + "id": 21848, "properties": { "east": "low", "north": "tall", @@ -32351,7 +41533,7 @@ } }, { - "id": 20065, + "id": 21849, "properties": { "east": "low", "north": "tall", @@ -32362,7 +41544,7 @@ } }, { - "id": 20066, + "id": 21850, "properties": { "east": "low", "north": "tall", @@ -32373,7 +41555,7 @@ } }, { - "id": 20067, + "id": 21851, "properties": { "east": "low", "north": "tall", @@ -32384,7 +41566,7 @@ } }, { - "id": 20068, + "id": 21852, "properties": { "east": "low", "north": "tall", @@ -32395,7 +41577,7 @@ } }, { - "id": 20069, + "id": 21853, "properties": { "east": "low", "north": "tall", @@ -32406,7 +41588,7 @@ } }, { - "id": 20070, + "id": 21854, "properties": { "east": "low", "north": "tall", @@ -32417,7 +41599,7 @@ } }, { - "id": 20071, + "id": 21855, "properties": { "east": "low", "north": "tall", @@ -32428,7 +41610,7 @@ } }, { - "id": 20072, + "id": 21856, "properties": { "east": "low", "north": "tall", @@ -32439,7 +41621,7 @@ } }, { - "id": 20073, + "id": 21857, "properties": { "east": "low", "north": "tall", @@ -32450,7 +41632,7 @@ } }, { - "id": 20074, + "id": 21858, "properties": { "east": "low", "north": "tall", @@ -32461,7 +41643,7 @@ } }, { - "id": 20075, + "id": 21859, "properties": { "east": "low", "north": "tall", @@ -32472,7 +41654,7 @@ } }, { - "id": 20076, + "id": 21860, "properties": { "east": "low", "north": "tall", @@ -32483,7 +41665,7 @@ } }, { - "id": 20077, + "id": 21861, "properties": { "east": "low", "north": "tall", @@ -32494,7 +41676,7 @@ } }, { - "id": 20078, + "id": 21862, "properties": { "east": "low", "north": "tall", @@ -32505,7 +41687,7 @@ } }, { - "id": 20079, + "id": 21863, "properties": { "east": "low", "north": "tall", @@ -32516,7 +41698,7 @@ } }, { - "id": 20080, + "id": 21864, "properties": { "east": "low", "north": "tall", @@ -32527,7 +41709,7 @@ } }, { - "id": 20081, + "id": 21865, "properties": { "east": "low", "north": "tall", @@ -32538,7 +41720,7 @@ } }, { - "id": 20082, + "id": 21866, "properties": { "east": "low", "north": "tall", @@ -32549,7 +41731,7 @@ } }, { - "id": 20083, + "id": 21867, "properties": { "east": "low", "north": "tall", @@ -32560,7 +41742,7 @@ } }, { - "id": 20084, + "id": 21868, "properties": { "east": "tall", "north": "none", @@ -32571,7 +41753,7 @@ } }, { - "id": 20085, + "id": 21869, "properties": { "east": "tall", "north": "none", @@ -32582,7 +41764,7 @@ } }, { - "id": 20086, + "id": 21870, "properties": { "east": "tall", "north": "none", @@ -32593,7 +41775,7 @@ } }, { - "id": 20087, + "id": 21871, "properties": { "east": "tall", "north": "none", @@ -32604,7 +41786,7 @@ } }, { - "id": 20088, + "id": 21872, "properties": { "east": "tall", "north": "none", @@ -32615,7 +41797,7 @@ } }, { - "id": 20089, + "id": 21873, "properties": { "east": "tall", "north": "none", @@ -32626,7 +41808,7 @@ } }, { - "id": 20090, + "id": 21874, "properties": { "east": "tall", "north": "none", @@ -32637,7 +41819,7 @@ } }, { - "id": 20091, + "id": 21875, "properties": { "east": "tall", "north": "none", @@ -32648,7 +41830,7 @@ } }, { - "id": 20092, + "id": 21876, "properties": { "east": "tall", "north": "none", @@ -32659,7 +41841,7 @@ } }, { - "id": 20093, + "id": 21877, "properties": { "east": "tall", "north": "none", @@ -32670,7 +41852,7 @@ } }, { - "id": 20094, + "id": 21878, "properties": { "east": "tall", "north": "none", @@ -32681,7 +41863,7 @@ } }, { - "id": 20095, + "id": 21879, "properties": { "east": "tall", "north": "none", @@ -32692,7 +41874,7 @@ } }, { - "id": 20096, + "id": 21880, "properties": { "east": "tall", "north": "none", @@ -32703,7 +41885,7 @@ } }, { - "id": 20097, + "id": 21881, "properties": { "east": "tall", "north": "none", @@ -32714,7 +41896,7 @@ } }, { - "id": 20098, + "id": 21882, "properties": { "east": "tall", "north": "none", @@ -32725,7 +41907,7 @@ } }, { - "id": 20099, + "id": 21883, "properties": { "east": "tall", "north": "none", @@ -32736,7 +41918,7 @@ } }, { - "id": 20100, + "id": 21884, "properties": { "east": "tall", "north": "none", @@ -32747,7 +41929,7 @@ } }, { - "id": 20101, + "id": 21885, "properties": { "east": "tall", "north": "none", @@ -32758,7 +41940,7 @@ } }, { - "id": 20102, + "id": 21886, "properties": { "east": "tall", "north": "none", @@ -32769,7 +41951,7 @@ } }, { - "id": 20103, + "id": 21887, "properties": { "east": "tall", "north": "none", @@ -32780,7 +41962,7 @@ } }, { - "id": 20104, + "id": 21888, "properties": { "east": "tall", "north": "none", @@ -32791,7 +41973,7 @@ } }, { - "id": 20105, + "id": 21889, "properties": { "east": "tall", "north": "none", @@ -32802,7 +41984,7 @@ } }, { - "id": 20106, + "id": 21890, "properties": { "east": "tall", "north": "none", @@ -32813,7 +41995,7 @@ } }, { - "id": 20107, + "id": 21891, "properties": { "east": "tall", "north": "none", @@ -32824,7 +42006,7 @@ } }, { - "id": 20108, + "id": 21892, "properties": { "east": "tall", "north": "none", @@ -32835,7 +42017,7 @@ } }, { - "id": 20109, + "id": 21893, "properties": { "east": "tall", "north": "none", @@ -32846,7 +42028,7 @@ } }, { - "id": 20110, + "id": 21894, "properties": { "east": "tall", "north": "none", @@ -32857,7 +42039,7 @@ } }, { - "id": 20111, + "id": 21895, "properties": { "east": "tall", "north": "none", @@ -32868,7 +42050,7 @@ } }, { - "id": 20112, + "id": 21896, "properties": { "east": "tall", "north": "none", @@ -32879,7 +42061,7 @@ } }, { - "id": 20113, + "id": 21897, "properties": { "east": "tall", "north": "none", @@ -32890,7 +42072,7 @@ } }, { - "id": 20114, + "id": 21898, "properties": { "east": "tall", "north": "none", @@ -32901,7 +42083,7 @@ } }, { - "id": 20115, + "id": 21899, "properties": { "east": "tall", "north": "none", @@ -32912,7 +42094,7 @@ } }, { - "id": 20116, + "id": 21900, "properties": { "east": "tall", "north": "none", @@ -32923,7 +42105,7 @@ } }, { - "id": 20117, + "id": 21901, "properties": { "east": "tall", "north": "none", @@ -32934,7 +42116,7 @@ } }, { - "id": 20118, + "id": 21902, "properties": { "east": "tall", "north": "none", @@ -32945,7 +42127,7 @@ } }, { - "id": 20119, + "id": 21903, "properties": { "east": "tall", "north": "none", @@ -32956,7 +42138,7 @@ } }, { - "id": 20120, + "id": 21904, "properties": { "east": "tall", "north": "low", @@ -32967,7 +42149,7 @@ } }, { - "id": 20121, + "id": 21905, "properties": { "east": "tall", "north": "low", @@ -32978,7 +42160,7 @@ } }, { - "id": 20122, + "id": 21906, "properties": { "east": "tall", "north": "low", @@ -32989,7 +42171,7 @@ } }, { - "id": 20123, + "id": 21907, "properties": { "east": "tall", "north": "low", @@ -33000,7 +42182,7 @@ } }, { - "id": 20124, + "id": 21908, "properties": { "east": "tall", "north": "low", @@ -33011,7 +42193,7 @@ } }, { - "id": 20125, + "id": 21909, "properties": { "east": "tall", "north": "low", @@ -33022,7 +42204,7 @@ } }, { - "id": 20126, + "id": 21910, "properties": { "east": "tall", "north": "low", @@ -33033,7 +42215,7 @@ } }, { - "id": 20127, + "id": 21911, "properties": { "east": "tall", "north": "low", @@ -33044,7 +42226,7 @@ } }, { - "id": 20128, + "id": 21912, "properties": { "east": "tall", "north": "low", @@ -33055,7 +42237,7 @@ } }, { - "id": 20129, + "id": 21913, "properties": { "east": "tall", "north": "low", @@ -33066,7 +42248,7 @@ } }, { - "id": 20130, + "id": 21914, "properties": { "east": "tall", "north": "low", @@ -33077,7 +42259,7 @@ } }, { - "id": 20131, + "id": 21915, "properties": { "east": "tall", "north": "low", @@ -33088,7 +42270,7 @@ } }, { - "id": 20132, + "id": 21916, "properties": { "east": "tall", "north": "low", @@ -33099,7 +42281,7 @@ } }, { - "id": 20133, + "id": 21917, "properties": { "east": "tall", "north": "low", @@ -33110,7 +42292,7 @@ } }, { - "id": 20134, + "id": 21918, "properties": { "east": "tall", "north": "low", @@ -33121,7 +42303,7 @@ } }, { - "id": 20135, + "id": 21919, "properties": { "east": "tall", "north": "low", @@ -33132,7 +42314,7 @@ } }, { - "id": 20136, + "id": 21920, "properties": { "east": "tall", "north": "low", @@ -33143,7 +42325,7 @@ } }, { - "id": 20137, + "id": 21921, "properties": { "east": "tall", "north": "low", @@ -33154,7 +42336,7 @@ } }, { - "id": 20138, + "id": 21922, "properties": { "east": "tall", "north": "low", @@ -33165,7 +42347,7 @@ } }, { - "id": 20139, + "id": 21923, "properties": { "east": "tall", "north": "low", @@ -33176,7 +42358,7 @@ } }, { - "id": 20140, + "id": 21924, "properties": { "east": "tall", "north": "low", @@ -33187,7 +42369,7 @@ } }, { - "id": 20141, + "id": 21925, "properties": { "east": "tall", "north": "low", @@ -33198,7 +42380,7 @@ } }, { - "id": 20142, + "id": 21926, "properties": { "east": "tall", "north": "low", @@ -33209,7 +42391,7 @@ } }, { - "id": 20143, + "id": 21927, "properties": { "east": "tall", "north": "low", @@ -33220,7 +42402,7 @@ } }, { - "id": 20144, + "id": 21928, "properties": { "east": "tall", "north": "low", @@ -33231,7 +42413,7 @@ } }, { - "id": 20145, + "id": 21929, "properties": { "east": "tall", "north": "low", @@ -33242,7 +42424,7 @@ } }, { - "id": 20146, + "id": 21930, "properties": { "east": "tall", "north": "low", @@ -33253,7 +42435,7 @@ } }, { - "id": 20147, + "id": 21931, "properties": { "east": "tall", "north": "low", @@ -33264,7 +42446,7 @@ } }, { - "id": 20148, + "id": 21932, "properties": { "east": "tall", "north": "low", @@ -33275,7 +42457,7 @@ } }, { - "id": 20149, + "id": 21933, "properties": { "east": "tall", "north": "low", @@ -33286,7 +42468,7 @@ } }, { - "id": 20150, + "id": 21934, "properties": { "east": "tall", "north": "low", @@ -33297,7 +42479,7 @@ } }, { - "id": 20151, + "id": 21935, "properties": { "east": "tall", "north": "low", @@ -33308,7 +42490,7 @@ } }, { - "id": 20152, + "id": 21936, "properties": { "east": "tall", "north": "low", @@ -33319,7 +42501,7 @@ } }, { - "id": 20153, + "id": 21937, "properties": { "east": "tall", "north": "low", @@ -33330,7 +42512,7 @@ } }, { - "id": 20154, + "id": 21938, "properties": { "east": "tall", "north": "low", @@ -33341,7 +42523,7 @@ } }, { - "id": 20155, + "id": 21939, "properties": { "east": "tall", "north": "low", @@ -33352,7 +42534,7 @@ } }, { - "id": 20156, + "id": 21940, "properties": { "east": "tall", "north": "tall", @@ -33363,7 +42545,7 @@ } }, { - "id": 20157, + "id": 21941, "properties": { "east": "tall", "north": "tall", @@ -33374,7 +42556,7 @@ } }, { - "id": 20158, + "id": 21942, "properties": { "east": "tall", "north": "tall", @@ -33385,7 +42567,7 @@ } }, { - "id": 20159, + "id": 21943, "properties": { "east": "tall", "north": "tall", @@ -33396,7 +42578,7 @@ } }, { - "id": 20160, + "id": 21944, "properties": { "east": "tall", "north": "tall", @@ -33407,7 +42589,7 @@ } }, { - "id": 20161, + "id": 21945, "properties": { "east": "tall", "north": "tall", @@ -33418,7 +42600,7 @@ } }, { - "id": 20162, + "id": 21946, "properties": { "east": "tall", "north": "tall", @@ -33429,7 +42611,7 @@ } }, { - "id": 20163, + "id": 21947, "properties": { "east": "tall", "north": "tall", @@ -33440,7 +42622,7 @@ } }, { - "id": 20164, + "id": 21948, "properties": { "east": "tall", "north": "tall", @@ -33451,7 +42633,7 @@ } }, { - "id": 20165, + "id": 21949, "properties": { "east": "tall", "north": "tall", @@ -33462,7 +42644,7 @@ } }, { - "id": 20166, + "id": 21950, "properties": { "east": "tall", "north": "tall", @@ -33473,7 +42655,7 @@ } }, { - "id": 20167, + "id": 21951, "properties": { "east": "tall", "north": "tall", @@ -33484,7 +42666,7 @@ } }, { - "id": 20168, + "id": 21952, "properties": { "east": "tall", "north": "tall", @@ -33495,7 +42677,7 @@ } }, { - "id": 20169, + "id": 21953, "properties": { "east": "tall", "north": "tall", @@ -33506,7 +42688,7 @@ } }, { - "id": 20170, + "id": 21954, "properties": { "east": "tall", "north": "tall", @@ -33517,7 +42699,7 @@ } }, { - "id": 20171, + "id": 21955, "properties": { "east": "tall", "north": "tall", @@ -33528,7 +42710,7 @@ } }, { - "id": 20172, + "id": 21956, "properties": { "east": "tall", "north": "tall", @@ -33539,7 +42721,7 @@ } }, { - "id": 20173, + "id": 21957, "properties": { "east": "tall", "north": "tall", @@ -33550,7 +42732,7 @@ } }, { - "id": 20174, + "id": 21958, "properties": { "east": "tall", "north": "tall", @@ -33561,7 +42743,7 @@ } }, { - "id": 20175, + "id": 21959, "properties": { "east": "tall", "north": "tall", @@ -33572,7 +42754,7 @@ } }, { - "id": 20176, + "id": 21960, "properties": { "east": "tall", "north": "tall", @@ -33583,7 +42765,7 @@ } }, { - "id": 20177, + "id": 21961, "properties": { "east": "tall", "north": "tall", @@ -33594,7 +42776,7 @@ } }, { - "id": 20178, + "id": 21962, "properties": { "east": "tall", "north": "tall", @@ -33605,7 +42787,7 @@ } }, { - "id": 20179, + "id": 21963, "properties": { "east": "tall", "north": "tall", @@ -33616,7 +42798,7 @@ } }, { - "id": 20180, + "id": 21964, "properties": { "east": "tall", "north": "tall", @@ -33627,7 +42809,7 @@ } }, { - "id": 20181, + "id": 21965, "properties": { "east": "tall", "north": "tall", @@ -33638,7 +42820,7 @@ } }, { - "id": 20182, + "id": 21966, "properties": { "east": "tall", "north": "tall", @@ -33649,7 +42831,7 @@ } }, { - "id": 20183, + "id": 21967, "properties": { "east": "tall", "north": "tall", @@ -33660,7 +42842,7 @@ } }, { - "id": 20184, + "id": 21968, "properties": { "east": "tall", "north": "tall", @@ -33671,7 +42853,7 @@ } }, { - "id": 20185, + "id": 21969, "properties": { "east": "tall", "north": "tall", @@ -33682,7 +42864,7 @@ } }, { - "id": 20186, + "id": 21970, "properties": { "east": "tall", "north": "tall", @@ -33693,7 +42875,7 @@ } }, { - "id": 20187, + "id": 21971, "properties": { "east": "tall", "north": "tall", @@ -33704,7 +42886,7 @@ } }, { - "id": 20188, + "id": 21972, "properties": { "east": "tall", "north": "tall", @@ -33715,7 +42897,7 @@ } }, { - "id": 20189, + "id": 21973, "properties": { "east": "tall", "north": "tall", @@ -33726,7 +42908,7 @@ } }, { - "id": 20190, + "id": 21974, "properties": { "east": "tall", "north": "tall", @@ -33737,7 +42919,7 @@ } }, { - "id": 20191, + "id": 21975, "properties": { "east": "tall", "north": "tall", @@ -33771,21 +42953,21 @@ }, "states": [ { - "id": 9113, + "id": 10769, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 9114, + "id": 10770, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 9115, + "id": 10771, "properties": { "type": "bottom", "waterlogged": "true" @@ -33793,21 +42975,21 @@ }, { "default": true, - "id": 9116, + "id": 10772, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 9117, + "id": 10773, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 9118, + "id": 10774, "properties": { "type": "double", "waterlogged": "false" @@ -33841,7 +43023,7 @@ }, "states": [ { - "id": 3952, + "id": 4598, "properties": { "facing": "north", "half": "top", @@ -33850,7 +43032,7 @@ } }, { - "id": 3953, + "id": 4599, "properties": { "facing": "north", "half": "top", @@ -33859,7 +43041,7 @@ } }, { - "id": 3954, + "id": 4600, "properties": { "facing": "north", "half": "top", @@ -33868,7 +43050,7 @@ } }, { - "id": 3955, + "id": 4601, "properties": { "facing": "north", "half": "top", @@ -33877,7 +43059,7 @@ } }, { - "id": 3956, + "id": 4602, "properties": { "facing": "north", "half": "top", @@ -33886,7 +43068,7 @@ } }, { - "id": 3957, + "id": 4603, "properties": { "facing": "north", "half": "top", @@ -33895,7 +43077,7 @@ } }, { - "id": 3958, + "id": 4604, "properties": { "facing": "north", "half": "top", @@ -33904,7 +43086,7 @@ } }, { - "id": 3959, + "id": 4605, "properties": { "facing": "north", "half": "top", @@ -33913,7 +43095,7 @@ } }, { - "id": 3960, + "id": 4606, "properties": { "facing": "north", "half": "top", @@ -33922,7 +43104,7 @@ } }, { - "id": 3961, + "id": 4607, "properties": { "facing": "north", "half": "top", @@ -33931,7 +43113,7 @@ } }, { - "id": 3962, + "id": 4608, "properties": { "facing": "north", "half": "bottom", @@ -33941,7 +43123,7 @@ }, { "default": true, - "id": 3963, + "id": 4609, "properties": { "facing": "north", "half": "bottom", @@ -33950,7 +43132,7 @@ } }, { - "id": 3964, + "id": 4610, "properties": { "facing": "north", "half": "bottom", @@ -33959,7 +43141,7 @@ } }, { - "id": 3965, + "id": 4611, "properties": { "facing": "north", "half": "bottom", @@ -33968,7 +43150,7 @@ } }, { - "id": 3966, + "id": 4612, "properties": { "facing": "north", "half": "bottom", @@ -33977,7 +43159,7 @@ } }, { - "id": 3967, + "id": 4613, "properties": { "facing": "north", "half": "bottom", @@ -33986,7 +43168,7 @@ } }, { - "id": 3968, + "id": 4614, "properties": { "facing": "north", "half": "bottom", @@ -33995,7 +43177,7 @@ } }, { - "id": 3969, + "id": 4615, "properties": { "facing": "north", "half": "bottom", @@ -34004,7 +43186,7 @@ } }, { - "id": 3970, + "id": 4616, "properties": { "facing": "north", "half": "bottom", @@ -34013,7 +43195,7 @@ } }, { - "id": 3971, + "id": 4617, "properties": { "facing": "north", "half": "bottom", @@ -34022,7 +43204,7 @@ } }, { - "id": 3972, + "id": 4618, "properties": { "facing": "south", "half": "top", @@ -34031,7 +43213,7 @@ } }, { - "id": 3973, + "id": 4619, "properties": { "facing": "south", "half": "top", @@ -34040,7 +43222,7 @@ } }, { - "id": 3974, + "id": 4620, "properties": { "facing": "south", "half": "top", @@ -34049,7 +43231,7 @@ } }, { - "id": 3975, + "id": 4621, "properties": { "facing": "south", "half": "top", @@ -34058,7 +43240,7 @@ } }, { - "id": 3976, + "id": 4622, "properties": { "facing": "south", "half": "top", @@ -34067,7 +43249,7 @@ } }, { - "id": 3977, + "id": 4623, "properties": { "facing": "south", "half": "top", @@ -34076,7 +43258,7 @@ } }, { - "id": 3978, + "id": 4624, "properties": { "facing": "south", "half": "top", @@ -34085,7 +43267,7 @@ } }, { - "id": 3979, + "id": 4625, "properties": { "facing": "south", "half": "top", @@ -34094,7 +43276,7 @@ } }, { - "id": 3980, + "id": 4626, "properties": { "facing": "south", "half": "top", @@ -34103,7 +43285,7 @@ } }, { - "id": 3981, + "id": 4627, "properties": { "facing": "south", "half": "top", @@ -34112,7 +43294,7 @@ } }, { - "id": 3982, + "id": 4628, "properties": { "facing": "south", "half": "bottom", @@ -34121,7 +43303,7 @@ } }, { - "id": 3983, + "id": 4629, "properties": { "facing": "south", "half": "bottom", @@ -34130,7 +43312,7 @@ } }, { - "id": 3984, + "id": 4630, "properties": { "facing": "south", "half": "bottom", @@ -34139,7 +43321,7 @@ } }, { - "id": 3985, + "id": 4631, "properties": { "facing": "south", "half": "bottom", @@ -34148,7 +43330,7 @@ } }, { - "id": 3986, + "id": 4632, "properties": { "facing": "south", "half": "bottom", @@ -34157,7 +43339,7 @@ } }, { - "id": 3987, + "id": 4633, "properties": { "facing": "south", "half": "bottom", @@ -34166,7 +43348,7 @@ } }, { - "id": 3988, + "id": 4634, "properties": { "facing": "south", "half": "bottom", @@ -34175,7 +43357,7 @@ } }, { - "id": 3989, + "id": 4635, "properties": { "facing": "south", "half": "bottom", @@ -34184,7 +43366,7 @@ } }, { - "id": 3990, + "id": 4636, "properties": { "facing": "south", "half": "bottom", @@ -34193,7 +43375,7 @@ } }, { - "id": 3991, + "id": 4637, "properties": { "facing": "south", "half": "bottom", @@ -34202,7 +43384,7 @@ } }, { - "id": 3992, + "id": 4638, "properties": { "facing": "west", "half": "top", @@ -34211,7 +43393,7 @@ } }, { - "id": 3993, + "id": 4639, "properties": { "facing": "west", "half": "top", @@ -34220,7 +43402,7 @@ } }, { - "id": 3994, + "id": 4640, "properties": { "facing": "west", "half": "top", @@ -34229,7 +43411,7 @@ } }, { - "id": 3995, + "id": 4641, "properties": { "facing": "west", "half": "top", @@ -34238,7 +43420,7 @@ } }, { - "id": 3996, + "id": 4642, "properties": { "facing": "west", "half": "top", @@ -34247,7 +43429,7 @@ } }, { - "id": 3997, + "id": 4643, "properties": { "facing": "west", "half": "top", @@ -34256,7 +43438,7 @@ } }, { - "id": 3998, + "id": 4644, "properties": { "facing": "west", "half": "top", @@ -34265,7 +43447,7 @@ } }, { - "id": 3999, + "id": 4645, "properties": { "facing": "west", "half": "top", @@ -34274,7 +43456,7 @@ } }, { - "id": 4000, + "id": 4646, "properties": { "facing": "west", "half": "top", @@ -34283,7 +43465,7 @@ } }, { - "id": 4001, + "id": 4647, "properties": { "facing": "west", "half": "top", @@ -34292,7 +43474,7 @@ } }, { - "id": 4002, + "id": 4648, "properties": { "facing": "west", "half": "bottom", @@ -34301,7 +43483,7 @@ } }, { - "id": 4003, + "id": 4649, "properties": { "facing": "west", "half": "bottom", @@ -34310,7 +43492,7 @@ } }, { - "id": 4004, + "id": 4650, "properties": { "facing": "west", "half": "bottom", @@ -34319,7 +43501,7 @@ } }, { - "id": 4005, + "id": 4651, "properties": { "facing": "west", "half": "bottom", @@ -34328,7 +43510,7 @@ } }, { - "id": 4006, + "id": 4652, "properties": { "facing": "west", "half": "bottom", @@ -34337,7 +43519,7 @@ } }, { - "id": 4007, + "id": 4653, "properties": { "facing": "west", "half": "bottom", @@ -34346,7 +43528,7 @@ } }, { - "id": 4008, + "id": 4654, "properties": { "facing": "west", "half": "bottom", @@ -34355,7 +43537,7 @@ } }, { - "id": 4009, + "id": 4655, "properties": { "facing": "west", "half": "bottom", @@ -34364,7 +43546,7 @@ } }, { - "id": 4010, + "id": 4656, "properties": { "facing": "west", "half": "bottom", @@ -34373,7 +43555,7 @@ } }, { - "id": 4011, + "id": 4657, "properties": { "facing": "west", "half": "bottom", @@ -34382,7 +43564,7 @@ } }, { - "id": 4012, + "id": 4658, "properties": { "facing": "east", "half": "top", @@ -34391,7 +43573,7 @@ } }, { - "id": 4013, + "id": 4659, "properties": { "facing": "east", "half": "top", @@ -34400,7 +43582,7 @@ } }, { - "id": 4014, + "id": 4660, "properties": { "facing": "east", "half": "top", @@ -34409,7 +43591,7 @@ } }, { - "id": 4015, + "id": 4661, "properties": { "facing": "east", "half": "top", @@ -34418,7 +43600,7 @@ } }, { - "id": 4016, + "id": 4662, "properties": { "facing": "east", "half": "top", @@ -34427,7 +43609,7 @@ } }, { - "id": 4017, + "id": 4663, "properties": { "facing": "east", "half": "top", @@ -34436,7 +43618,7 @@ } }, { - "id": 4018, + "id": 4664, "properties": { "facing": "east", "half": "top", @@ -34445,7 +43627,7 @@ } }, { - "id": 4019, + "id": 4665, "properties": { "facing": "east", "half": "top", @@ -34454,7 +43636,7 @@ } }, { - "id": 4020, + "id": 4666, "properties": { "facing": "east", "half": "top", @@ -34463,7 +43645,7 @@ } }, { - "id": 4021, + "id": 4667, "properties": { "facing": "east", "half": "top", @@ -34472,7 +43654,7 @@ } }, { - "id": 4022, + "id": 4668, "properties": { "facing": "east", "half": "bottom", @@ -34481,7 +43663,7 @@ } }, { - "id": 4023, + "id": 4669, "properties": { "facing": "east", "half": "bottom", @@ -34490,7 +43672,7 @@ } }, { - "id": 4024, + "id": 4670, "properties": { "facing": "east", "half": "bottom", @@ -34499,7 +43681,7 @@ } }, { - "id": 4025, + "id": 4671, "properties": { "facing": "east", "half": "bottom", @@ -34508,7 +43690,7 @@ } }, { - "id": 4026, + "id": 4672, "properties": { "facing": "east", "half": "bottom", @@ -34517,7 +43699,7 @@ } }, { - "id": 4027, + "id": 4673, "properties": { "facing": "east", "half": "bottom", @@ -34526,7 +43708,7 @@ } }, { - "id": 4028, + "id": 4674, "properties": { "facing": "east", "half": "bottom", @@ -34535,7 +43717,7 @@ } }, { - "id": 4029, + "id": 4675, "properties": { "facing": "east", "half": "bottom", @@ -34544,7 +43726,7 @@ } }, { - "id": 4030, + "id": 4676, "properties": { "facing": "east", "half": "bottom", @@ -34553,7 +43735,7 @@ } }, { - "id": 4031, + "id": 4677, "properties": { "facing": "east", "half": "bottom", @@ -34596,7 +43778,7 @@ }, "states": [ { - "id": 6249, + "id": 7689, "properties": { "east": "none", "north": "none", @@ -34607,7 +43789,7 @@ } }, { - "id": 6250, + "id": 7690, "properties": { "east": "none", "north": "none", @@ -34618,7 +43800,7 @@ } }, { - "id": 6251, + "id": 7691, "properties": { "east": "none", "north": "none", @@ -34630,7 +43812,7 @@ }, { "default": true, - "id": 6252, + "id": 7692, "properties": { "east": "none", "north": "none", @@ -34641,7 +43823,7 @@ } }, { - "id": 6253, + "id": 7693, "properties": { "east": "none", "north": "none", @@ -34652,7 +43834,7 @@ } }, { - "id": 6254, + "id": 7694, "properties": { "east": "none", "north": "none", @@ -34663,7 +43845,7 @@ } }, { - "id": 6255, + "id": 7695, "properties": { "east": "none", "north": "none", @@ -34674,7 +43856,7 @@ } }, { - "id": 6256, + "id": 7696, "properties": { "east": "none", "north": "none", @@ -34685,7 +43867,7 @@ } }, { - "id": 6257, + "id": 7697, "properties": { "east": "none", "north": "none", @@ -34696,7 +43878,7 @@ } }, { - "id": 6258, + "id": 7698, "properties": { "east": "none", "north": "none", @@ -34707,7 +43889,7 @@ } }, { - "id": 6259, + "id": 7699, "properties": { "east": "none", "north": "none", @@ -34718,7 +43900,7 @@ } }, { - "id": 6260, + "id": 7700, "properties": { "east": "none", "north": "none", @@ -34729,7 +43911,7 @@ } }, { - "id": 6261, + "id": 7701, "properties": { "east": "none", "north": "none", @@ -34740,7 +43922,7 @@ } }, { - "id": 6262, + "id": 7702, "properties": { "east": "none", "north": "none", @@ -34751,7 +43933,7 @@ } }, { - "id": 6263, + "id": 7703, "properties": { "east": "none", "north": "none", @@ -34762,7 +43944,7 @@ } }, { - "id": 6264, + "id": 7704, "properties": { "east": "none", "north": "none", @@ -34773,7 +43955,7 @@ } }, { - "id": 6265, + "id": 7705, "properties": { "east": "none", "north": "none", @@ -34784,7 +43966,7 @@ } }, { - "id": 6266, + "id": 7706, "properties": { "east": "none", "north": "none", @@ -34795,7 +43977,7 @@ } }, { - "id": 6267, + "id": 7707, "properties": { "east": "none", "north": "none", @@ -34806,7 +43988,7 @@ } }, { - "id": 6268, + "id": 7708, "properties": { "east": "none", "north": "none", @@ -34817,7 +43999,7 @@ } }, { - "id": 6269, + "id": 7709, "properties": { "east": "none", "north": "none", @@ -34828,7 +44010,7 @@ } }, { - "id": 6270, + "id": 7710, "properties": { "east": "none", "north": "none", @@ -34839,7 +44021,7 @@ } }, { - "id": 6271, + "id": 7711, "properties": { "east": "none", "north": "none", @@ -34850,7 +44032,7 @@ } }, { - "id": 6272, + "id": 7712, "properties": { "east": "none", "north": "none", @@ -34861,7 +44043,7 @@ } }, { - "id": 6273, + "id": 7713, "properties": { "east": "none", "north": "none", @@ -34872,7 +44054,7 @@ } }, { - "id": 6274, + "id": 7714, "properties": { "east": "none", "north": "none", @@ -34883,7 +44065,7 @@ } }, { - "id": 6275, + "id": 7715, "properties": { "east": "none", "north": "none", @@ -34894,7 +44076,7 @@ } }, { - "id": 6276, + "id": 7716, "properties": { "east": "none", "north": "none", @@ -34905,7 +44087,7 @@ } }, { - "id": 6277, + "id": 7717, "properties": { "east": "none", "north": "none", @@ -34916,7 +44098,7 @@ } }, { - "id": 6278, + "id": 7718, "properties": { "east": "none", "north": "none", @@ -34927,7 +44109,7 @@ } }, { - "id": 6279, + "id": 7719, "properties": { "east": "none", "north": "none", @@ -34938,7 +44120,7 @@ } }, { - "id": 6280, + "id": 7720, "properties": { "east": "none", "north": "none", @@ -34949,7 +44131,7 @@ } }, { - "id": 6281, + "id": 7721, "properties": { "east": "none", "north": "none", @@ -34960,7 +44142,7 @@ } }, { - "id": 6282, + "id": 7722, "properties": { "east": "none", "north": "none", @@ -34971,7 +44153,7 @@ } }, { - "id": 6283, + "id": 7723, "properties": { "east": "none", "north": "none", @@ -34982,7 +44164,7 @@ } }, { - "id": 6284, + "id": 7724, "properties": { "east": "none", "north": "none", @@ -34993,7 +44175,7 @@ } }, { - "id": 6285, + "id": 7725, "properties": { "east": "none", "north": "low", @@ -35004,7 +44186,7 @@ } }, { - "id": 6286, + "id": 7726, "properties": { "east": "none", "north": "low", @@ -35015,7 +44197,7 @@ } }, { - "id": 6287, + "id": 7727, "properties": { "east": "none", "north": "low", @@ -35026,7 +44208,7 @@ } }, { - "id": 6288, + "id": 7728, "properties": { "east": "none", "north": "low", @@ -35037,7 +44219,7 @@ } }, { - "id": 6289, + "id": 7729, "properties": { "east": "none", "north": "low", @@ -35048,7 +44230,7 @@ } }, { - "id": 6290, + "id": 7730, "properties": { "east": "none", "north": "low", @@ -35059,7 +44241,7 @@ } }, { - "id": 6291, + "id": 7731, "properties": { "east": "none", "north": "low", @@ -35070,7 +44252,7 @@ } }, { - "id": 6292, + "id": 7732, "properties": { "east": "none", "north": "low", @@ -35081,7 +44263,7 @@ } }, { - "id": 6293, + "id": 7733, "properties": { "east": "none", "north": "low", @@ -35092,7 +44274,7 @@ } }, { - "id": 6294, + "id": 7734, "properties": { "east": "none", "north": "low", @@ -35103,7 +44285,7 @@ } }, { - "id": 6295, + "id": 7735, "properties": { "east": "none", "north": "low", @@ -35114,7 +44296,7 @@ } }, { - "id": 6296, + "id": 7736, "properties": { "east": "none", "north": "low", @@ -35125,7 +44307,7 @@ } }, { - "id": 6297, + "id": 7737, "properties": { "east": "none", "north": "low", @@ -35136,7 +44318,7 @@ } }, { - "id": 6298, + "id": 7738, "properties": { "east": "none", "north": "low", @@ -35147,7 +44329,7 @@ } }, { - "id": 6299, + "id": 7739, "properties": { "east": "none", "north": "low", @@ -35158,7 +44340,7 @@ } }, { - "id": 6300, + "id": 7740, "properties": { "east": "none", "north": "low", @@ -35169,7 +44351,7 @@ } }, { - "id": 6301, + "id": 7741, "properties": { "east": "none", "north": "low", @@ -35180,7 +44362,7 @@ } }, { - "id": 6302, + "id": 7742, "properties": { "east": "none", "north": "low", @@ -35191,7 +44373,7 @@ } }, { - "id": 6303, + "id": 7743, "properties": { "east": "none", "north": "low", @@ -35202,7 +44384,7 @@ } }, { - "id": 6304, + "id": 7744, "properties": { "east": "none", "north": "low", @@ -35213,7 +44395,7 @@ } }, { - "id": 6305, + "id": 7745, "properties": { "east": "none", "north": "low", @@ -35224,7 +44406,7 @@ } }, { - "id": 6306, + "id": 7746, "properties": { "east": "none", "north": "low", @@ -35235,7 +44417,7 @@ } }, { - "id": 6307, + "id": 7747, "properties": { "east": "none", "north": "low", @@ -35246,7 +44428,7 @@ } }, { - "id": 6308, + "id": 7748, "properties": { "east": "none", "north": "low", @@ -35257,7 +44439,7 @@ } }, { - "id": 6309, + "id": 7749, "properties": { "east": "none", "north": "low", @@ -35268,7 +44450,7 @@ } }, { - "id": 6310, + "id": 7750, "properties": { "east": "none", "north": "low", @@ -35279,7 +44461,7 @@ } }, { - "id": 6311, + "id": 7751, "properties": { "east": "none", "north": "low", @@ -35290,7 +44472,7 @@ } }, { - "id": 6312, + "id": 7752, "properties": { "east": "none", "north": "low", @@ -35301,7 +44483,7 @@ } }, { - "id": 6313, + "id": 7753, "properties": { "east": "none", "north": "low", @@ -35312,7 +44494,7 @@ } }, { - "id": 6314, + "id": 7754, "properties": { "east": "none", "north": "low", @@ -35323,7 +44505,7 @@ } }, { - "id": 6315, + "id": 7755, "properties": { "east": "none", "north": "low", @@ -35334,7 +44516,7 @@ } }, { - "id": 6316, + "id": 7756, "properties": { "east": "none", "north": "low", @@ -35345,7 +44527,7 @@ } }, { - "id": 6317, + "id": 7757, "properties": { "east": "none", "north": "low", @@ -35356,7 +44538,7 @@ } }, { - "id": 6318, + "id": 7758, "properties": { "east": "none", "north": "low", @@ -35367,7 +44549,7 @@ } }, { - "id": 6319, + "id": 7759, "properties": { "east": "none", "north": "low", @@ -35378,7 +44560,7 @@ } }, { - "id": 6320, + "id": 7760, "properties": { "east": "none", "north": "low", @@ -35389,7 +44571,7 @@ } }, { - "id": 6321, + "id": 7761, "properties": { "east": "none", "north": "tall", @@ -35400,7 +44582,7 @@ } }, { - "id": 6322, + "id": 7762, "properties": { "east": "none", "north": "tall", @@ -35411,7 +44593,7 @@ } }, { - "id": 6323, + "id": 7763, "properties": { "east": "none", "north": "tall", @@ -35422,7 +44604,7 @@ } }, { - "id": 6324, + "id": 7764, "properties": { "east": "none", "north": "tall", @@ -35433,7 +44615,7 @@ } }, { - "id": 6325, + "id": 7765, "properties": { "east": "none", "north": "tall", @@ -35444,7 +44626,7 @@ } }, { - "id": 6326, + "id": 7766, "properties": { "east": "none", "north": "tall", @@ -35455,7 +44637,7 @@ } }, { - "id": 6327, + "id": 7767, "properties": { "east": "none", "north": "tall", @@ -35466,7 +44648,7 @@ } }, { - "id": 6328, + "id": 7768, "properties": { "east": "none", "north": "tall", @@ -35477,7 +44659,7 @@ } }, { - "id": 6329, + "id": 7769, "properties": { "east": "none", "north": "tall", @@ -35488,7 +44670,7 @@ } }, { - "id": 6330, + "id": 7770, "properties": { "east": "none", "north": "tall", @@ -35499,7 +44681,7 @@ } }, { - "id": 6331, + "id": 7771, "properties": { "east": "none", "north": "tall", @@ -35510,7 +44692,7 @@ } }, { - "id": 6332, + "id": 7772, "properties": { "east": "none", "north": "tall", @@ -35521,7 +44703,7 @@ } }, { - "id": 6333, + "id": 7773, "properties": { "east": "none", "north": "tall", @@ -35532,7 +44714,7 @@ } }, { - "id": 6334, + "id": 7774, "properties": { "east": "none", "north": "tall", @@ -35543,7 +44725,7 @@ } }, { - "id": 6335, + "id": 7775, "properties": { "east": "none", "north": "tall", @@ -35554,7 +44736,7 @@ } }, { - "id": 6336, + "id": 7776, "properties": { "east": "none", "north": "tall", @@ -35565,7 +44747,7 @@ } }, { - "id": 6337, + "id": 7777, "properties": { "east": "none", "north": "tall", @@ -35576,7 +44758,7 @@ } }, { - "id": 6338, + "id": 7778, "properties": { "east": "none", "north": "tall", @@ -35587,7 +44769,7 @@ } }, { - "id": 6339, + "id": 7779, "properties": { "east": "none", "north": "tall", @@ -35598,7 +44780,7 @@ } }, { - "id": 6340, + "id": 7780, "properties": { "east": "none", "north": "tall", @@ -35609,7 +44791,7 @@ } }, { - "id": 6341, + "id": 7781, "properties": { "east": "none", "north": "tall", @@ -35620,7 +44802,7 @@ } }, { - "id": 6342, + "id": 7782, "properties": { "east": "none", "north": "tall", @@ -35631,7 +44813,7 @@ } }, { - "id": 6343, + "id": 7783, "properties": { "east": "none", "north": "tall", @@ -35642,7 +44824,7 @@ } }, { - "id": 6344, + "id": 7784, "properties": { "east": "none", "north": "tall", @@ -35653,7 +44835,7 @@ } }, { - "id": 6345, + "id": 7785, "properties": { "east": "none", "north": "tall", @@ -35664,7 +44846,7 @@ } }, { - "id": 6346, + "id": 7786, "properties": { "east": "none", "north": "tall", @@ -35675,7 +44857,7 @@ } }, { - "id": 6347, + "id": 7787, "properties": { "east": "none", "north": "tall", @@ -35686,7 +44868,7 @@ } }, { - "id": 6348, + "id": 7788, "properties": { "east": "none", "north": "tall", @@ -35697,7 +44879,7 @@ } }, { - "id": 6349, + "id": 7789, "properties": { "east": "none", "north": "tall", @@ -35708,7 +44890,7 @@ } }, { - "id": 6350, + "id": 7790, "properties": { "east": "none", "north": "tall", @@ -35719,7 +44901,7 @@ } }, { - "id": 6351, + "id": 7791, "properties": { "east": "none", "north": "tall", @@ -35730,7 +44912,7 @@ } }, { - "id": 6352, + "id": 7792, "properties": { "east": "none", "north": "tall", @@ -35741,7 +44923,7 @@ } }, { - "id": 6353, + "id": 7793, "properties": { "east": "none", "north": "tall", @@ -35752,7 +44934,7 @@ } }, { - "id": 6354, + "id": 7794, "properties": { "east": "none", "north": "tall", @@ -35763,7 +44945,7 @@ } }, { - "id": 6355, + "id": 7795, "properties": { "east": "none", "north": "tall", @@ -35774,7 +44956,7 @@ } }, { - "id": 6356, + "id": 7796, "properties": { "east": "none", "north": "tall", @@ -35785,7 +44967,7 @@ } }, { - "id": 6357, + "id": 7797, "properties": { "east": "low", "north": "none", @@ -35796,7 +44978,7 @@ } }, { - "id": 6358, + "id": 7798, "properties": { "east": "low", "north": "none", @@ -35807,7 +44989,7 @@ } }, { - "id": 6359, + "id": 7799, "properties": { "east": "low", "north": "none", @@ -35818,7 +45000,7 @@ } }, { - "id": 6360, + "id": 7800, "properties": { "east": "low", "north": "none", @@ -35829,7 +45011,7 @@ } }, { - "id": 6361, + "id": 7801, "properties": { "east": "low", "north": "none", @@ -35840,7 +45022,7 @@ } }, { - "id": 6362, + "id": 7802, "properties": { "east": "low", "north": "none", @@ -35851,7 +45033,7 @@ } }, { - "id": 6363, + "id": 7803, "properties": { "east": "low", "north": "none", @@ -35862,7 +45044,7 @@ } }, { - "id": 6364, + "id": 7804, "properties": { "east": "low", "north": "none", @@ -35873,7 +45055,7 @@ } }, { - "id": 6365, + "id": 7805, "properties": { "east": "low", "north": "none", @@ -35884,7 +45066,7 @@ } }, { - "id": 6366, + "id": 7806, "properties": { "east": "low", "north": "none", @@ -35895,7 +45077,7 @@ } }, { - "id": 6367, + "id": 7807, "properties": { "east": "low", "north": "none", @@ -35906,7 +45088,7 @@ } }, { - "id": 6368, + "id": 7808, "properties": { "east": "low", "north": "none", @@ -35917,7 +45099,7 @@ } }, { - "id": 6369, + "id": 7809, "properties": { "east": "low", "north": "none", @@ -35928,7 +45110,7 @@ } }, { - "id": 6370, + "id": 7810, "properties": { "east": "low", "north": "none", @@ -35939,7 +45121,7 @@ } }, { - "id": 6371, + "id": 7811, "properties": { "east": "low", "north": "none", @@ -35950,7 +45132,7 @@ } }, { - "id": 6372, + "id": 7812, "properties": { "east": "low", "north": "none", @@ -35961,7 +45143,7 @@ } }, { - "id": 6373, + "id": 7813, "properties": { "east": "low", "north": "none", @@ -35972,7 +45154,7 @@ } }, { - "id": 6374, + "id": 7814, "properties": { "east": "low", "north": "none", @@ -35983,7 +45165,7 @@ } }, { - "id": 6375, + "id": 7815, "properties": { "east": "low", "north": "none", @@ -35994,7 +45176,7 @@ } }, { - "id": 6376, + "id": 7816, "properties": { "east": "low", "north": "none", @@ -36005,7 +45187,7 @@ } }, { - "id": 6377, + "id": 7817, "properties": { "east": "low", "north": "none", @@ -36016,7 +45198,7 @@ } }, { - "id": 6378, + "id": 7818, "properties": { "east": "low", "north": "none", @@ -36027,7 +45209,7 @@ } }, { - "id": 6379, + "id": 7819, "properties": { "east": "low", "north": "none", @@ -36038,7 +45220,7 @@ } }, { - "id": 6380, + "id": 7820, "properties": { "east": "low", "north": "none", @@ -36049,7 +45231,7 @@ } }, { - "id": 6381, + "id": 7821, "properties": { "east": "low", "north": "none", @@ -36060,7 +45242,7 @@ } }, { - "id": 6382, + "id": 7822, "properties": { "east": "low", "north": "none", @@ -36071,7 +45253,7 @@ } }, { - "id": 6383, + "id": 7823, "properties": { "east": "low", "north": "none", @@ -36082,7 +45264,7 @@ } }, { - "id": 6384, + "id": 7824, "properties": { "east": "low", "north": "none", @@ -36093,7 +45275,7 @@ } }, { - "id": 6385, + "id": 7825, "properties": { "east": "low", "north": "none", @@ -36104,7 +45286,7 @@ } }, { - "id": 6386, + "id": 7826, "properties": { "east": "low", "north": "none", @@ -36115,7 +45297,7 @@ } }, { - "id": 6387, + "id": 7827, "properties": { "east": "low", "north": "none", @@ -36126,7 +45308,7 @@ } }, { - "id": 6388, + "id": 7828, "properties": { "east": "low", "north": "none", @@ -36137,7 +45319,7 @@ } }, { - "id": 6389, + "id": 7829, "properties": { "east": "low", "north": "none", @@ -36148,7 +45330,7 @@ } }, { - "id": 6390, + "id": 7830, "properties": { "east": "low", "north": "none", @@ -36159,7 +45341,7 @@ } }, { - "id": 6391, + "id": 7831, "properties": { "east": "low", "north": "none", @@ -36170,7 +45352,7 @@ } }, { - "id": 6392, + "id": 7832, "properties": { "east": "low", "north": "none", @@ -36181,7 +45363,7 @@ } }, { - "id": 6393, + "id": 7833, "properties": { "east": "low", "north": "low", @@ -36192,7 +45374,7 @@ } }, { - "id": 6394, + "id": 7834, "properties": { "east": "low", "north": "low", @@ -36203,7 +45385,7 @@ } }, { - "id": 6395, + "id": 7835, "properties": { "east": "low", "north": "low", @@ -36214,7 +45396,7 @@ } }, { - "id": 6396, + "id": 7836, "properties": { "east": "low", "north": "low", @@ -36225,7 +45407,7 @@ } }, { - "id": 6397, + "id": 7837, "properties": { "east": "low", "north": "low", @@ -36236,7 +45418,7 @@ } }, { - "id": 6398, + "id": 7838, "properties": { "east": "low", "north": "low", @@ -36247,7 +45429,7 @@ } }, { - "id": 6399, + "id": 7839, "properties": { "east": "low", "north": "low", @@ -36258,7 +45440,7 @@ } }, { - "id": 6400, + "id": 7840, "properties": { "east": "low", "north": "low", @@ -36269,7 +45451,7 @@ } }, { - "id": 6401, + "id": 7841, "properties": { "east": "low", "north": "low", @@ -36280,7 +45462,7 @@ } }, { - "id": 6402, + "id": 7842, "properties": { "east": "low", "north": "low", @@ -36291,7 +45473,7 @@ } }, { - "id": 6403, + "id": 7843, "properties": { "east": "low", "north": "low", @@ -36302,7 +45484,7 @@ } }, { - "id": 6404, + "id": 7844, "properties": { "east": "low", "north": "low", @@ -36313,7 +45495,7 @@ } }, { - "id": 6405, + "id": 7845, "properties": { "east": "low", "north": "low", @@ -36324,7 +45506,7 @@ } }, { - "id": 6406, + "id": 7846, "properties": { "east": "low", "north": "low", @@ -36335,7 +45517,7 @@ } }, { - "id": 6407, + "id": 7847, "properties": { "east": "low", "north": "low", @@ -36346,7 +45528,7 @@ } }, { - "id": 6408, + "id": 7848, "properties": { "east": "low", "north": "low", @@ -36357,7 +45539,7 @@ } }, { - "id": 6409, + "id": 7849, "properties": { "east": "low", "north": "low", @@ -36368,7 +45550,7 @@ } }, { - "id": 6410, + "id": 7850, "properties": { "east": "low", "north": "low", @@ -36379,7 +45561,7 @@ } }, { - "id": 6411, + "id": 7851, "properties": { "east": "low", "north": "low", @@ -36390,7 +45572,7 @@ } }, { - "id": 6412, + "id": 7852, "properties": { "east": "low", "north": "low", @@ -36401,7 +45583,7 @@ } }, { - "id": 6413, + "id": 7853, "properties": { "east": "low", "north": "low", @@ -36412,7 +45594,7 @@ } }, { - "id": 6414, + "id": 7854, "properties": { "east": "low", "north": "low", @@ -36423,7 +45605,7 @@ } }, { - "id": 6415, + "id": 7855, "properties": { "east": "low", "north": "low", @@ -36434,7 +45616,7 @@ } }, { - "id": 6416, + "id": 7856, "properties": { "east": "low", "north": "low", @@ -36445,7 +45627,7 @@ } }, { - "id": 6417, + "id": 7857, "properties": { "east": "low", "north": "low", @@ -36456,7 +45638,7 @@ } }, { - "id": 6418, + "id": 7858, "properties": { "east": "low", "north": "low", @@ -36467,7 +45649,7 @@ } }, { - "id": 6419, + "id": 7859, "properties": { "east": "low", "north": "low", @@ -36478,7 +45660,7 @@ } }, { - "id": 6420, + "id": 7860, "properties": { "east": "low", "north": "low", @@ -36489,7 +45671,7 @@ } }, { - "id": 6421, + "id": 7861, "properties": { "east": "low", "north": "low", @@ -36500,7 +45682,7 @@ } }, { - "id": 6422, + "id": 7862, "properties": { "east": "low", "north": "low", @@ -36511,7 +45693,7 @@ } }, { - "id": 6423, + "id": 7863, "properties": { "east": "low", "north": "low", @@ -36522,7 +45704,7 @@ } }, { - "id": 6424, + "id": 7864, "properties": { "east": "low", "north": "low", @@ -36533,7 +45715,7 @@ } }, { - "id": 6425, + "id": 7865, "properties": { "east": "low", "north": "low", @@ -36544,7 +45726,7 @@ } }, { - "id": 6426, + "id": 7866, "properties": { "east": "low", "north": "low", @@ -36555,7 +45737,7 @@ } }, { - "id": 6427, + "id": 7867, "properties": { "east": "low", "north": "low", @@ -36566,7 +45748,7 @@ } }, { - "id": 6428, + "id": 7868, "properties": { "east": "low", "north": "low", @@ -36577,7 +45759,7 @@ } }, { - "id": 6429, + "id": 7869, "properties": { "east": "low", "north": "tall", @@ -36588,7 +45770,7 @@ } }, { - "id": 6430, + "id": 7870, "properties": { "east": "low", "north": "tall", @@ -36599,7 +45781,7 @@ } }, { - "id": 6431, + "id": 7871, "properties": { "east": "low", "north": "tall", @@ -36610,7 +45792,7 @@ } }, { - "id": 6432, + "id": 7872, "properties": { "east": "low", "north": "tall", @@ -36621,7 +45803,7 @@ } }, { - "id": 6433, + "id": 7873, "properties": { "east": "low", "north": "tall", @@ -36632,7 +45814,7 @@ } }, { - "id": 6434, + "id": 7874, "properties": { "east": "low", "north": "tall", @@ -36643,7 +45825,7 @@ } }, { - "id": 6435, + "id": 7875, "properties": { "east": "low", "north": "tall", @@ -36654,7 +45836,7 @@ } }, { - "id": 6436, + "id": 7876, "properties": { "east": "low", "north": "tall", @@ -36665,7 +45847,7 @@ } }, { - "id": 6437, + "id": 7877, "properties": { "east": "low", "north": "tall", @@ -36676,7 +45858,7 @@ } }, { - "id": 6438, + "id": 7878, "properties": { "east": "low", "north": "tall", @@ -36687,7 +45869,7 @@ } }, { - "id": 6439, + "id": 7879, "properties": { "east": "low", "north": "tall", @@ -36698,7 +45880,7 @@ } }, { - "id": 6440, + "id": 7880, "properties": { "east": "low", "north": "tall", @@ -36709,7 +45891,7 @@ } }, { - "id": 6441, + "id": 7881, "properties": { "east": "low", "north": "tall", @@ -36720,7 +45902,7 @@ } }, { - "id": 6442, + "id": 7882, "properties": { "east": "low", "north": "tall", @@ -36731,7 +45913,7 @@ } }, { - "id": 6443, + "id": 7883, "properties": { "east": "low", "north": "tall", @@ -36742,7 +45924,7 @@ } }, { - "id": 6444, + "id": 7884, "properties": { "east": "low", "north": "tall", @@ -36753,7 +45935,7 @@ } }, { - "id": 6445, + "id": 7885, "properties": { "east": "low", "north": "tall", @@ -36764,7 +45946,7 @@ } }, { - "id": 6446, + "id": 7886, "properties": { "east": "low", "north": "tall", @@ -36775,7 +45957,7 @@ } }, { - "id": 6447, + "id": 7887, "properties": { "east": "low", "north": "tall", @@ -36786,7 +45968,7 @@ } }, { - "id": 6448, + "id": 7888, "properties": { "east": "low", "north": "tall", @@ -36797,7 +45979,7 @@ } }, { - "id": 6449, + "id": 7889, "properties": { "east": "low", "north": "tall", @@ -36808,7 +45990,7 @@ } }, { - "id": 6450, + "id": 7890, "properties": { "east": "low", "north": "tall", @@ -36819,7 +46001,7 @@ } }, { - "id": 6451, + "id": 7891, "properties": { "east": "low", "north": "tall", @@ -36830,7 +46012,7 @@ } }, { - "id": 6452, + "id": 7892, "properties": { "east": "low", "north": "tall", @@ -36841,7 +46023,7 @@ } }, { - "id": 6453, + "id": 7893, "properties": { "east": "low", "north": "tall", @@ -36852,7 +46034,7 @@ } }, { - "id": 6454, + "id": 7894, "properties": { "east": "low", "north": "tall", @@ -36863,7 +46045,7 @@ } }, { - "id": 6455, + "id": 7895, "properties": { "east": "low", "north": "tall", @@ -36874,7 +46056,7 @@ } }, { - "id": 6456, + "id": 7896, "properties": { "east": "low", "north": "tall", @@ -36885,7 +46067,7 @@ } }, { - "id": 6457, + "id": 7897, "properties": { "east": "low", "north": "tall", @@ -36896,7 +46078,7 @@ } }, { - "id": 6458, + "id": 7898, "properties": { "east": "low", "north": "tall", @@ -36907,7 +46089,7 @@ } }, { - "id": 6459, + "id": 7899, "properties": { "east": "low", "north": "tall", @@ -36918,7 +46100,7 @@ } }, { - "id": 6460, + "id": 7900, "properties": { "east": "low", "north": "tall", @@ -36929,7 +46111,7 @@ } }, { - "id": 6461, + "id": 7901, "properties": { "east": "low", "north": "tall", @@ -36940,7 +46122,7 @@ } }, { - "id": 6462, + "id": 7902, "properties": { "east": "low", "north": "tall", @@ -36951,7 +46133,7 @@ } }, { - "id": 6463, + "id": 7903, "properties": { "east": "low", "north": "tall", @@ -36962,7 +46144,7 @@ } }, { - "id": 6464, + "id": 7904, "properties": { "east": "low", "north": "tall", @@ -36973,7 +46155,7 @@ } }, { - "id": 6465, + "id": 7905, "properties": { "east": "tall", "north": "none", @@ -36984,7 +46166,7 @@ } }, { - "id": 6466, + "id": 7906, "properties": { "east": "tall", "north": "none", @@ -36995,7 +46177,7 @@ } }, { - "id": 6467, + "id": 7907, "properties": { "east": "tall", "north": "none", @@ -37006,7 +46188,7 @@ } }, { - "id": 6468, + "id": 7908, "properties": { "east": "tall", "north": "none", @@ -37017,7 +46199,7 @@ } }, { - "id": 6469, + "id": 7909, "properties": { "east": "tall", "north": "none", @@ -37028,7 +46210,7 @@ } }, { - "id": 6470, + "id": 7910, "properties": { "east": "tall", "north": "none", @@ -37039,7 +46221,7 @@ } }, { - "id": 6471, + "id": 7911, "properties": { "east": "tall", "north": "none", @@ -37050,7 +46232,7 @@ } }, { - "id": 6472, + "id": 7912, "properties": { "east": "tall", "north": "none", @@ -37061,7 +46243,7 @@ } }, { - "id": 6473, + "id": 7913, "properties": { "east": "tall", "north": "none", @@ -37072,7 +46254,7 @@ } }, { - "id": 6474, + "id": 7914, "properties": { "east": "tall", "north": "none", @@ -37083,7 +46265,7 @@ } }, { - "id": 6475, + "id": 7915, "properties": { "east": "tall", "north": "none", @@ -37094,7 +46276,7 @@ } }, { - "id": 6476, + "id": 7916, "properties": { "east": "tall", "north": "none", @@ -37105,7 +46287,7 @@ } }, { - "id": 6477, + "id": 7917, "properties": { "east": "tall", "north": "none", @@ -37116,7 +46298,7 @@ } }, { - "id": 6478, + "id": 7918, "properties": { "east": "tall", "north": "none", @@ -37127,7 +46309,7 @@ } }, { - "id": 6479, + "id": 7919, "properties": { "east": "tall", "north": "none", @@ -37138,7 +46320,7 @@ } }, { - "id": 6480, + "id": 7920, "properties": { "east": "tall", "north": "none", @@ -37149,7 +46331,7 @@ } }, { - "id": 6481, + "id": 7921, "properties": { "east": "tall", "north": "none", @@ -37160,7 +46342,7 @@ } }, { - "id": 6482, + "id": 7922, "properties": { "east": "tall", "north": "none", @@ -37171,7 +46353,7 @@ } }, { - "id": 6483, + "id": 7923, "properties": { "east": "tall", "north": "none", @@ -37182,7 +46364,7 @@ } }, { - "id": 6484, + "id": 7924, "properties": { "east": "tall", "north": "none", @@ -37193,7 +46375,7 @@ } }, { - "id": 6485, + "id": 7925, "properties": { "east": "tall", "north": "none", @@ -37204,7 +46386,7 @@ } }, { - "id": 6486, + "id": 7926, "properties": { "east": "tall", "north": "none", @@ -37215,7 +46397,7 @@ } }, { - "id": 6487, + "id": 7927, "properties": { "east": "tall", "north": "none", @@ -37226,7 +46408,7 @@ } }, { - "id": 6488, + "id": 7928, "properties": { "east": "tall", "north": "none", @@ -37237,7 +46419,7 @@ } }, { - "id": 6489, + "id": 7929, "properties": { "east": "tall", "north": "none", @@ -37248,7 +46430,7 @@ } }, { - "id": 6490, + "id": 7930, "properties": { "east": "tall", "north": "none", @@ -37259,7 +46441,7 @@ } }, { - "id": 6491, + "id": 7931, "properties": { "east": "tall", "north": "none", @@ -37270,7 +46452,7 @@ } }, { - "id": 6492, + "id": 7932, "properties": { "east": "tall", "north": "none", @@ -37281,7 +46463,7 @@ } }, { - "id": 6493, + "id": 7933, "properties": { "east": "tall", "north": "none", @@ -37292,7 +46474,7 @@ } }, { - "id": 6494, + "id": 7934, "properties": { "east": "tall", "north": "none", @@ -37303,7 +46485,7 @@ } }, { - "id": 6495, + "id": 7935, "properties": { "east": "tall", "north": "none", @@ -37314,7 +46496,7 @@ } }, { - "id": 6496, + "id": 7936, "properties": { "east": "tall", "north": "none", @@ -37325,7 +46507,7 @@ } }, { - "id": 6497, + "id": 7937, "properties": { "east": "tall", "north": "none", @@ -37336,7 +46518,7 @@ } }, { - "id": 6498, + "id": 7938, "properties": { "east": "tall", "north": "none", @@ -37347,7 +46529,7 @@ } }, { - "id": 6499, + "id": 7939, "properties": { "east": "tall", "north": "none", @@ -37358,7 +46540,7 @@ } }, { - "id": 6500, + "id": 7940, "properties": { "east": "tall", "north": "none", @@ -37369,7 +46551,7 @@ } }, { - "id": 6501, + "id": 7941, "properties": { "east": "tall", "north": "low", @@ -37380,7 +46562,7 @@ } }, { - "id": 6502, + "id": 7942, "properties": { "east": "tall", "north": "low", @@ -37391,7 +46573,7 @@ } }, { - "id": 6503, + "id": 7943, "properties": { "east": "tall", "north": "low", @@ -37402,7 +46584,7 @@ } }, { - "id": 6504, + "id": 7944, "properties": { "east": "tall", "north": "low", @@ -37413,7 +46595,7 @@ } }, { - "id": 6505, + "id": 7945, "properties": { "east": "tall", "north": "low", @@ -37424,7 +46606,7 @@ } }, { - "id": 6506, + "id": 7946, "properties": { "east": "tall", "north": "low", @@ -37435,7 +46617,7 @@ } }, { - "id": 6507, + "id": 7947, "properties": { "east": "tall", "north": "low", @@ -37446,7 +46628,7 @@ } }, { - "id": 6508, + "id": 7948, "properties": { "east": "tall", "north": "low", @@ -37457,7 +46639,7 @@ } }, { - "id": 6509, + "id": 7949, "properties": { "east": "tall", "north": "low", @@ -37468,7 +46650,7 @@ } }, { - "id": 6510, + "id": 7950, "properties": { "east": "tall", "north": "low", @@ -37479,7 +46661,7 @@ } }, { - "id": 6511, + "id": 7951, "properties": { "east": "tall", "north": "low", @@ -37490,7 +46672,7 @@ } }, { - "id": 6512, + "id": 7952, "properties": { "east": "tall", "north": "low", @@ -37501,7 +46683,7 @@ } }, { - "id": 6513, + "id": 7953, "properties": { "east": "tall", "north": "low", @@ -37512,7 +46694,7 @@ } }, { - "id": 6514, + "id": 7954, "properties": { "east": "tall", "north": "low", @@ -37523,7 +46705,7 @@ } }, { - "id": 6515, + "id": 7955, "properties": { "east": "tall", "north": "low", @@ -37534,7 +46716,7 @@ } }, { - "id": 6516, + "id": 7956, "properties": { "east": "tall", "north": "low", @@ -37545,7 +46727,7 @@ } }, { - "id": 6517, + "id": 7957, "properties": { "east": "tall", "north": "low", @@ -37556,7 +46738,7 @@ } }, { - "id": 6518, + "id": 7958, "properties": { "east": "tall", "north": "low", @@ -37567,7 +46749,7 @@ } }, { - "id": 6519, + "id": 7959, "properties": { "east": "tall", "north": "low", @@ -37578,7 +46760,7 @@ } }, { - "id": 6520, + "id": 7960, "properties": { "east": "tall", "north": "low", @@ -37589,7 +46771,7 @@ } }, { - "id": 6521, + "id": 7961, "properties": { "east": "tall", "north": "low", @@ -37600,7 +46782,7 @@ } }, { - "id": 6522, + "id": 7962, "properties": { "east": "tall", "north": "low", @@ -37611,7 +46793,7 @@ } }, { - "id": 6523, + "id": 7963, "properties": { "east": "tall", "north": "low", @@ -37622,7 +46804,7 @@ } }, { - "id": 6524, + "id": 7964, "properties": { "east": "tall", "north": "low", @@ -37633,7 +46815,7 @@ } }, { - "id": 6525, + "id": 7965, "properties": { "east": "tall", "north": "low", @@ -37644,7 +46826,7 @@ } }, { - "id": 6526, + "id": 7966, "properties": { "east": "tall", "north": "low", @@ -37655,7 +46837,7 @@ } }, { - "id": 6527, + "id": 7967, "properties": { "east": "tall", "north": "low", @@ -37666,7 +46848,7 @@ } }, { - "id": 6528, + "id": 7968, "properties": { "east": "tall", "north": "low", @@ -37677,7 +46859,7 @@ } }, { - "id": 6529, + "id": 7969, "properties": { "east": "tall", "north": "low", @@ -37688,7 +46870,7 @@ } }, { - "id": 6530, + "id": 7970, "properties": { "east": "tall", "north": "low", @@ -37699,7 +46881,7 @@ } }, { - "id": 6531, + "id": 7971, "properties": { "east": "tall", "north": "low", @@ -37710,7 +46892,7 @@ } }, { - "id": 6532, + "id": 7972, "properties": { "east": "tall", "north": "low", @@ -37721,7 +46903,7 @@ } }, { - "id": 6533, + "id": 7973, "properties": { "east": "tall", "north": "low", @@ -37732,7 +46914,7 @@ } }, { - "id": 6534, + "id": 7974, "properties": { "east": "tall", "north": "low", @@ -37743,7 +46925,7 @@ } }, { - "id": 6535, + "id": 7975, "properties": { "east": "tall", "north": "low", @@ -37754,7 +46936,7 @@ } }, { - "id": 6536, + "id": 7976, "properties": { "east": "tall", "north": "low", @@ -37765,7 +46947,7 @@ } }, { - "id": 6537, + "id": 7977, "properties": { "east": "tall", "north": "tall", @@ -37776,7 +46958,7 @@ } }, { - "id": 6538, + "id": 7978, "properties": { "east": "tall", "north": "tall", @@ -37787,7 +46969,7 @@ } }, { - "id": 6539, + "id": 7979, "properties": { "east": "tall", "north": "tall", @@ -37798,7 +46980,7 @@ } }, { - "id": 6540, + "id": 7980, "properties": { "east": "tall", "north": "tall", @@ -37809,7 +46991,7 @@ } }, { - "id": 6541, + "id": 7981, "properties": { "east": "tall", "north": "tall", @@ -37820,7 +47002,7 @@ } }, { - "id": 6542, + "id": 7982, "properties": { "east": "tall", "north": "tall", @@ -37831,7 +47013,7 @@ } }, { - "id": 6543, + "id": 7983, "properties": { "east": "tall", "north": "tall", @@ -37842,7 +47024,7 @@ } }, { - "id": 6544, + "id": 7984, "properties": { "east": "tall", "north": "tall", @@ -37853,7 +47035,7 @@ } }, { - "id": 6545, + "id": 7985, "properties": { "east": "tall", "north": "tall", @@ -37864,7 +47046,7 @@ } }, { - "id": 6546, + "id": 7986, "properties": { "east": "tall", "north": "tall", @@ -37875,7 +47057,7 @@ } }, { - "id": 6547, + "id": 7987, "properties": { "east": "tall", "north": "tall", @@ -37886,7 +47068,7 @@ } }, { - "id": 6548, + "id": 7988, "properties": { "east": "tall", "north": "tall", @@ -37897,7 +47079,7 @@ } }, { - "id": 6549, + "id": 7989, "properties": { "east": "tall", "north": "tall", @@ -37908,7 +47090,7 @@ } }, { - "id": 6550, + "id": 7990, "properties": { "east": "tall", "north": "tall", @@ -37919,7 +47101,7 @@ } }, { - "id": 6551, + "id": 7991, "properties": { "east": "tall", "north": "tall", @@ -37930,7 +47112,7 @@ } }, { - "id": 6552, + "id": 7992, "properties": { "east": "tall", "north": "tall", @@ -37941,7 +47123,7 @@ } }, { - "id": 6553, + "id": 7993, "properties": { "east": "tall", "north": "tall", @@ -37952,7 +47134,7 @@ } }, { - "id": 6554, + "id": 7994, "properties": { "east": "tall", "north": "tall", @@ -37963,7 +47145,7 @@ } }, { - "id": 6555, + "id": 7995, "properties": { "east": "tall", "north": "tall", @@ -37974,7 +47156,7 @@ } }, { - "id": 6556, + "id": 7996, "properties": { "east": "tall", "north": "tall", @@ -37985,7 +47167,7 @@ } }, { - "id": 6557, + "id": 7997, "properties": { "east": "tall", "north": "tall", @@ -37996,7 +47178,7 @@ } }, { - "id": 6558, + "id": 7998, "properties": { "east": "tall", "north": "tall", @@ -38007,7 +47189,7 @@ } }, { - "id": 6559, + "id": 7999, "properties": { "east": "tall", "north": "tall", @@ -38018,7 +47200,7 @@ } }, { - "id": 6560, + "id": 8000, "properties": { "east": "tall", "north": "tall", @@ -38029,7 +47211,7 @@ } }, { - "id": 6561, + "id": 8001, "properties": { "east": "tall", "north": "tall", @@ -38040,7 +47222,7 @@ } }, { - "id": 6562, + "id": 8002, "properties": { "east": "tall", "north": "tall", @@ -38051,7 +47233,7 @@ } }, { - "id": 6563, + "id": 8003, "properties": { "east": "tall", "north": "tall", @@ -38062,7 +47244,7 @@ } }, { - "id": 6564, + "id": 8004, "properties": { "east": "tall", "north": "tall", @@ -38073,7 +47255,7 @@ } }, { - "id": 6565, + "id": 8005, "properties": { "east": "tall", "north": "tall", @@ -38084,7 +47266,7 @@ } }, { - "id": 6566, + "id": 8006, "properties": { "east": "tall", "north": "tall", @@ -38095,7 +47277,7 @@ } }, { - "id": 6567, + "id": 8007, "properties": { "east": "tall", "north": "tall", @@ -38106,7 +47288,7 @@ } }, { - "id": 6568, + "id": 8008, "properties": { "east": "tall", "north": "tall", @@ -38117,7 +47299,7 @@ } }, { - "id": 6569, + "id": 8009, "properties": { "east": "tall", "north": "tall", @@ -38128,7 +47310,7 @@ } }, { - "id": 6570, + "id": 8010, "properties": { "east": "tall", "north": "tall", @@ -38139,7 +47321,7 @@ } }, { - "id": 6571, + "id": 8011, "properties": { "east": "tall", "north": "tall", @@ -38150,7 +47332,7 @@ } }, { - "id": 6572, + "id": 8012, "properties": { "east": "tall", "north": "tall", @@ -38166,7 +47348,7 @@ "states": [ { "default": true, - "id": 1595 + "id": 1953 } ] }, @@ -38187,84 +47369,84 @@ "states": [ { "default": true, - "id": 5749, + "id": 7189, "properties": { "age": "0", "facing": "north" } }, { - "id": 5750, + "id": 7190, "properties": { "age": "0", "facing": "south" } }, { - "id": 5751, + "id": 7191, "properties": { "age": "0", "facing": "west" } }, { - "id": 5752, + "id": 7192, "properties": { "age": "0", "facing": "east" } }, { - "id": 5753, + "id": 7193, "properties": { "age": "1", "facing": "north" } }, { - "id": 5754, + "id": 7194, "properties": { "age": "1", "facing": "south" } }, { - "id": 5755, + "id": 7195, "properties": { "age": "1", "facing": "west" } }, { - "id": 5756, + "id": 7196, "properties": { "age": "1", "facing": "east" } }, { - "id": 5757, + "id": 7197, "properties": { "age": "2", "facing": "north" } }, { - "id": 5758, + "id": 7198, "properties": { "age": "2", "facing": "south" } }, { - "id": 5759, + "id": 7199, "properties": { "age": "2", "facing": "west" } }, { - "id": 5760, + "id": 7200, "properties": { "age": "2", "facing": "east" @@ -38289,42 +47471,42 @@ }, "states": [ { - "id": 6236, + "id": 7676, "properties": { "conditional": "true", "facing": "north" } }, { - "id": 6237, + "id": 7677, "properties": { "conditional": "true", "facing": "east" } }, { - "id": 6238, + "id": 7678, "properties": { "conditional": "true", "facing": "south" } }, { - "id": 6239, + "id": 7679, "properties": { "conditional": "true", "facing": "west" } }, { - "id": 6240, + "id": 7680, "properties": { "conditional": "true", "facing": "up" } }, { - "id": 6241, + "id": 7681, "properties": { "conditional": "true", "facing": "down" @@ -38332,42 +47514,42 @@ }, { "default": true, - "id": 6242, + "id": 7682, "properties": { "conditional": "false", "facing": "north" } }, { - "id": 6243, + "id": 7683, "properties": { "conditional": "false", "facing": "east" } }, { - "id": 6244, + "id": 7684, "properties": { "conditional": "false", "facing": "south" } }, { - "id": 6245, + "id": 7685, "properties": { "conditional": "false", "facing": "west" } }, { - "id": 6246, + "id": 7686, "properties": { "conditional": "false", "facing": "up" } }, { - "id": 6247, + "id": 7687, "properties": { "conditional": "false", "facing": "down" @@ -38394,7 +47576,7 @@ }, "states": [ { - "id": 7295, + "id": 8779, "properties": { "facing": "north", "mode": "compare", @@ -38403,7 +47585,7 @@ }, { "default": true, - "id": 7296, + "id": 8780, "properties": { "facing": "north", "mode": "compare", @@ -38411,7 +47593,7 @@ } }, { - "id": 7297, + "id": 8781, "properties": { "facing": "north", "mode": "subtract", @@ -38419,7 +47601,7 @@ } }, { - "id": 7298, + "id": 8782, "properties": { "facing": "north", "mode": "subtract", @@ -38427,7 +47609,7 @@ } }, { - "id": 7299, + "id": 8783, "properties": { "facing": "south", "mode": "compare", @@ -38435,7 +47617,7 @@ } }, { - "id": 7300, + "id": 8784, "properties": { "facing": "south", "mode": "compare", @@ -38443,7 +47625,7 @@ } }, { - "id": 7301, + "id": 8785, "properties": { "facing": "south", "mode": "subtract", @@ -38451,7 +47633,7 @@ } }, { - "id": 7302, + "id": 8786, "properties": { "facing": "south", "mode": "subtract", @@ -38459,7 +47641,7 @@ } }, { - "id": 7303, + "id": 8787, "properties": { "facing": "west", "mode": "compare", @@ -38467,7 +47649,7 @@ } }, { - "id": 7304, + "id": 8788, "properties": { "facing": "west", "mode": "compare", @@ -38475,7 +47657,7 @@ } }, { - "id": 7305, + "id": 8789, "properties": { "facing": "west", "mode": "subtract", @@ -38483,7 +47665,7 @@ } }, { - "id": 7306, + "id": 8790, "properties": { "facing": "west", "mode": "subtract", @@ -38491,7 +47673,7 @@ } }, { - "id": 7307, + "id": 8791, "properties": { "facing": "east", "mode": "compare", @@ -38499,7 +47681,7 @@ } }, { - "id": 7308, + "id": 8792, "properties": { "facing": "east", "mode": "compare", @@ -38507,7 +47689,7 @@ } }, { - "id": 7309, + "id": 8793, "properties": { "facing": "east", "mode": "subtract", @@ -38515,7 +47697,7 @@ } }, { - "id": 7310, + "id": 8794, "properties": { "facing": "east", "mode": "subtract", @@ -38541,55 +47723,55 @@ "states": [ { "default": true, - "id": 16960, + "id": 18744, "properties": { "level": "0" } }, { - "id": 16961, + "id": 18745, "properties": { "level": "1" } }, { - "id": 16962, + "id": 18746, "properties": { "level": "2" } }, { - "id": 16963, + "id": 18747, "properties": { "level": "3" } }, { - "id": 16964, + "id": 18748, "properties": { "level": "4" } }, { - "id": 16965, + "id": 18749, "properties": { "level": "5" } }, { - "id": 16966, + "id": 18750, "properties": { "level": "6" } }, { - "id": 16967, + "id": 18751, "properties": { "level": "7" } }, { - "id": 16968, + "id": 18752, "properties": { "level": "8" } @@ -38606,13 +47788,13 @@ "states": [ { "default": true, - "id": 10530, + "id": 12314, "properties": { "waterlogged": "true" } }, { - "id": 10531, + "id": 12315, "properties": { "waterlogged": "false" } @@ -38623,7 +47805,7 @@ "states": [ { "default": true, - "id": 18911 + "id": 20695 } ] }, @@ -38631,7 +47813,7 @@ "states": [ { "default": true, - "id": 18912 + "id": 20696 } ] }, @@ -38639,7 +47821,7 @@ "states": [ { "default": true, - "id": 1676 + "id": 2034 } ] }, @@ -38647,7 +47829,7 @@ "states": [ { "default": true, - "id": 21426 + "id": 23210 } ] }, @@ -38655,7 +47837,7 @@ "states": [ { "default": true, - "id": 21427 + "id": 23211 } ] }, @@ -38663,7 +47845,7 @@ "states": [ { "default": true, - "id": 18311 + "id": 20095 } ] }, @@ -38671,7 +47853,7 @@ "states": [ { "default": true, - "id": 17461 + "id": 19245 } ] }, @@ -38679,7 +47861,7 @@ "states": [ { "default": true, - "id": 4870 + "id": 6310 } ] }, @@ -38687,7 +47869,7 @@ "states": [ { "default": true, - "id": 3611 + "id": 4225 } ] }, @@ -38715,97 +47897,97 @@ "states": [ { "default": true, - "id": 7187, + "id": 8651, "properties": { "rotation": "0" } }, { - "id": 7188, + "id": 8652, "properties": { "rotation": "1" } }, { - "id": 7189, + "id": 8653, "properties": { "rotation": "2" } }, { - "id": 7190, + "id": 8654, "properties": { "rotation": "3" } }, { - "id": 7191, + "id": 8655, "properties": { "rotation": "4" } }, { - "id": 7192, + "id": 8656, "properties": { "rotation": "5" } }, { - "id": 7193, + "id": 8657, "properties": { "rotation": "6" } }, { - "id": 7194, + "id": 8658, "properties": { "rotation": "7" } }, { - "id": 7195, + "id": 8659, "properties": { "rotation": "8" } }, { - "id": 7196, + "id": 8660, "properties": { "rotation": "9" } }, { - "id": 7197, + "id": 8661, "properties": { "rotation": "10" } }, { - "id": 7198, + "id": 8662, "properties": { "rotation": "11" } }, { - "id": 7199, + "id": 8663, "properties": { "rotation": "12" } }, { - "id": 7200, + "id": 8664, "properties": { "rotation": "13" } }, { - "id": 7201, + "id": 8665, "properties": { "rotation": "14" } }, { - "id": 7202, + "id": 8666, "properties": { "rotation": "15" } @@ -38824,25 +48006,25 @@ "states": [ { "default": true, - "id": 7203, + "id": 8667, "properties": { "facing": "north" } }, { - "id": 7204, + "id": 8668, "properties": { "facing": "south" } }, { - "id": 7205, + "id": 8669, "properties": { "facing": "west" } }, { - "id": 7206, + "id": 8670, "properties": { "facing": "east" } @@ -38869,7 +48051,7 @@ }, "states": [ { - "id": 16688, + "id": 18472, "properties": { "face": "floor", "facing": "north", @@ -38877,7 +48059,7 @@ } }, { - "id": 16689, + "id": 18473, "properties": { "face": "floor", "facing": "north", @@ -38885,7 +48067,7 @@ } }, { - "id": 16690, + "id": 18474, "properties": { "face": "floor", "facing": "south", @@ -38893,7 +48075,7 @@ } }, { - "id": 16691, + "id": 18475, "properties": { "face": "floor", "facing": "south", @@ -38901,7 +48083,7 @@ } }, { - "id": 16692, + "id": 18476, "properties": { "face": "floor", "facing": "west", @@ -38909,7 +48091,7 @@ } }, { - "id": 16693, + "id": 18477, "properties": { "face": "floor", "facing": "west", @@ -38917,7 +48099,7 @@ } }, { - "id": 16694, + "id": 18478, "properties": { "face": "floor", "facing": "east", @@ -38925,7 +48107,7 @@ } }, { - "id": 16695, + "id": 18479, "properties": { "face": "floor", "facing": "east", @@ -38933,7 +48115,7 @@ } }, { - "id": 16696, + "id": 18480, "properties": { "face": "wall", "facing": "north", @@ -38942,7 +48124,7 @@ }, { "default": true, - "id": 16697, + "id": 18481, "properties": { "face": "wall", "facing": "north", @@ -38950,7 +48132,7 @@ } }, { - "id": 16698, + "id": 18482, "properties": { "face": "wall", "facing": "south", @@ -38958,7 +48140,7 @@ } }, { - "id": 16699, + "id": 18483, "properties": { "face": "wall", "facing": "south", @@ -38966,7 +48148,7 @@ } }, { - "id": 16700, + "id": 18484, "properties": { "face": "wall", "facing": "west", @@ -38974,7 +48156,7 @@ } }, { - "id": 16701, + "id": 18485, "properties": { "face": "wall", "facing": "west", @@ -38982,7 +48164,7 @@ } }, { - "id": 16702, + "id": 18486, "properties": { "face": "wall", "facing": "east", @@ -38990,7 +48172,7 @@ } }, { - "id": 16703, + "id": 18487, "properties": { "face": "wall", "facing": "east", @@ -38998,7 +48180,7 @@ } }, { - "id": 16704, + "id": 18488, "properties": { "face": "ceiling", "facing": "north", @@ -39006,7 +48188,7 @@ } }, { - "id": 16705, + "id": 18489, "properties": { "face": "ceiling", "facing": "north", @@ -39014,7 +48196,7 @@ } }, { - "id": 16706, + "id": 18490, "properties": { "face": "ceiling", "facing": "south", @@ -39022,7 +48204,7 @@ } }, { - "id": 16707, + "id": 18491, "properties": { "face": "ceiling", "facing": "south", @@ -39030,7 +48212,7 @@ } }, { - "id": 16708, + "id": 18492, "properties": { "face": "ceiling", "facing": "west", @@ -39038,7 +48220,7 @@ } }, { - "id": 16709, + "id": 18493, "properties": { "face": "ceiling", "facing": "west", @@ -39046,7 +48228,7 @@ } }, { - "id": 16710, + "id": 18494, "properties": { "face": "ceiling", "facing": "east", @@ -39054,7 +48236,7 @@ } }, { - "id": 16711, + "id": 18495, "properties": { "face": "ceiling", "facing": "east", @@ -39090,7 +48272,7 @@ }, "states": [ { - "id": 16736, + "id": 18520, "properties": { "facing": "north", "half": "upper", @@ -39100,7 +48282,7 @@ } }, { - "id": 16737, + "id": 18521, "properties": { "facing": "north", "half": "upper", @@ -39110,7 +48292,7 @@ } }, { - "id": 16738, + "id": 18522, "properties": { "facing": "north", "half": "upper", @@ -39120,7 +48302,7 @@ } }, { - "id": 16739, + "id": 18523, "properties": { "facing": "north", "half": "upper", @@ -39130,7 +48312,7 @@ } }, { - "id": 16740, + "id": 18524, "properties": { "facing": "north", "half": "upper", @@ -39140,7 +48322,7 @@ } }, { - "id": 16741, + "id": 18525, "properties": { "facing": "north", "half": "upper", @@ -39150,7 +48332,7 @@ } }, { - "id": 16742, + "id": 18526, "properties": { "facing": "north", "half": "upper", @@ -39160,7 +48342,7 @@ } }, { - "id": 16743, + "id": 18527, "properties": { "facing": "north", "half": "upper", @@ -39170,7 +48352,7 @@ } }, { - "id": 16744, + "id": 18528, "properties": { "facing": "north", "half": "lower", @@ -39180,7 +48362,7 @@ } }, { - "id": 16745, + "id": 18529, "properties": { "facing": "north", "half": "lower", @@ -39190,7 +48372,7 @@ } }, { - "id": 16746, + "id": 18530, "properties": { "facing": "north", "half": "lower", @@ -39201,7 +48383,7 @@ }, { "default": true, - "id": 16747, + "id": 18531, "properties": { "facing": "north", "half": "lower", @@ -39211,7 +48393,7 @@ } }, { - "id": 16748, + "id": 18532, "properties": { "facing": "north", "half": "lower", @@ -39221,7 +48403,7 @@ } }, { - "id": 16749, + "id": 18533, "properties": { "facing": "north", "half": "lower", @@ -39231,7 +48413,7 @@ } }, { - "id": 16750, + "id": 18534, "properties": { "facing": "north", "half": "lower", @@ -39241,7 +48423,7 @@ } }, { - "id": 16751, + "id": 18535, "properties": { "facing": "north", "half": "lower", @@ -39251,7 +48433,7 @@ } }, { - "id": 16752, + "id": 18536, "properties": { "facing": "south", "half": "upper", @@ -39261,7 +48443,7 @@ } }, { - "id": 16753, + "id": 18537, "properties": { "facing": "south", "half": "upper", @@ -39271,7 +48453,7 @@ } }, { - "id": 16754, + "id": 18538, "properties": { "facing": "south", "half": "upper", @@ -39281,7 +48463,7 @@ } }, { - "id": 16755, + "id": 18539, "properties": { "facing": "south", "half": "upper", @@ -39291,7 +48473,7 @@ } }, { - "id": 16756, + "id": 18540, "properties": { "facing": "south", "half": "upper", @@ -39301,7 +48483,7 @@ } }, { - "id": 16757, + "id": 18541, "properties": { "facing": "south", "half": "upper", @@ -39311,7 +48493,7 @@ } }, { - "id": 16758, + "id": 18542, "properties": { "facing": "south", "half": "upper", @@ -39321,7 +48503,7 @@ } }, { - "id": 16759, + "id": 18543, "properties": { "facing": "south", "half": "upper", @@ -39331,7 +48513,7 @@ } }, { - "id": 16760, + "id": 18544, "properties": { "facing": "south", "half": "lower", @@ -39341,7 +48523,7 @@ } }, { - "id": 16761, + "id": 18545, "properties": { "facing": "south", "half": "lower", @@ -39351,7 +48533,7 @@ } }, { - "id": 16762, + "id": 18546, "properties": { "facing": "south", "half": "lower", @@ -39361,7 +48543,7 @@ } }, { - "id": 16763, + "id": 18547, "properties": { "facing": "south", "half": "lower", @@ -39371,7 +48553,7 @@ } }, { - "id": 16764, + "id": 18548, "properties": { "facing": "south", "half": "lower", @@ -39381,7 +48563,7 @@ } }, { - "id": 16765, + "id": 18549, "properties": { "facing": "south", "half": "lower", @@ -39391,7 +48573,7 @@ } }, { - "id": 16766, + "id": 18550, "properties": { "facing": "south", "half": "lower", @@ -39401,7 +48583,7 @@ } }, { - "id": 16767, + "id": 18551, "properties": { "facing": "south", "half": "lower", @@ -39411,7 +48593,7 @@ } }, { - "id": 16768, + "id": 18552, "properties": { "facing": "west", "half": "upper", @@ -39421,7 +48603,7 @@ } }, { - "id": 16769, + "id": 18553, "properties": { "facing": "west", "half": "upper", @@ -39431,7 +48613,7 @@ } }, { - "id": 16770, + "id": 18554, "properties": { "facing": "west", "half": "upper", @@ -39441,7 +48623,7 @@ } }, { - "id": 16771, + "id": 18555, "properties": { "facing": "west", "half": "upper", @@ -39451,7 +48633,7 @@ } }, { - "id": 16772, + "id": 18556, "properties": { "facing": "west", "half": "upper", @@ -39461,7 +48643,7 @@ } }, { - "id": 16773, + "id": 18557, "properties": { "facing": "west", "half": "upper", @@ -39471,7 +48653,7 @@ } }, { - "id": 16774, + "id": 18558, "properties": { "facing": "west", "half": "upper", @@ -39481,7 +48663,7 @@ } }, { - "id": 16775, + "id": 18559, "properties": { "facing": "west", "half": "upper", @@ -39491,7 +48673,7 @@ } }, { - "id": 16776, + "id": 18560, "properties": { "facing": "west", "half": "lower", @@ -39501,7 +48683,7 @@ } }, { - "id": 16777, + "id": 18561, "properties": { "facing": "west", "half": "lower", @@ -39511,7 +48693,7 @@ } }, { - "id": 16778, + "id": 18562, "properties": { "facing": "west", "half": "lower", @@ -39521,7 +48703,7 @@ } }, { - "id": 16779, + "id": 18563, "properties": { "facing": "west", "half": "lower", @@ -39531,7 +48713,7 @@ } }, { - "id": 16780, + "id": 18564, "properties": { "facing": "west", "half": "lower", @@ -39541,7 +48723,7 @@ } }, { - "id": 16781, + "id": 18565, "properties": { "facing": "west", "half": "lower", @@ -39551,7 +48733,7 @@ } }, { - "id": 16782, + "id": 18566, "properties": { "facing": "west", "half": "lower", @@ -39561,7 +48743,7 @@ } }, { - "id": 16783, + "id": 18567, "properties": { "facing": "west", "half": "lower", @@ -39571,7 +48753,7 @@ } }, { - "id": 16784, + "id": 18568, "properties": { "facing": "east", "half": "upper", @@ -39581,7 +48763,7 @@ } }, { - "id": 16785, + "id": 18569, "properties": { "facing": "east", "half": "upper", @@ -39591,7 +48773,7 @@ } }, { - "id": 16786, + "id": 18570, "properties": { "facing": "east", "half": "upper", @@ -39601,7 +48783,7 @@ } }, { - "id": 16787, + "id": 18571, "properties": { "facing": "east", "half": "upper", @@ -39611,7 +48793,7 @@ } }, { - "id": 16788, + "id": 18572, "properties": { "facing": "east", "half": "upper", @@ -39621,7 +48803,7 @@ } }, { - "id": 16789, + "id": 18573, "properties": { "facing": "east", "half": "upper", @@ -39631,7 +48813,7 @@ } }, { - "id": 16790, + "id": 18574, "properties": { "facing": "east", "half": "upper", @@ -39641,7 +48823,7 @@ } }, { - "id": 16791, + "id": 18575, "properties": { "facing": "east", "half": "upper", @@ -39651,7 +48833,7 @@ } }, { - "id": 16792, + "id": 18576, "properties": { "facing": "east", "half": "lower", @@ -39661,7 +48843,7 @@ } }, { - "id": 16793, + "id": 18577, "properties": { "facing": "east", "half": "lower", @@ -39671,7 +48853,7 @@ } }, { - "id": 16794, + "id": 18578, "properties": { "facing": "east", "half": "lower", @@ -39681,7 +48863,7 @@ } }, { - "id": 16795, + "id": 18579, "properties": { "facing": "east", "half": "lower", @@ -39691,7 +48873,7 @@ } }, { - "id": 16796, + "id": 18580, "properties": { "facing": "east", "half": "lower", @@ -39701,7 +48883,7 @@ } }, { - "id": 16797, + "id": 18581, "properties": { "facing": "east", "half": "lower", @@ -39711,7 +48893,7 @@ } }, { - "id": 16798, + "id": 18582, "properties": { "facing": "east", "half": "lower", @@ -39721,7 +48903,7 @@ } }, { - "id": 16799, + "id": 18583, "properties": { "facing": "east", "half": "lower", @@ -39757,7 +48939,7 @@ }, "states": [ { - "id": 16272, + "id": 18056, "properties": { "east": "true", "north": "true", @@ -39767,7 +48949,7 @@ } }, { - "id": 16273, + "id": 18057, "properties": { "east": "true", "north": "true", @@ -39777,7 +48959,7 @@ } }, { - "id": 16274, + "id": 18058, "properties": { "east": "true", "north": "true", @@ -39787,7 +48969,7 @@ } }, { - "id": 16275, + "id": 18059, "properties": { "east": "true", "north": "true", @@ -39797,7 +48979,7 @@ } }, { - "id": 16276, + "id": 18060, "properties": { "east": "true", "north": "true", @@ -39807,7 +48989,7 @@ } }, { - "id": 16277, + "id": 18061, "properties": { "east": "true", "north": "true", @@ -39817,7 +48999,7 @@ } }, { - "id": 16278, + "id": 18062, "properties": { "east": "true", "north": "true", @@ -39827,7 +49009,7 @@ } }, { - "id": 16279, + "id": 18063, "properties": { "east": "true", "north": "true", @@ -39837,7 +49019,7 @@ } }, { - "id": 16280, + "id": 18064, "properties": { "east": "true", "north": "false", @@ -39847,7 +49029,7 @@ } }, { - "id": 16281, + "id": 18065, "properties": { "east": "true", "north": "false", @@ -39857,7 +49039,7 @@ } }, { - "id": 16282, + "id": 18066, "properties": { "east": "true", "north": "false", @@ -39867,7 +49049,7 @@ } }, { - "id": 16283, + "id": 18067, "properties": { "east": "true", "north": "false", @@ -39877,7 +49059,7 @@ } }, { - "id": 16284, + "id": 18068, "properties": { "east": "true", "north": "false", @@ -39887,7 +49069,7 @@ } }, { - "id": 16285, + "id": 18069, "properties": { "east": "true", "north": "false", @@ -39897,7 +49079,7 @@ } }, { - "id": 16286, + "id": 18070, "properties": { "east": "true", "north": "false", @@ -39907,7 +49089,7 @@ } }, { - "id": 16287, + "id": 18071, "properties": { "east": "true", "north": "false", @@ -39917,7 +49099,7 @@ } }, { - "id": 16288, + "id": 18072, "properties": { "east": "false", "north": "true", @@ -39927,7 +49109,7 @@ } }, { - "id": 16289, + "id": 18073, "properties": { "east": "false", "north": "true", @@ -39937,7 +49119,7 @@ } }, { - "id": 16290, + "id": 18074, "properties": { "east": "false", "north": "true", @@ -39947,7 +49129,7 @@ } }, { - "id": 16291, + "id": 18075, "properties": { "east": "false", "north": "true", @@ -39957,7 +49139,7 @@ } }, { - "id": 16292, + "id": 18076, "properties": { "east": "false", "north": "true", @@ -39967,7 +49149,7 @@ } }, { - "id": 16293, + "id": 18077, "properties": { "east": "false", "north": "true", @@ -39977,7 +49159,7 @@ } }, { - "id": 16294, + "id": 18078, "properties": { "east": "false", "north": "true", @@ -39987,7 +49169,7 @@ } }, { - "id": 16295, + "id": 18079, "properties": { "east": "false", "north": "true", @@ -39997,7 +49179,7 @@ } }, { - "id": 16296, + "id": 18080, "properties": { "east": "false", "north": "false", @@ -40007,7 +49189,7 @@ } }, { - "id": 16297, + "id": 18081, "properties": { "east": "false", "north": "false", @@ -40017,7 +49199,7 @@ } }, { - "id": 16298, + "id": 18082, "properties": { "east": "false", "north": "false", @@ -40027,7 +49209,7 @@ } }, { - "id": 16299, + "id": 18083, "properties": { "east": "false", "north": "false", @@ -40037,7 +49219,7 @@ } }, { - "id": 16300, + "id": 18084, "properties": { "east": "false", "north": "false", @@ -40047,7 +49229,7 @@ } }, { - "id": 16301, + "id": 18085, "properties": { "east": "false", "north": "false", @@ -40057,7 +49239,7 @@ } }, { - "id": 16302, + "id": 18086, "properties": { "east": "false", "north": "false", @@ -40068,7 +49250,7 @@ }, { "default": true, - "id": 16303, + "id": 18087, "properties": { "east": "false", "north": "false", @@ -40102,7 +49284,7 @@ }, "states": [ { - "id": 16464, + "id": 18248, "properties": { "facing": "north", "in_wall": "true", @@ -40111,7 +49293,7 @@ } }, { - "id": 16465, + "id": 18249, "properties": { "facing": "north", "in_wall": "true", @@ -40120,7 +49302,7 @@ } }, { - "id": 16466, + "id": 18250, "properties": { "facing": "north", "in_wall": "true", @@ -40129,7 +49311,7 @@ } }, { - "id": 16467, + "id": 18251, "properties": { "facing": "north", "in_wall": "true", @@ -40138,7 +49320,7 @@ } }, { - "id": 16468, + "id": 18252, "properties": { "facing": "north", "in_wall": "false", @@ -40147,7 +49329,7 @@ } }, { - "id": 16469, + "id": 18253, "properties": { "facing": "north", "in_wall": "false", @@ -40156,7 +49338,7 @@ } }, { - "id": 16470, + "id": 18254, "properties": { "facing": "north", "in_wall": "false", @@ -40166,7 +49348,7 @@ }, { "default": true, - "id": 16471, + "id": 18255, "properties": { "facing": "north", "in_wall": "false", @@ -40175,7 +49357,7 @@ } }, { - "id": 16472, + "id": 18256, "properties": { "facing": "south", "in_wall": "true", @@ -40184,7 +49366,7 @@ } }, { - "id": 16473, + "id": 18257, "properties": { "facing": "south", "in_wall": "true", @@ -40193,7 +49375,7 @@ } }, { - "id": 16474, + "id": 18258, "properties": { "facing": "south", "in_wall": "true", @@ -40202,7 +49384,7 @@ } }, { - "id": 16475, + "id": 18259, "properties": { "facing": "south", "in_wall": "true", @@ -40211,7 +49393,7 @@ } }, { - "id": 16476, + "id": 18260, "properties": { "facing": "south", "in_wall": "false", @@ -40220,7 +49402,7 @@ } }, { - "id": 16477, + "id": 18261, "properties": { "facing": "south", "in_wall": "false", @@ -40229,7 +49411,7 @@ } }, { - "id": 16478, + "id": 18262, "properties": { "facing": "south", "in_wall": "false", @@ -40238,7 +49420,7 @@ } }, { - "id": 16479, + "id": 18263, "properties": { "facing": "south", "in_wall": "false", @@ -40247,7 +49429,7 @@ } }, { - "id": 16480, + "id": 18264, "properties": { "facing": "west", "in_wall": "true", @@ -40256,7 +49438,7 @@ } }, { - "id": 16481, + "id": 18265, "properties": { "facing": "west", "in_wall": "true", @@ -40265,7 +49447,7 @@ } }, { - "id": 16482, + "id": 18266, "properties": { "facing": "west", "in_wall": "true", @@ -40274,7 +49456,7 @@ } }, { - "id": 16483, + "id": 18267, "properties": { "facing": "west", "in_wall": "true", @@ -40283,7 +49465,7 @@ } }, { - "id": 16484, + "id": 18268, "properties": { "facing": "west", "in_wall": "false", @@ -40292,7 +49474,7 @@ } }, { - "id": 16485, + "id": 18269, "properties": { "facing": "west", "in_wall": "false", @@ -40301,7 +49483,7 @@ } }, { - "id": 16486, + "id": 18270, "properties": { "facing": "west", "in_wall": "false", @@ -40310,7 +49492,7 @@ } }, { - "id": 16487, + "id": 18271, "properties": { "facing": "west", "in_wall": "false", @@ -40319,7 +49501,7 @@ } }, { - "id": 16488, + "id": 18272, "properties": { "facing": "east", "in_wall": "true", @@ -40328,7 +49510,7 @@ } }, { - "id": 16489, + "id": 18273, "properties": { "facing": "east", "in_wall": "true", @@ -40337,7 +49519,7 @@ } }, { - "id": 16490, + "id": 18274, "properties": { "facing": "east", "in_wall": "true", @@ -40346,7 +49528,7 @@ } }, { - "id": 16491, + "id": 18275, "properties": { "facing": "east", "in_wall": "true", @@ -40355,7 +49537,7 @@ } }, { - "id": 16492, + "id": 18276, "properties": { "facing": "east", "in_wall": "false", @@ -40364,7 +49546,7 @@ } }, { - "id": 16493, + "id": 18277, "properties": { "facing": "east", "in_wall": "false", @@ -40373,7 +49555,7 @@ } }, { - "id": 16494, + "id": 18278, "properties": { "facing": "east", "in_wall": "false", @@ -40382,7 +49564,7 @@ } }, { - "id": 16495, + "id": 18279, "properties": { "facing": "east", "in_wall": "false", @@ -40396,7 +49578,552 @@ "states": [ { "default": true, - "id": 16197 + "id": 17981 + } + ] + }, + "minecraft:crimson_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5126, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5127, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5128, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5129, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5130, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5131, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5132, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5133, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5134, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5135, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5136, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5137, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5138, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5139, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5140, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5141, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5142, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5143, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5144, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5145, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5146, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5147, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5148, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5149, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5150, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5151, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5152, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5153, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5154, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5155, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5156, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5157, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5158, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5159, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5160, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5161, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5162, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5163, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5164, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5165, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5166, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5167, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5168, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5169, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5170, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5171, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5172, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5173, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5174, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5175, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5176, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5177, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5178, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5179, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5180, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5181, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5182, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5183, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5184, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5185, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5186, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5187, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5188, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5189, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } } ] }, @@ -40410,20 +50137,20 @@ }, "states": [ { - "id": 16190, + "id": 17974, "properties": { "axis": "x" } }, { "default": true, - "id": 16191, + "id": 17975, "properties": { "axis": "y" } }, { - "id": 16192, + "id": 17976, "properties": { "axis": "z" } @@ -40434,7 +50161,7 @@ "states": [ { "default": true, - "id": 16196 + "id": 17980 } ] }, @@ -40442,7 +50169,7 @@ "states": [ { "default": true, - "id": 16254 + "id": 18038 } ] }, @@ -40455,14 +50182,14 @@ }, "states": [ { - "id": 16268, + "id": 18052, "properties": { "powered": "true" } }, { "default": true, - "id": 16269, + "id": 18053, "properties": { "powered": "false" } @@ -40473,7 +50200,7 @@ "states": [ { "default": true, - "id": 16253 + "id": 18037 } ] }, @@ -40504,7 +50231,7 @@ }, "states": [ { - "id": 16864, + "id": 18648, "properties": { "rotation": "0", "waterlogged": "true" @@ -40512,217 +50239,217 @@ }, { "default": true, - "id": 16865, + "id": 18649, "properties": { "rotation": "0", "waterlogged": "false" } }, { - "id": 16866, + "id": 18650, "properties": { "rotation": "1", "waterlogged": "true" } }, { - "id": 16867, + "id": 18651, "properties": { "rotation": "1", "waterlogged": "false" } }, { - "id": 16868, + "id": 18652, "properties": { "rotation": "2", "waterlogged": "true" } }, { - "id": 16869, + "id": 18653, "properties": { "rotation": "2", "waterlogged": "false" } }, { - "id": 16870, + "id": 18654, "properties": { "rotation": "3", "waterlogged": "true" } }, { - "id": 16871, + "id": 18655, "properties": { "rotation": "3", "waterlogged": "false" } }, { - "id": 16872, + "id": 18656, "properties": { "rotation": "4", "waterlogged": "true" } }, { - "id": 16873, + "id": 18657, "properties": { "rotation": "4", "waterlogged": "false" } }, { - "id": 16874, + "id": 18658, "properties": { "rotation": "5", "waterlogged": "true" } }, { - "id": 16875, + "id": 18659, "properties": { "rotation": "5", "waterlogged": "false" } }, { - "id": 16876, + "id": 18660, "properties": { "rotation": "6", "waterlogged": "true" } }, { - "id": 16877, + "id": 18661, "properties": { "rotation": "6", "waterlogged": "false" } }, { - "id": 16878, + "id": 18662, "properties": { "rotation": "7", "waterlogged": "true" } }, { - "id": 16879, + "id": 18663, "properties": { "rotation": "7", "waterlogged": "false" } }, { - "id": 16880, + "id": 18664, "properties": { "rotation": "8", "waterlogged": "true" } }, { - "id": 16881, + "id": 18665, "properties": { "rotation": "8", "waterlogged": "false" } }, { - "id": 16882, + "id": 18666, "properties": { "rotation": "9", "waterlogged": "true" } }, { - "id": 16883, + "id": 18667, "properties": { "rotation": "9", "waterlogged": "false" } }, { - "id": 16884, + "id": 18668, "properties": { "rotation": "10", "waterlogged": "true" } }, { - "id": 16885, + "id": 18669, "properties": { "rotation": "10", "waterlogged": "false" } }, { - "id": 16886, + "id": 18670, "properties": { "rotation": "11", "waterlogged": "true" } }, { - "id": 16887, + "id": 18671, "properties": { "rotation": "11", "waterlogged": "false" } }, { - "id": 16888, + "id": 18672, "properties": { "rotation": "12", "waterlogged": "true" } }, { - "id": 16889, + "id": 18673, "properties": { "rotation": "12", "waterlogged": "false" } }, { - "id": 16890, + "id": 18674, "properties": { "rotation": "13", "waterlogged": "true" } }, { - "id": 16891, + "id": 18675, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 16892, + "id": 18676, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 16893, + "id": 18677, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 16894, + "id": 18678, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 16895, + "id": 18679, "properties": { "rotation": "15", "waterlogged": "false" @@ -40744,21 +50471,21 @@ }, "states": [ { - "id": 16256, + "id": 18040, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 16257, + "id": 18041, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 16258, + "id": 18042, "properties": { "type": "bottom", "waterlogged": "true" @@ -40766,21 +50493,21 @@ }, { "default": true, - "id": 16259, + "id": 18043, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 16260, + "id": 18044, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 16261, + "id": 18045, "properties": { "type": "double", "waterlogged": "false" @@ -40814,7 +50541,7 @@ }, "states": [ { - "id": 16528, + "id": 18312, "properties": { "facing": "north", "half": "top", @@ -40823,7 +50550,7 @@ } }, { - "id": 16529, + "id": 18313, "properties": { "facing": "north", "half": "top", @@ -40832,7 +50559,7 @@ } }, { - "id": 16530, + "id": 18314, "properties": { "facing": "north", "half": "top", @@ -40841,7 +50568,7 @@ } }, { - "id": 16531, + "id": 18315, "properties": { "facing": "north", "half": "top", @@ -40850,7 +50577,7 @@ } }, { - "id": 16532, + "id": 18316, "properties": { "facing": "north", "half": "top", @@ -40859,7 +50586,7 @@ } }, { - "id": 16533, + "id": 18317, "properties": { "facing": "north", "half": "top", @@ -40868,7 +50595,7 @@ } }, { - "id": 16534, + "id": 18318, "properties": { "facing": "north", "half": "top", @@ -40877,7 +50604,7 @@ } }, { - "id": 16535, + "id": 18319, "properties": { "facing": "north", "half": "top", @@ -40886,7 +50613,7 @@ } }, { - "id": 16536, + "id": 18320, "properties": { "facing": "north", "half": "top", @@ -40895,7 +50622,7 @@ } }, { - "id": 16537, + "id": 18321, "properties": { "facing": "north", "half": "top", @@ -40904,7 +50631,7 @@ } }, { - "id": 16538, + "id": 18322, "properties": { "facing": "north", "half": "bottom", @@ -40914,7 +50641,7 @@ }, { "default": true, - "id": 16539, + "id": 18323, "properties": { "facing": "north", "half": "bottom", @@ -40923,7 +50650,7 @@ } }, { - "id": 16540, + "id": 18324, "properties": { "facing": "north", "half": "bottom", @@ -40932,7 +50659,7 @@ } }, { - "id": 16541, + "id": 18325, "properties": { "facing": "north", "half": "bottom", @@ -40941,7 +50668,7 @@ } }, { - "id": 16542, + "id": 18326, "properties": { "facing": "north", "half": "bottom", @@ -40950,7 +50677,7 @@ } }, { - "id": 16543, + "id": 18327, "properties": { "facing": "north", "half": "bottom", @@ -40959,7 +50686,7 @@ } }, { - "id": 16544, + "id": 18328, "properties": { "facing": "north", "half": "bottom", @@ -40968,7 +50695,7 @@ } }, { - "id": 16545, + "id": 18329, "properties": { "facing": "north", "half": "bottom", @@ -40977,7 +50704,7 @@ } }, { - "id": 16546, + "id": 18330, "properties": { "facing": "north", "half": "bottom", @@ -40986,7 +50713,7 @@ } }, { - "id": 16547, + "id": 18331, "properties": { "facing": "north", "half": "bottom", @@ -40995,7 +50722,7 @@ } }, { - "id": 16548, + "id": 18332, "properties": { "facing": "south", "half": "top", @@ -41004,7 +50731,7 @@ } }, { - "id": 16549, + "id": 18333, "properties": { "facing": "south", "half": "top", @@ -41013,7 +50740,7 @@ } }, { - "id": 16550, + "id": 18334, "properties": { "facing": "south", "half": "top", @@ -41022,7 +50749,7 @@ } }, { - "id": 16551, + "id": 18335, "properties": { "facing": "south", "half": "top", @@ -41031,7 +50758,7 @@ } }, { - "id": 16552, + "id": 18336, "properties": { "facing": "south", "half": "top", @@ -41040,7 +50767,7 @@ } }, { - "id": 16553, + "id": 18337, "properties": { "facing": "south", "half": "top", @@ -41049,7 +50776,7 @@ } }, { - "id": 16554, + "id": 18338, "properties": { "facing": "south", "half": "top", @@ -41058,7 +50785,7 @@ } }, { - "id": 16555, + "id": 18339, "properties": { "facing": "south", "half": "top", @@ -41067,7 +50794,7 @@ } }, { - "id": 16556, + "id": 18340, "properties": { "facing": "south", "half": "top", @@ -41076,7 +50803,7 @@ } }, { - "id": 16557, + "id": 18341, "properties": { "facing": "south", "half": "top", @@ -41085,7 +50812,7 @@ } }, { - "id": 16558, + "id": 18342, "properties": { "facing": "south", "half": "bottom", @@ -41094,7 +50821,7 @@ } }, { - "id": 16559, + "id": 18343, "properties": { "facing": "south", "half": "bottom", @@ -41103,7 +50830,7 @@ } }, { - "id": 16560, + "id": 18344, "properties": { "facing": "south", "half": "bottom", @@ -41112,7 +50839,7 @@ } }, { - "id": 16561, + "id": 18345, "properties": { "facing": "south", "half": "bottom", @@ -41121,7 +50848,7 @@ } }, { - "id": 16562, + "id": 18346, "properties": { "facing": "south", "half": "bottom", @@ -41130,7 +50857,7 @@ } }, { - "id": 16563, + "id": 18347, "properties": { "facing": "south", "half": "bottom", @@ -41139,7 +50866,7 @@ } }, { - "id": 16564, + "id": 18348, "properties": { "facing": "south", "half": "bottom", @@ -41148,7 +50875,7 @@ } }, { - "id": 16565, + "id": 18349, "properties": { "facing": "south", "half": "bottom", @@ -41157,7 +50884,7 @@ } }, { - "id": 16566, + "id": 18350, "properties": { "facing": "south", "half": "bottom", @@ -41166,7 +50893,7 @@ } }, { - "id": 16567, + "id": 18351, "properties": { "facing": "south", "half": "bottom", @@ -41175,7 +50902,7 @@ } }, { - "id": 16568, + "id": 18352, "properties": { "facing": "west", "half": "top", @@ -41184,7 +50911,7 @@ } }, { - "id": 16569, + "id": 18353, "properties": { "facing": "west", "half": "top", @@ -41193,7 +50920,7 @@ } }, { - "id": 16570, + "id": 18354, "properties": { "facing": "west", "half": "top", @@ -41202,7 +50929,7 @@ } }, { - "id": 16571, + "id": 18355, "properties": { "facing": "west", "half": "top", @@ -41211,7 +50938,7 @@ } }, { - "id": 16572, + "id": 18356, "properties": { "facing": "west", "half": "top", @@ -41220,7 +50947,7 @@ } }, { - "id": 16573, + "id": 18357, "properties": { "facing": "west", "half": "top", @@ -41229,7 +50956,7 @@ } }, { - "id": 16574, + "id": 18358, "properties": { "facing": "west", "half": "top", @@ -41238,7 +50965,7 @@ } }, { - "id": 16575, + "id": 18359, "properties": { "facing": "west", "half": "top", @@ -41247,7 +50974,7 @@ } }, { - "id": 16576, + "id": 18360, "properties": { "facing": "west", "half": "top", @@ -41256,7 +50983,7 @@ } }, { - "id": 16577, + "id": 18361, "properties": { "facing": "west", "half": "top", @@ -41265,7 +50992,7 @@ } }, { - "id": 16578, + "id": 18362, "properties": { "facing": "west", "half": "bottom", @@ -41274,7 +51001,7 @@ } }, { - "id": 16579, + "id": 18363, "properties": { "facing": "west", "half": "bottom", @@ -41283,7 +51010,7 @@ } }, { - "id": 16580, + "id": 18364, "properties": { "facing": "west", "half": "bottom", @@ -41292,7 +51019,7 @@ } }, { - "id": 16581, + "id": 18365, "properties": { "facing": "west", "half": "bottom", @@ -41301,7 +51028,7 @@ } }, { - "id": 16582, + "id": 18366, "properties": { "facing": "west", "half": "bottom", @@ -41310,7 +51037,7 @@ } }, { - "id": 16583, + "id": 18367, "properties": { "facing": "west", "half": "bottom", @@ -41319,7 +51046,7 @@ } }, { - "id": 16584, + "id": 18368, "properties": { "facing": "west", "half": "bottom", @@ -41328,7 +51055,7 @@ } }, { - "id": 16585, + "id": 18369, "properties": { "facing": "west", "half": "bottom", @@ -41337,7 +51064,7 @@ } }, { - "id": 16586, + "id": 18370, "properties": { "facing": "west", "half": "bottom", @@ -41346,7 +51073,7 @@ } }, { - "id": 16587, + "id": 18371, "properties": { "facing": "west", "half": "bottom", @@ -41355,7 +51082,7 @@ } }, { - "id": 16588, + "id": 18372, "properties": { "facing": "east", "half": "top", @@ -41364,7 +51091,7 @@ } }, { - "id": 16589, + "id": 18373, "properties": { "facing": "east", "half": "top", @@ -41373,7 +51100,7 @@ } }, { - "id": 16590, + "id": 18374, "properties": { "facing": "east", "half": "top", @@ -41382,7 +51109,7 @@ } }, { - "id": 16591, + "id": 18375, "properties": { "facing": "east", "half": "top", @@ -41391,7 +51118,7 @@ } }, { - "id": 16592, + "id": 18376, "properties": { "facing": "east", "half": "top", @@ -41400,7 +51127,7 @@ } }, { - "id": 16593, + "id": 18377, "properties": { "facing": "east", "half": "top", @@ -41409,7 +51136,7 @@ } }, { - "id": 16594, + "id": 18378, "properties": { "facing": "east", "half": "top", @@ -41418,7 +51145,7 @@ } }, { - "id": 16595, + "id": 18379, "properties": { "facing": "east", "half": "top", @@ -41427,7 +51154,7 @@ } }, { - "id": 16596, + "id": 18380, "properties": { "facing": "east", "half": "top", @@ -41436,7 +51163,7 @@ } }, { - "id": 16597, + "id": 18381, "properties": { "facing": "east", "half": "top", @@ -41445,7 +51172,7 @@ } }, { - "id": 16598, + "id": 18382, "properties": { "facing": "east", "half": "bottom", @@ -41454,7 +51181,7 @@ } }, { - "id": 16599, + "id": 18383, "properties": { "facing": "east", "half": "bottom", @@ -41463,7 +51190,7 @@ } }, { - "id": 16600, + "id": 18384, "properties": { "facing": "east", "half": "bottom", @@ -41472,7 +51199,7 @@ } }, { - "id": 16601, + "id": 18385, "properties": { "facing": "east", "half": "bottom", @@ -41481,7 +51208,7 @@ } }, { - "id": 16602, + "id": 18386, "properties": { "facing": "east", "half": "bottom", @@ -41490,7 +51217,7 @@ } }, { - "id": 16603, + "id": 18387, "properties": { "facing": "east", "half": "bottom", @@ -41499,7 +51226,7 @@ } }, { - "id": 16604, + "id": 18388, "properties": { "facing": "east", "half": "bottom", @@ -41508,7 +51235,7 @@ } }, { - "id": 16605, + "id": 18389, "properties": { "facing": "east", "half": "bottom", @@ -41517,7 +51244,7 @@ } }, { - "id": 16606, + "id": 18390, "properties": { "facing": "east", "half": "bottom", @@ -41526,7 +51253,7 @@ } }, { - "id": 16607, + "id": 18391, "properties": { "facing": "east", "half": "bottom", @@ -41546,20 +51273,20 @@ }, "states": [ { - "id": 16184, + "id": 17968, "properties": { "axis": "x" } }, { "default": true, - "id": 16185, + "id": 17969, "properties": { "axis": "y" } }, { - "id": 16186, + "id": 17970, "properties": { "axis": "z" } @@ -41593,7 +51320,7 @@ }, "states": [ { - "id": 16336, + "id": 18120, "properties": { "facing": "north", "half": "top", @@ -41603,7 +51330,7 @@ } }, { - "id": 16337, + "id": 18121, "properties": { "facing": "north", "half": "top", @@ -41613,7 +51340,7 @@ } }, { - "id": 16338, + "id": 18122, "properties": { "facing": "north", "half": "top", @@ -41623,7 +51350,7 @@ } }, { - "id": 16339, + "id": 18123, "properties": { "facing": "north", "half": "top", @@ -41633,7 +51360,7 @@ } }, { - "id": 16340, + "id": 18124, "properties": { "facing": "north", "half": "top", @@ -41643,7 +51370,7 @@ } }, { - "id": 16341, + "id": 18125, "properties": { "facing": "north", "half": "top", @@ -41653,7 +51380,7 @@ } }, { - "id": 16342, + "id": 18126, "properties": { "facing": "north", "half": "top", @@ -41663,7 +51390,7 @@ } }, { - "id": 16343, + "id": 18127, "properties": { "facing": "north", "half": "top", @@ -41673,7 +51400,7 @@ } }, { - "id": 16344, + "id": 18128, "properties": { "facing": "north", "half": "bottom", @@ -41683,7 +51410,7 @@ } }, { - "id": 16345, + "id": 18129, "properties": { "facing": "north", "half": "bottom", @@ -41693,7 +51420,7 @@ } }, { - "id": 16346, + "id": 18130, "properties": { "facing": "north", "half": "bottom", @@ -41703,7 +51430,7 @@ } }, { - "id": 16347, + "id": 18131, "properties": { "facing": "north", "half": "bottom", @@ -41713,7 +51440,7 @@ } }, { - "id": 16348, + "id": 18132, "properties": { "facing": "north", "half": "bottom", @@ -41723,7 +51450,7 @@ } }, { - "id": 16349, + "id": 18133, "properties": { "facing": "north", "half": "bottom", @@ -41733,7 +51460,7 @@ } }, { - "id": 16350, + "id": 18134, "properties": { "facing": "north", "half": "bottom", @@ -41744,7 +51471,7 @@ }, { "default": true, - "id": 16351, + "id": 18135, "properties": { "facing": "north", "half": "bottom", @@ -41754,7 +51481,7 @@ } }, { - "id": 16352, + "id": 18136, "properties": { "facing": "south", "half": "top", @@ -41764,7 +51491,7 @@ } }, { - "id": 16353, + "id": 18137, "properties": { "facing": "south", "half": "top", @@ -41774,7 +51501,7 @@ } }, { - "id": 16354, + "id": 18138, "properties": { "facing": "south", "half": "top", @@ -41784,7 +51511,7 @@ } }, { - "id": 16355, + "id": 18139, "properties": { "facing": "south", "half": "top", @@ -41794,7 +51521,7 @@ } }, { - "id": 16356, + "id": 18140, "properties": { "facing": "south", "half": "top", @@ -41804,7 +51531,7 @@ } }, { - "id": 16357, + "id": 18141, "properties": { "facing": "south", "half": "top", @@ -41814,7 +51541,7 @@ } }, { - "id": 16358, + "id": 18142, "properties": { "facing": "south", "half": "top", @@ -41824,7 +51551,7 @@ } }, { - "id": 16359, + "id": 18143, "properties": { "facing": "south", "half": "top", @@ -41834,7 +51561,7 @@ } }, { - "id": 16360, + "id": 18144, "properties": { "facing": "south", "half": "bottom", @@ -41844,7 +51571,7 @@ } }, { - "id": 16361, + "id": 18145, "properties": { "facing": "south", "half": "bottom", @@ -41854,7 +51581,7 @@ } }, { - "id": 16362, + "id": 18146, "properties": { "facing": "south", "half": "bottom", @@ -41864,7 +51591,7 @@ } }, { - "id": 16363, + "id": 18147, "properties": { "facing": "south", "half": "bottom", @@ -41874,7 +51601,7 @@ } }, { - "id": 16364, + "id": 18148, "properties": { "facing": "south", "half": "bottom", @@ -41884,7 +51611,7 @@ } }, { - "id": 16365, + "id": 18149, "properties": { "facing": "south", "half": "bottom", @@ -41894,7 +51621,7 @@ } }, { - "id": 16366, + "id": 18150, "properties": { "facing": "south", "half": "bottom", @@ -41904,7 +51631,7 @@ } }, { - "id": 16367, + "id": 18151, "properties": { "facing": "south", "half": "bottom", @@ -41914,7 +51641,7 @@ } }, { - "id": 16368, + "id": 18152, "properties": { "facing": "west", "half": "top", @@ -41924,7 +51651,7 @@ } }, { - "id": 16369, + "id": 18153, "properties": { "facing": "west", "half": "top", @@ -41934,7 +51661,7 @@ } }, { - "id": 16370, + "id": 18154, "properties": { "facing": "west", "half": "top", @@ -41944,7 +51671,7 @@ } }, { - "id": 16371, + "id": 18155, "properties": { "facing": "west", "half": "top", @@ -41954,7 +51681,7 @@ } }, { - "id": 16372, + "id": 18156, "properties": { "facing": "west", "half": "top", @@ -41964,7 +51691,7 @@ } }, { - "id": 16373, + "id": 18157, "properties": { "facing": "west", "half": "top", @@ -41974,7 +51701,7 @@ } }, { - "id": 16374, + "id": 18158, "properties": { "facing": "west", "half": "top", @@ -41984,7 +51711,7 @@ } }, { - "id": 16375, + "id": 18159, "properties": { "facing": "west", "half": "top", @@ -41994,7 +51721,7 @@ } }, { - "id": 16376, + "id": 18160, "properties": { "facing": "west", "half": "bottom", @@ -42004,7 +51731,7 @@ } }, { - "id": 16377, + "id": 18161, "properties": { "facing": "west", "half": "bottom", @@ -42014,7 +51741,7 @@ } }, { - "id": 16378, + "id": 18162, "properties": { "facing": "west", "half": "bottom", @@ -42024,7 +51751,7 @@ } }, { - "id": 16379, + "id": 18163, "properties": { "facing": "west", "half": "bottom", @@ -42034,7 +51761,7 @@ } }, { - "id": 16380, + "id": 18164, "properties": { "facing": "west", "half": "bottom", @@ -42044,7 +51771,7 @@ } }, { - "id": 16381, + "id": 18165, "properties": { "facing": "west", "half": "bottom", @@ -42054,7 +51781,7 @@ } }, { - "id": 16382, + "id": 18166, "properties": { "facing": "west", "half": "bottom", @@ -42064,7 +51791,7 @@ } }, { - "id": 16383, + "id": 18167, "properties": { "facing": "west", "half": "bottom", @@ -42074,7 +51801,7 @@ } }, { - "id": 16384, + "id": 18168, "properties": { "facing": "east", "half": "top", @@ -42084,7 +51811,7 @@ } }, { - "id": 16385, + "id": 18169, "properties": { "facing": "east", "half": "top", @@ -42094,7 +51821,7 @@ } }, { - "id": 16386, + "id": 18170, "properties": { "facing": "east", "half": "top", @@ -42104,7 +51831,7 @@ } }, { - "id": 16387, + "id": 18171, "properties": { "facing": "east", "half": "top", @@ -42114,7 +51841,7 @@ } }, { - "id": 16388, + "id": 18172, "properties": { "facing": "east", "half": "top", @@ -42124,7 +51851,7 @@ } }, { - "id": 16389, + "id": 18173, "properties": { "facing": "east", "half": "top", @@ -42134,7 +51861,7 @@ } }, { - "id": 16390, + "id": 18174, "properties": { "facing": "east", "half": "top", @@ -42144,7 +51871,7 @@ } }, { - "id": 16391, + "id": 18175, "properties": { "facing": "east", "half": "top", @@ -42154,7 +51881,7 @@ } }, { - "id": 16392, + "id": 18176, "properties": { "facing": "east", "half": "bottom", @@ -42164,7 +51891,7 @@ } }, { - "id": 16393, + "id": 18177, "properties": { "facing": "east", "half": "bottom", @@ -42174,7 +51901,7 @@ } }, { - "id": 16394, + "id": 18178, "properties": { "facing": "east", "half": "bottom", @@ -42184,7 +51911,7 @@ } }, { - "id": 16395, + "id": 18179, "properties": { "facing": "east", "half": "bottom", @@ -42194,7 +51921,7 @@ } }, { - "id": 16396, + "id": 18180, "properties": { "facing": "east", "half": "bottom", @@ -42204,7 +51931,7 @@ } }, { - "id": 16397, + "id": 18181, "properties": { "facing": "east", "half": "bottom", @@ -42214,7 +51941,7 @@ } }, { - "id": 16398, + "id": 18182, "properties": { "facing": "east", "half": "bottom", @@ -42224,7 +51951,7 @@ } }, { - "id": 16399, + "id": 18183, "properties": { "facing": "east", "half": "bottom", @@ -42235,6 +51962,79 @@ } ] }, + "minecraft:crimson_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5438, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5439, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5440, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5441, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5442, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5443, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5444, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5445, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, "minecraft:crimson_wall_sign": { "properties": { "facing": [ @@ -42250,7 +52050,7 @@ }, "states": [ { - "id": 16928, + "id": 18712, "properties": { "facing": "north", "waterlogged": "true" @@ -42258,49 +52058,49 @@ }, { "default": true, - "id": 16929, + "id": 18713, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 16930, + "id": 18714, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 16931, + "id": 18715, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 16932, + "id": 18716, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 16933, + "id": 18717, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 16934, + "id": 18718, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 16935, + "id": 18719, "properties": { "facing": "east", "waterlogged": "false" @@ -42312,7 +52112,7 @@ "states": [ { "default": true, - "id": 17037 + "id": 18821 } ] }, @@ -42320,7 +52120,7 @@ "states": [ { "default": true, - "id": 18917 + "id": 20701 } ] }, @@ -42338,21 +52138,21 @@ }, "states": [ { - "id": 19256, + "id": 21040, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 19257, + "id": 21041, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 19258, + "id": 21042, "properties": { "type": "bottom", "waterlogged": "true" @@ -42360,21 +52160,21 @@ }, { "default": true, - "id": 19259, + "id": 21043, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 19260, + "id": 21044, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 19261, + "id": 21045, "properties": { "type": "double", "waterlogged": "false" @@ -42408,7 +52208,7 @@ }, "states": [ { - "id": 19158, + "id": 20942, "properties": { "facing": "north", "half": "top", @@ -42417,7 +52217,7 @@ } }, { - "id": 19159, + "id": 20943, "properties": { "facing": "north", "half": "top", @@ -42426,7 +52226,7 @@ } }, { - "id": 19160, + "id": 20944, "properties": { "facing": "north", "half": "top", @@ -42435,7 +52235,7 @@ } }, { - "id": 19161, + "id": 20945, "properties": { "facing": "north", "half": "top", @@ -42444,7 +52244,7 @@ } }, { - "id": 19162, + "id": 20946, "properties": { "facing": "north", "half": "top", @@ -42453,7 +52253,7 @@ } }, { - "id": 19163, + "id": 20947, "properties": { "facing": "north", "half": "top", @@ -42462,7 +52262,7 @@ } }, { - "id": 19164, + "id": 20948, "properties": { "facing": "north", "half": "top", @@ -42471,7 +52271,7 @@ } }, { - "id": 19165, + "id": 20949, "properties": { "facing": "north", "half": "top", @@ -42480,7 +52280,7 @@ } }, { - "id": 19166, + "id": 20950, "properties": { "facing": "north", "half": "top", @@ -42489,7 +52289,7 @@ } }, { - "id": 19167, + "id": 20951, "properties": { "facing": "north", "half": "top", @@ -42498,7 +52298,7 @@ } }, { - "id": 19168, + "id": 20952, "properties": { "facing": "north", "half": "bottom", @@ -42508,7 +52308,7 @@ }, { "default": true, - "id": 19169, + "id": 20953, "properties": { "facing": "north", "half": "bottom", @@ -42517,7 +52317,7 @@ } }, { - "id": 19170, + "id": 20954, "properties": { "facing": "north", "half": "bottom", @@ -42526,7 +52326,7 @@ } }, { - "id": 19171, + "id": 20955, "properties": { "facing": "north", "half": "bottom", @@ -42535,7 +52335,7 @@ } }, { - "id": 19172, + "id": 20956, "properties": { "facing": "north", "half": "bottom", @@ -42544,7 +52344,7 @@ } }, { - "id": 19173, + "id": 20957, "properties": { "facing": "north", "half": "bottom", @@ -42553,7 +52353,7 @@ } }, { - "id": 19174, + "id": 20958, "properties": { "facing": "north", "half": "bottom", @@ -42562,7 +52362,7 @@ } }, { - "id": 19175, + "id": 20959, "properties": { "facing": "north", "half": "bottom", @@ -42571,7 +52371,7 @@ } }, { - "id": 19176, + "id": 20960, "properties": { "facing": "north", "half": "bottom", @@ -42580,7 +52380,7 @@ } }, { - "id": 19177, + "id": 20961, "properties": { "facing": "north", "half": "bottom", @@ -42589,7 +52389,7 @@ } }, { - "id": 19178, + "id": 20962, "properties": { "facing": "south", "half": "top", @@ -42598,7 +52398,7 @@ } }, { - "id": 19179, + "id": 20963, "properties": { "facing": "south", "half": "top", @@ -42607,7 +52407,7 @@ } }, { - "id": 19180, + "id": 20964, "properties": { "facing": "south", "half": "top", @@ -42616,7 +52416,7 @@ } }, { - "id": 19181, + "id": 20965, "properties": { "facing": "south", "half": "top", @@ -42625,7 +52425,7 @@ } }, { - "id": 19182, + "id": 20966, "properties": { "facing": "south", "half": "top", @@ -42634,7 +52434,7 @@ } }, { - "id": 19183, + "id": 20967, "properties": { "facing": "south", "half": "top", @@ -42643,7 +52443,7 @@ } }, { - "id": 19184, + "id": 20968, "properties": { "facing": "south", "half": "top", @@ -42652,7 +52452,7 @@ } }, { - "id": 19185, + "id": 20969, "properties": { "facing": "south", "half": "top", @@ -42661,7 +52461,7 @@ } }, { - "id": 19186, + "id": 20970, "properties": { "facing": "south", "half": "top", @@ -42670,7 +52470,7 @@ } }, { - "id": 19187, + "id": 20971, "properties": { "facing": "south", "half": "top", @@ -42679,7 +52479,7 @@ } }, { - "id": 19188, + "id": 20972, "properties": { "facing": "south", "half": "bottom", @@ -42688,7 +52488,7 @@ } }, { - "id": 19189, + "id": 20973, "properties": { "facing": "south", "half": "bottom", @@ -42697,7 +52497,7 @@ } }, { - "id": 19190, + "id": 20974, "properties": { "facing": "south", "half": "bottom", @@ -42706,7 +52506,7 @@ } }, { - "id": 19191, + "id": 20975, "properties": { "facing": "south", "half": "bottom", @@ -42715,7 +52515,7 @@ } }, { - "id": 19192, + "id": 20976, "properties": { "facing": "south", "half": "bottom", @@ -42724,7 +52524,7 @@ } }, { - "id": 19193, + "id": 20977, "properties": { "facing": "south", "half": "bottom", @@ -42733,7 +52533,7 @@ } }, { - "id": 19194, + "id": 20978, "properties": { "facing": "south", "half": "bottom", @@ -42742,7 +52542,7 @@ } }, { - "id": 19195, + "id": 20979, "properties": { "facing": "south", "half": "bottom", @@ -42751,7 +52551,7 @@ } }, { - "id": 19196, + "id": 20980, "properties": { "facing": "south", "half": "bottom", @@ -42760,7 +52560,7 @@ } }, { - "id": 19197, + "id": 20981, "properties": { "facing": "south", "half": "bottom", @@ -42769,7 +52569,7 @@ } }, { - "id": 19198, + "id": 20982, "properties": { "facing": "west", "half": "top", @@ -42778,7 +52578,7 @@ } }, { - "id": 19199, + "id": 20983, "properties": { "facing": "west", "half": "top", @@ -42787,7 +52587,7 @@ } }, { - "id": 19200, + "id": 20984, "properties": { "facing": "west", "half": "top", @@ -42796,7 +52596,7 @@ } }, { - "id": 19201, + "id": 20985, "properties": { "facing": "west", "half": "top", @@ -42805,7 +52605,7 @@ } }, { - "id": 19202, + "id": 20986, "properties": { "facing": "west", "half": "top", @@ -42814,7 +52614,7 @@ } }, { - "id": 19203, + "id": 20987, "properties": { "facing": "west", "half": "top", @@ -42823,7 +52623,7 @@ } }, { - "id": 19204, + "id": 20988, "properties": { "facing": "west", "half": "top", @@ -42832,7 +52632,7 @@ } }, { - "id": 19205, + "id": 20989, "properties": { "facing": "west", "half": "top", @@ -42841,7 +52641,7 @@ } }, { - "id": 19206, + "id": 20990, "properties": { "facing": "west", "half": "top", @@ -42850,7 +52650,7 @@ } }, { - "id": 19207, + "id": 20991, "properties": { "facing": "west", "half": "top", @@ -42859,7 +52659,7 @@ } }, { - "id": 19208, + "id": 20992, "properties": { "facing": "west", "half": "bottom", @@ -42868,7 +52668,7 @@ } }, { - "id": 19209, + "id": 20993, "properties": { "facing": "west", "half": "bottom", @@ -42877,7 +52677,7 @@ } }, { - "id": 19210, + "id": 20994, "properties": { "facing": "west", "half": "bottom", @@ -42886,7 +52686,7 @@ } }, { - "id": 19211, + "id": 20995, "properties": { "facing": "west", "half": "bottom", @@ -42895,7 +52695,7 @@ } }, { - "id": 19212, + "id": 20996, "properties": { "facing": "west", "half": "bottom", @@ -42904,7 +52704,7 @@ } }, { - "id": 19213, + "id": 20997, "properties": { "facing": "west", "half": "bottom", @@ -42913,7 +52713,7 @@ } }, { - "id": 19214, + "id": 20998, "properties": { "facing": "west", "half": "bottom", @@ -42922,7 +52722,7 @@ } }, { - "id": 19215, + "id": 20999, "properties": { "facing": "west", "half": "bottom", @@ -42931,7 +52731,7 @@ } }, { - "id": 19216, + "id": 21000, "properties": { "facing": "west", "half": "bottom", @@ -42940,7 +52740,7 @@ } }, { - "id": 19217, + "id": 21001, "properties": { "facing": "west", "half": "bottom", @@ -42949,7 +52749,7 @@ } }, { - "id": 19218, + "id": 21002, "properties": { "facing": "east", "half": "top", @@ -42958,7 +52758,7 @@ } }, { - "id": 19219, + "id": 21003, "properties": { "facing": "east", "half": "top", @@ -42967,7 +52767,7 @@ } }, { - "id": 19220, + "id": 21004, "properties": { "facing": "east", "half": "top", @@ -42976,7 +52776,7 @@ } }, { - "id": 19221, + "id": 21005, "properties": { "facing": "east", "half": "top", @@ -42985,7 +52785,7 @@ } }, { - "id": 19222, + "id": 21006, "properties": { "facing": "east", "half": "top", @@ -42994,7 +52794,7 @@ } }, { - "id": 19223, + "id": 21007, "properties": { "facing": "east", "half": "top", @@ -43003,7 +52803,7 @@ } }, { - "id": 19224, + "id": 21008, "properties": { "facing": "east", "half": "top", @@ -43012,7 +52812,7 @@ } }, { - "id": 19225, + "id": 21009, "properties": { "facing": "east", "half": "top", @@ -43021,7 +52821,7 @@ } }, { - "id": 19226, + "id": 21010, "properties": { "facing": "east", "half": "top", @@ -43030,7 +52830,7 @@ } }, { - "id": 19227, + "id": 21011, "properties": { "facing": "east", "half": "top", @@ -43039,7 +52839,7 @@ } }, { - "id": 19228, + "id": 21012, "properties": { "facing": "east", "half": "bottom", @@ -43048,7 +52848,7 @@ } }, { - "id": 19229, + "id": 21013, "properties": { "facing": "east", "half": "bottom", @@ -43057,7 +52857,7 @@ } }, { - "id": 19230, + "id": 21014, "properties": { "facing": "east", "half": "bottom", @@ -43066,7 +52866,7 @@ } }, { - "id": 19231, + "id": 21015, "properties": { "facing": "east", "half": "bottom", @@ -43075,7 +52875,7 @@ } }, { - "id": 19232, + "id": 21016, "properties": { "facing": "east", "half": "bottom", @@ -43084,7 +52884,7 @@ } }, { - "id": 19233, + "id": 21017, "properties": { "facing": "east", "half": "bottom", @@ -43093,7 +52893,7 @@ } }, { - "id": 19234, + "id": 21018, "properties": { "facing": "east", "half": "bottom", @@ -43102,7 +52902,7 @@ } }, { - "id": 19235, + "id": 21019, "properties": { "facing": "east", "half": "bottom", @@ -43111,7 +52911,7 @@ } }, { - "id": 19236, + "id": 21020, "properties": { "facing": "east", "half": "bottom", @@ -43120,7 +52920,7 @@ } }, { - "id": 19237, + "id": 21021, "properties": { "facing": "east", "half": "bottom", @@ -43134,7 +52934,7 @@ "states": [ { "default": true, - "id": 8960 + "id": 10604 } ] }, @@ -43152,21 +52952,21 @@ }, "states": [ { - "id": 9155, + "id": 10811, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 9156, + "id": 10812, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 9157, + "id": 10813, "properties": { "type": "bottom", "waterlogged": "true" @@ -43174,21 +52974,21 @@ }, { "default": true, - "id": 9158, + "id": 10814, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 9159, + "id": 10815, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 9160, + "id": 10816, "properties": { "type": "double", "waterlogged": "false" @@ -43200,7 +53000,7 @@ "states": [ { "default": true, - "id": 478 + "id": 486 } ] }, @@ -43218,21 +53018,21 @@ }, "states": [ { - "id": 9101, + "id": 10757, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 9102, + "id": 10758, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 9103, + "id": 10759, "properties": { "type": "bottom", "waterlogged": "true" @@ -43240,21 +53040,21 @@ }, { "default": true, - "id": 9104, + "id": 10760, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 9105, + "id": 10761, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 9106, + "id": 10762, "properties": { "type": "double", "waterlogged": "false" @@ -43286,97 +53086,97 @@ "states": [ { "default": true, - "id": 8782, + "id": 10426, "properties": { "rotation": "0" } }, { - "id": 8783, + "id": 10427, "properties": { "rotation": "1" } }, { - "id": 8784, + "id": 10428, "properties": { "rotation": "2" } }, { - "id": 8785, + "id": 10429, "properties": { "rotation": "3" } }, { - "id": 8786, + "id": 10430, "properties": { "rotation": "4" } }, { - "id": 8787, + "id": 10431, "properties": { "rotation": "5" } }, { - "id": 8788, + "id": 10432, "properties": { "rotation": "6" } }, { - "id": 8789, + "id": 10433, "properties": { "rotation": "7" } }, { - "id": 8790, + "id": 10434, "properties": { "rotation": "8" } }, { - "id": 8791, + "id": 10435, "properties": { "rotation": "9" } }, { - "id": 8792, + "id": 10436, "properties": { "rotation": "10" } }, { - "id": 8793, + "id": 10437, "properties": { "rotation": "11" } }, { - "id": 8794, + "id": 10438, "properties": { "rotation": "12" } }, { - "id": 8795, + "id": 10439, "properties": { "rotation": "13" } }, { - "id": 8796, + "id": 10440, "properties": { "rotation": "14" } }, { - "id": 8797, + "id": 10441, "properties": { "rotation": "15" } @@ -43402,7 +53202,7 @@ }, "states": [ { - "id": 1423, + "id": 1781, "properties": { "facing": "north", "occupied": "true", @@ -43410,7 +53210,7 @@ } }, { - "id": 1424, + "id": 1782, "properties": { "facing": "north", "occupied": "true", @@ -43418,7 +53218,7 @@ } }, { - "id": 1425, + "id": 1783, "properties": { "facing": "north", "occupied": "false", @@ -43427,7 +53227,7 @@ }, { "default": true, - "id": 1426, + "id": 1784, "properties": { "facing": "north", "occupied": "false", @@ -43435,7 +53235,7 @@ } }, { - "id": 1427, + "id": 1785, "properties": { "facing": "south", "occupied": "true", @@ -43443,7 +53243,7 @@ } }, { - "id": 1428, + "id": 1786, "properties": { "facing": "south", "occupied": "true", @@ -43451,7 +53251,7 @@ } }, { - "id": 1429, + "id": 1787, "properties": { "facing": "south", "occupied": "false", @@ -43459,7 +53259,7 @@ } }, { - "id": 1430, + "id": 1788, "properties": { "facing": "south", "occupied": "false", @@ -43467,7 +53267,7 @@ } }, { - "id": 1431, + "id": 1789, "properties": { "facing": "west", "occupied": "true", @@ -43475,7 +53275,7 @@ } }, { - "id": 1432, + "id": 1790, "properties": { "facing": "west", "occupied": "true", @@ -43483,7 +53283,7 @@ } }, { - "id": 1433, + "id": 1791, "properties": { "facing": "west", "occupied": "false", @@ -43491,7 +53291,7 @@ } }, { - "id": 1434, + "id": 1792, "properties": { "facing": "west", "occupied": "false", @@ -43499,7 +53299,7 @@ } }, { - "id": 1435, + "id": 1793, "properties": { "facing": "east", "occupied": "true", @@ -43507,7 +53307,7 @@ } }, { - "id": 1436, + "id": 1794, "properties": { "facing": "east", "occupied": "true", @@ -43515,7 +53315,7 @@ } }, { - "id": 1437, + "id": 1795, "properties": { "facing": "east", "occupied": "false", @@ -43523,7 +53323,7 @@ } }, { - "id": 1438, + "id": 1796, "properties": { "facing": "east", "occupied": "false", @@ -43551,7 +53351,7 @@ }, "states": [ { - "id": 18473, + "id": 20257, "properties": { "candles": "1", "lit": "true", @@ -43559,7 +53359,7 @@ } }, { - "id": 18474, + "id": 20258, "properties": { "candles": "1", "lit": "true", @@ -43567,7 +53367,7 @@ } }, { - "id": 18475, + "id": 20259, "properties": { "candles": "1", "lit": "false", @@ -43576,7 +53376,7 @@ }, { "default": true, - "id": 18476, + "id": 20260, "properties": { "candles": "1", "lit": "false", @@ -43584,7 +53384,7 @@ } }, { - "id": 18477, + "id": 20261, "properties": { "candles": "2", "lit": "true", @@ -43592,7 +53392,7 @@ } }, { - "id": 18478, + "id": 20262, "properties": { "candles": "2", "lit": "true", @@ -43600,7 +53400,7 @@ } }, { - "id": 18479, + "id": 20263, "properties": { "candles": "2", "lit": "false", @@ -43608,7 +53408,7 @@ } }, { - "id": 18480, + "id": 20264, "properties": { "candles": "2", "lit": "false", @@ -43616,7 +53416,7 @@ } }, { - "id": 18481, + "id": 20265, "properties": { "candles": "3", "lit": "true", @@ -43624,7 +53424,7 @@ } }, { - "id": 18482, + "id": 20266, "properties": { "candles": "3", "lit": "true", @@ -43632,7 +53432,7 @@ } }, { - "id": 18483, + "id": 20267, "properties": { "candles": "3", "lit": "false", @@ -43640,7 +53440,7 @@ } }, { - "id": 18484, + "id": 20268, "properties": { "candles": "3", "lit": "false", @@ -43648,7 +53448,7 @@ } }, { - "id": 18485, + "id": 20269, "properties": { "candles": "4", "lit": "true", @@ -43656,7 +53456,7 @@ } }, { - "id": 18486, + "id": 20270, "properties": { "candles": "4", "lit": "true", @@ -43664,7 +53464,7 @@ } }, { - "id": 18487, + "id": 20271, "properties": { "candles": "4", "lit": "false", @@ -43672,7 +53472,7 @@ } }, { - "id": 18488, + "id": 20272, "properties": { "candles": "4", "lit": "false", @@ -43690,14 +53490,14 @@ }, "states": [ { - "id": 18605, + "id": 20389, "properties": { "lit": "true" } }, { "default": true, - "id": 18606, + "id": 20390, "properties": { "lit": "false" } @@ -43708,7 +53508,7 @@ "states": [ { "default": true, - "id": 8616 + "id": 10260 } ] }, @@ -43716,7 +53516,7 @@ "states": [ { "default": true, - "id": 10328 + "id": 12112 } ] }, @@ -43724,7 +53524,7 @@ "states": [ { "default": true, - "id": 10344 + "id": 12128 } ] }, @@ -43740,25 +53540,25 @@ "states": [ { "default": true, - "id": 10291, + "id": 12075, "properties": { "facing": "north" } }, { - "id": 10292, + "id": 12076, "properties": { "facing": "south" } }, { - "id": 10293, + "id": 12077, "properties": { "facing": "west" } }, { - "id": 10294, + "id": 12078, "properties": { "facing": "east" } @@ -43778,38 +53578,38 @@ }, "states": [ { - "id": 10213, + "id": 11997, "properties": { "facing": "north" } }, { - "id": 10214, + "id": 11998, "properties": { "facing": "east" } }, { - "id": 10215, + "id": 11999, "properties": { "facing": "south" } }, { - "id": 10216, + "id": 12000, "properties": { "facing": "west" } }, { "default": true, - "id": 10217, + "id": 12001, "properties": { "facing": "up" } }, { - "id": 10218, + "id": 12002, "properties": { "facing": "down" } @@ -43820,7 +53620,7 @@ "states": [ { "default": true, - "id": 4413 + "id": 5789 } ] }, @@ -43849,7 +53649,7 @@ }, "states": [ { - "id": 7780, + "id": 9264, "properties": { "east": "true", "north": "true", @@ -43859,7 +53659,7 @@ } }, { - "id": 7781, + "id": 9265, "properties": { "east": "true", "north": "true", @@ -43869,7 +53669,7 @@ } }, { - "id": 7782, + "id": 9266, "properties": { "east": "true", "north": "true", @@ -43879,7 +53679,7 @@ } }, { - "id": 7783, + "id": 9267, "properties": { "east": "true", "north": "true", @@ -43889,7 +53689,7 @@ } }, { - "id": 7784, + "id": 9268, "properties": { "east": "true", "north": "true", @@ -43899,7 +53699,7 @@ } }, { - "id": 7785, + "id": 9269, "properties": { "east": "true", "north": "true", @@ -43909,7 +53709,7 @@ } }, { - "id": 7786, + "id": 9270, "properties": { "east": "true", "north": "true", @@ -43919,7 +53719,7 @@ } }, { - "id": 7787, + "id": 9271, "properties": { "east": "true", "north": "true", @@ -43929,7 +53729,7 @@ } }, { - "id": 7788, + "id": 9272, "properties": { "east": "true", "north": "false", @@ -43939,7 +53739,7 @@ } }, { - "id": 7789, + "id": 9273, "properties": { "east": "true", "north": "false", @@ -43949,7 +53749,7 @@ } }, { - "id": 7790, + "id": 9274, "properties": { "east": "true", "north": "false", @@ -43959,7 +53759,7 @@ } }, { - "id": 7791, + "id": 9275, "properties": { "east": "true", "north": "false", @@ -43969,7 +53769,7 @@ } }, { - "id": 7792, + "id": 9276, "properties": { "east": "true", "north": "false", @@ -43979,7 +53779,7 @@ } }, { - "id": 7793, + "id": 9277, "properties": { "east": "true", "north": "false", @@ -43989,7 +53789,7 @@ } }, { - "id": 7794, + "id": 9278, "properties": { "east": "true", "north": "false", @@ -43999,7 +53799,7 @@ } }, { - "id": 7795, + "id": 9279, "properties": { "east": "true", "north": "false", @@ -44009,7 +53809,7 @@ } }, { - "id": 7796, + "id": 9280, "properties": { "east": "false", "north": "true", @@ -44019,7 +53819,7 @@ } }, { - "id": 7797, + "id": 9281, "properties": { "east": "false", "north": "true", @@ -44029,7 +53829,7 @@ } }, { - "id": 7798, + "id": 9282, "properties": { "east": "false", "north": "true", @@ -44039,7 +53839,7 @@ } }, { - "id": 7799, + "id": 9283, "properties": { "east": "false", "north": "true", @@ -44049,7 +53849,7 @@ } }, { - "id": 7800, + "id": 9284, "properties": { "east": "false", "north": "true", @@ -44059,7 +53859,7 @@ } }, { - "id": 7801, + "id": 9285, "properties": { "east": "false", "north": "true", @@ -44069,7 +53869,7 @@ } }, { - "id": 7802, + "id": 9286, "properties": { "east": "false", "north": "true", @@ -44079,7 +53879,7 @@ } }, { - "id": 7803, + "id": 9287, "properties": { "east": "false", "north": "true", @@ -44089,7 +53889,7 @@ } }, { - "id": 7804, + "id": 9288, "properties": { "east": "false", "north": "false", @@ -44099,7 +53899,7 @@ } }, { - "id": 7805, + "id": 9289, "properties": { "east": "false", "north": "false", @@ -44109,7 +53909,7 @@ } }, { - "id": 7806, + "id": 9290, "properties": { "east": "false", "north": "false", @@ -44119,7 +53919,7 @@ } }, { - "id": 7807, + "id": 9291, "properties": { "east": "false", "north": "false", @@ -44129,7 +53929,7 @@ } }, { - "id": 7808, + "id": 9292, "properties": { "east": "false", "north": "false", @@ -44139,7 +53939,7 @@ } }, { - "id": 7809, + "id": 9293, "properties": { "east": "false", "north": "false", @@ -44149,7 +53949,7 @@ } }, { - "id": 7810, + "id": 9294, "properties": { "east": "false", "north": "false", @@ -44160,7 +53960,7 @@ }, { "default": true, - "id": 7811, + "id": 9295, "properties": { "east": "false", "north": "false", @@ -44175,7 +53975,7 @@ "states": [ { "default": true, - "id": 7485 + "id": 8969 } ] }, @@ -44191,25 +53991,25 @@ "states": [ { "default": true, - "id": 8930, + "id": 10574, "properties": { "facing": "north" } }, { - "id": 8931, + "id": 10575, "properties": { "facing": "south" } }, { - "id": 8932, + "id": 10576, "properties": { "facing": "west" } }, { - "id": 8933, + "id": 10577, "properties": { "facing": "east" } @@ -44220,7 +54020,7 @@ "states": [ { "default": true, - "id": 1647 + "id": 2005 } ] }, @@ -44236,25 +54036,25 @@ "states": [ { "default": true, - "id": 7235, + "id": 8719, "properties": { "facing": "north" } }, { - "id": 7236, + "id": 8720, "properties": { "facing": "south" } }, { - "id": 7237, + "id": 8721, "properties": { "facing": "west" } }, { - "id": 7238, + "id": 8722, "properties": { "facing": "east" } @@ -44265,7 +54065,7 @@ "states": [ { "default": true, - "id": 1666 + "id": 2024 } ] }, @@ -44289,7 +54089,7 @@ }, "states": [ { - "id": 7059, + "id": 8499, "properties": { "face": "floor", "facing": "north", @@ -44297,7 +54097,7 @@ } }, { - "id": 7060, + "id": 8500, "properties": { "face": "floor", "facing": "north", @@ -44305,7 +54105,7 @@ } }, { - "id": 7061, + "id": 8501, "properties": { "face": "floor", "facing": "south", @@ -44313,7 +54113,7 @@ } }, { - "id": 7062, + "id": 8502, "properties": { "face": "floor", "facing": "south", @@ -44321,7 +54121,7 @@ } }, { - "id": 7063, + "id": 8503, "properties": { "face": "floor", "facing": "west", @@ -44329,7 +54129,7 @@ } }, { - "id": 7064, + "id": 8504, "properties": { "face": "floor", "facing": "west", @@ -44337,7 +54137,7 @@ } }, { - "id": 7065, + "id": 8505, "properties": { "face": "floor", "facing": "east", @@ -44345,7 +54145,7 @@ } }, { - "id": 7066, + "id": 8506, "properties": { "face": "floor", "facing": "east", @@ -44353,7 +54153,7 @@ } }, { - "id": 7067, + "id": 8507, "properties": { "face": "wall", "facing": "north", @@ -44362,7 +54162,7 @@ }, { "default": true, - "id": 7068, + "id": 8508, "properties": { "face": "wall", "facing": "north", @@ -44370,7 +54170,7 @@ } }, { - "id": 7069, + "id": 8509, "properties": { "face": "wall", "facing": "south", @@ -44378,7 +54178,7 @@ } }, { - "id": 7070, + "id": 8510, "properties": { "face": "wall", "facing": "south", @@ -44386,7 +54186,7 @@ } }, { - "id": 7071, + "id": 8511, "properties": { "face": "wall", "facing": "west", @@ -44394,7 +54194,7 @@ } }, { - "id": 7072, + "id": 8512, "properties": { "face": "wall", "facing": "west", @@ -44402,7 +54202,7 @@ } }, { - "id": 7073, + "id": 8513, "properties": { "face": "wall", "facing": "east", @@ -44410,7 +54210,7 @@ } }, { - "id": 7074, + "id": 8514, "properties": { "face": "wall", "facing": "east", @@ -44418,7 +54218,7 @@ } }, { - "id": 7075, + "id": 8515, "properties": { "face": "ceiling", "facing": "north", @@ -44426,7 +54226,7 @@ } }, { - "id": 7076, + "id": 8516, "properties": { "face": "ceiling", "facing": "north", @@ -44434,7 +54234,7 @@ } }, { - "id": 7077, + "id": 8517, "properties": { "face": "ceiling", "facing": "south", @@ -44442,7 +54242,7 @@ } }, { - "id": 7078, + "id": 8518, "properties": { "face": "ceiling", "facing": "south", @@ -44450,7 +54250,7 @@ } }, { - "id": 7079, + "id": 8519, "properties": { "face": "ceiling", "facing": "west", @@ -44458,7 +54258,7 @@ } }, { - "id": 7080, + "id": 8520, "properties": { "face": "ceiling", "facing": "west", @@ -44466,7 +54266,7 @@ } }, { - "id": 7081, + "id": 8521, "properties": { "face": "ceiling", "facing": "east", @@ -44474,7 +54274,7 @@ } }, { - "id": 7082, + "id": 8522, "properties": { "face": "ceiling", "facing": "east", @@ -44510,7 +54310,7 @@ }, "states": [ { - "id": 9811, + "id": 11531, "properties": { "facing": "north", "half": "upper", @@ -44520,7 +54320,7 @@ } }, { - "id": 9812, + "id": 11532, "properties": { "facing": "north", "half": "upper", @@ -44530,7 +54330,7 @@ } }, { - "id": 9813, + "id": 11533, "properties": { "facing": "north", "half": "upper", @@ -44540,7 +54340,7 @@ } }, { - "id": 9814, + "id": 11534, "properties": { "facing": "north", "half": "upper", @@ -44550,7 +54350,7 @@ } }, { - "id": 9815, + "id": 11535, "properties": { "facing": "north", "half": "upper", @@ -44560,7 +54360,7 @@ } }, { - "id": 9816, + "id": 11536, "properties": { "facing": "north", "half": "upper", @@ -44570,7 +54370,7 @@ } }, { - "id": 9817, + "id": 11537, "properties": { "facing": "north", "half": "upper", @@ -44580,7 +54380,7 @@ } }, { - "id": 9818, + "id": 11538, "properties": { "facing": "north", "half": "upper", @@ -44590,7 +54390,7 @@ } }, { - "id": 9819, + "id": 11539, "properties": { "facing": "north", "half": "lower", @@ -44600,7 +54400,7 @@ } }, { - "id": 9820, + "id": 11540, "properties": { "facing": "north", "half": "lower", @@ -44610,7 +54410,7 @@ } }, { - "id": 9821, + "id": 11541, "properties": { "facing": "north", "half": "lower", @@ -44621,7 +54421,7 @@ }, { "default": true, - "id": 9822, + "id": 11542, "properties": { "facing": "north", "half": "lower", @@ -44631,7 +54431,7 @@ } }, { - "id": 9823, + "id": 11543, "properties": { "facing": "north", "half": "lower", @@ -44641,7 +54441,7 @@ } }, { - "id": 9824, + "id": 11544, "properties": { "facing": "north", "half": "lower", @@ -44651,7 +54451,7 @@ } }, { - "id": 9825, + "id": 11545, "properties": { "facing": "north", "half": "lower", @@ -44661,7 +54461,7 @@ } }, { - "id": 9826, + "id": 11546, "properties": { "facing": "north", "half": "lower", @@ -44671,7 +54471,7 @@ } }, { - "id": 9827, + "id": 11547, "properties": { "facing": "south", "half": "upper", @@ -44681,7 +54481,7 @@ } }, { - "id": 9828, + "id": 11548, "properties": { "facing": "south", "half": "upper", @@ -44691,7 +54491,7 @@ } }, { - "id": 9829, + "id": 11549, "properties": { "facing": "south", "half": "upper", @@ -44701,7 +54501,7 @@ } }, { - "id": 9830, + "id": 11550, "properties": { "facing": "south", "half": "upper", @@ -44711,7 +54511,7 @@ } }, { - "id": 9831, + "id": 11551, "properties": { "facing": "south", "half": "upper", @@ -44721,7 +54521,7 @@ } }, { - "id": 9832, + "id": 11552, "properties": { "facing": "south", "half": "upper", @@ -44731,7 +54531,7 @@ } }, { - "id": 9833, + "id": 11553, "properties": { "facing": "south", "half": "upper", @@ -44741,7 +54541,7 @@ } }, { - "id": 9834, + "id": 11554, "properties": { "facing": "south", "half": "upper", @@ -44751,7 +54551,7 @@ } }, { - "id": 9835, + "id": 11555, "properties": { "facing": "south", "half": "lower", @@ -44761,7 +54561,7 @@ } }, { - "id": 9836, + "id": 11556, "properties": { "facing": "south", "half": "lower", @@ -44771,7 +54571,7 @@ } }, { - "id": 9837, + "id": 11557, "properties": { "facing": "south", "half": "lower", @@ -44781,7 +54581,7 @@ } }, { - "id": 9838, + "id": 11558, "properties": { "facing": "south", "half": "lower", @@ -44791,7 +54591,7 @@ } }, { - "id": 9839, + "id": 11559, "properties": { "facing": "south", "half": "lower", @@ -44801,7 +54601,7 @@ } }, { - "id": 9840, + "id": 11560, "properties": { "facing": "south", "half": "lower", @@ -44811,7 +54611,7 @@ } }, { - "id": 9841, + "id": 11561, "properties": { "facing": "south", "half": "lower", @@ -44821,7 +54621,7 @@ } }, { - "id": 9842, + "id": 11562, "properties": { "facing": "south", "half": "lower", @@ -44831,7 +54631,7 @@ } }, { - "id": 9843, + "id": 11563, "properties": { "facing": "west", "half": "upper", @@ -44841,7 +54641,7 @@ } }, { - "id": 9844, + "id": 11564, "properties": { "facing": "west", "half": "upper", @@ -44851,7 +54651,7 @@ } }, { - "id": 9845, + "id": 11565, "properties": { "facing": "west", "half": "upper", @@ -44861,7 +54661,7 @@ } }, { - "id": 9846, + "id": 11566, "properties": { "facing": "west", "half": "upper", @@ -44871,7 +54671,7 @@ } }, { - "id": 9847, + "id": 11567, "properties": { "facing": "west", "half": "upper", @@ -44881,7 +54681,7 @@ } }, { - "id": 9848, + "id": 11568, "properties": { "facing": "west", "half": "upper", @@ -44891,7 +54691,7 @@ } }, { - "id": 9849, + "id": 11569, "properties": { "facing": "west", "half": "upper", @@ -44901,7 +54701,7 @@ } }, { - "id": 9850, + "id": 11570, "properties": { "facing": "west", "half": "upper", @@ -44911,7 +54711,7 @@ } }, { - "id": 9851, + "id": 11571, "properties": { "facing": "west", "half": "lower", @@ -44921,7 +54721,7 @@ } }, { - "id": 9852, + "id": 11572, "properties": { "facing": "west", "half": "lower", @@ -44931,7 +54731,7 @@ } }, { - "id": 9853, + "id": 11573, "properties": { "facing": "west", "half": "lower", @@ -44941,7 +54741,7 @@ } }, { - "id": 9854, + "id": 11574, "properties": { "facing": "west", "half": "lower", @@ -44951,7 +54751,7 @@ } }, { - "id": 9855, + "id": 11575, "properties": { "facing": "west", "half": "lower", @@ -44961,7 +54761,7 @@ } }, { - "id": 9856, + "id": 11576, "properties": { "facing": "west", "half": "lower", @@ -44971,7 +54771,7 @@ } }, { - "id": 9857, + "id": 11577, "properties": { "facing": "west", "half": "lower", @@ -44981,7 +54781,7 @@ } }, { - "id": 9858, + "id": 11578, "properties": { "facing": "west", "half": "lower", @@ -44991,7 +54791,7 @@ } }, { - "id": 9859, + "id": 11579, "properties": { "facing": "east", "half": "upper", @@ -45001,7 +54801,7 @@ } }, { - "id": 9860, + "id": 11580, "properties": { "facing": "east", "half": "upper", @@ -45011,7 +54811,7 @@ } }, { - "id": 9861, + "id": 11581, "properties": { "facing": "east", "half": "upper", @@ -45021,7 +54821,7 @@ } }, { - "id": 9862, + "id": 11582, "properties": { "facing": "east", "half": "upper", @@ -45031,7 +54831,7 @@ } }, { - "id": 9863, + "id": 11583, "properties": { "facing": "east", "half": "upper", @@ -45041,7 +54841,7 @@ } }, { - "id": 9864, + "id": 11584, "properties": { "facing": "east", "half": "upper", @@ -45051,7 +54851,7 @@ } }, { - "id": 9865, + "id": 11585, "properties": { "facing": "east", "half": "upper", @@ -45061,7 +54861,7 @@ } }, { - "id": 9866, + "id": 11586, "properties": { "facing": "east", "half": "upper", @@ -45071,7 +54871,7 @@ } }, { - "id": 9867, + "id": 11587, "properties": { "facing": "east", "half": "lower", @@ -45081,7 +54881,7 @@ } }, { - "id": 9868, + "id": 11588, "properties": { "facing": "east", "half": "lower", @@ -45091,7 +54891,7 @@ } }, { - "id": 9869, + "id": 11589, "properties": { "facing": "east", "half": "lower", @@ -45101,7 +54901,7 @@ } }, { - "id": 9870, + "id": 11590, "properties": { "facing": "east", "half": "lower", @@ -45111,7 +54911,7 @@ } }, { - "id": 9871, + "id": 11591, "properties": { "facing": "east", "half": "lower", @@ -45121,7 +54921,7 @@ } }, { - "id": 9872, + "id": 11592, "properties": { "facing": "east", "half": "lower", @@ -45131,7 +54931,7 @@ } }, { - "id": 9873, + "id": 11593, "properties": { "facing": "east", "half": "lower", @@ -45141,7 +54941,7 @@ } }, { - "id": 9874, + "id": 11594, "properties": { "facing": "east", "half": "lower", @@ -45177,7 +54977,7 @@ }, "states": [ { - "id": 9491, + "id": 11179, "properties": { "east": "true", "north": "true", @@ -45187,7 +54987,7 @@ } }, { - "id": 9492, + "id": 11180, "properties": { "east": "true", "north": "true", @@ -45197,7 +54997,7 @@ } }, { - "id": 9493, + "id": 11181, "properties": { "east": "true", "north": "true", @@ -45207,7 +55007,7 @@ } }, { - "id": 9494, + "id": 11182, "properties": { "east": "true", "north": "true", @@ -45217,7 +55017,7 @@ } }, { - "id": 9495, + "id": 11183, "properties": { "east": "true", "north": "true", @@ -45227,7 +55027,7 @@ } }, { - "id": 9496, + "id": 11184, "properties": { "east": "true", "north": "true", @@ -45237,7 +55037,7 @@ } }, { - "id": 9497, + "id": 11185, "properties": { "east": "true", "north": "true", @@ -45247,7 +55047,7 @@ } }, { - "id": 9498, + "id": 11186, "properties": { "east": "true", "north": "true", @@ -45257,7 +55057,7 @@ } }, { - "id": 9499, + "id": 11187, "properties": { "east": "true", "north": "false", @@ -45267,7 +55067,7 @@ } }, { - "id": 9500, + "id": 11188, "properties": { "east": "true", "north": "false", @@ -45277,7 +55077,7 @@ } }, { - "id": 9501, + "id": 11189, "properties": { "east": "true", "north": "false", @@ -45287,7 +55087,7 @@ } }, { - "id": 9502, + "id": 11190, "properties": { "east": "true", "north": "false", @@ -45297,7 +55097,7 @@ } }, { - "id": 9503, + "id": 11191, "properties": { "east": "true", "north": "false", @@ -45307,7 +55107,7 @@ } }, { - "id": 9504, + "id": 11192, "properties": { "east": "true", "north": "false", @@ -45317,7 +55117,7 @@ } }, { - "id": 9505, + "id": 11193, "properties": { "east": "true", "north": "false", @@ -45327,7 +55127,7 @@ } }, { - "id": 9506, + "id": 11194, "properties": { "east": "true", "north": "false", @@ -45337,7 +55137,7 @@ } }, { - "id": 9507, + "id": 11195, "properties": { "east": "false", "north": "true", @@ -45347,7 +55147,7 @@ } }, { - "id": 9508, + "id": 11196, "properties": { "east": "false", "north": "true", @@ -45357,7 +55157,7 @@ } }, { - "id": 9509, + "id": 11197, "properties": { "east": "false", "north": "true", @@ -45367,7 +55167,7 @@ } }, { - "id": 9510, + "id": 11198, "properties": { "east": "false", "north": "true", @@ -45377,7 +55177,7 @@ } }, { - "id": 9511, + "id": 11199, "properties": { "east": "false", "north": "true", @@ -45387,7 +55187,7 @@ } }, { - "id": 9512, + "id": 11200, "properties": { "east": "false", "north": "true", @@ -45397,7 +55197,7 @@ } }, { - "id": 9513, + "id": 11201, "properties": { "east": "false", "north": "true", @@ -45407,7 +55207,7 @@ } }, { - "id": 9514, + "id": 11202, "properties": { "east": "false", "north": "true", @@ -45417,7 +55217,7 @@ } }, { - "id": 9515, + "id": 11203, "properties": { "east": "false", "north": "false", @@ -45427,7 +55227,7 @@ } }, { - "id": 9516, + "id": 11204, "properties": { "east": "false", "north": "false", @@ -45437,7 +55237,7 @@ } }, { - "id": 9517, + "id": 11205, "properties": { "east": "false", "north": "false", @@ -45447,7 +55247,7 @@ } }, { - "id": 9518, + "id": 11206, "properties": { "east": "false", "north": "false", @@ -45457,7 +55257,7 @@ } }, { - "id": 9519, + "id": 11207, "properties": { "east": "false", "north": "false", @@ -45467,7 +55267,7 @@ } }, { - "id": 9520, + "id": 11208, "properties": { "east": "false", "north": "false", @@ -45477,7 +55277,7 @@ } }, { - "id": 9521, + "id": 11209, "properties": { "east": "false", "north": "false", @@ -45488,7 +55288,7 @@ }, { "default": true, - "id": 9522, + "id": 11210, "properties": { "east": "false", "north": "false", @@ -45522,7 +55322,7 @@ }, "states": [ { - "id": 9299, + "id": 10955, "properties": { "facing": "north", "in_wall": "true", @@ -45531,7 +55331,7 @@ } }, { - "id": 9300, + "id": 10956, "properties": { "facing": "north", "in_wall": "true", @@ -45540,7 +55340,7 @@ } }, { - "id": 9301, + "id": 10957, "properties": { "facing": "north", "in_wall": "true", @@ -45549,7 +55349,7 @@ } }, { - "id": 9302, + "id": 10958, "properties": { "facing": "north", "in_wall": "true", @@ -45558,7 +55358,7 @@ } }, { - "id": 9303, + "id": 10959, "properties": { "facing": "north", "in_wall": "false", @@ -45567,7 +55367,7 @@ } }, { - "id": 9304, + "id": 10960, "properties": { "facing": "north", "in_wall": "false", @@ -45576,7 +55376,7 @@ } }, { - "id": 9305, + "id": 10961, "properties": { "facing": "north", "in_wall": "false", @@ -45586,7 +55386,7 @@ }, { "default": true, - "id": 9306, + "id": 10962, "properties": { "facing": "north", "in_wall": "false", @@ -45595,7 +55395,7 @@ } }, { - "id": 9307, + "id": 10963, "properties": { "facing": "south", "in_wall": "true", @@ -45604,7 +55404,7 @@ } }, { - "id": 9308, + "id": 10964, "properties": { "facing": "south", "in_wall": "true", @@ -45613,7 +55413,7 @@ } }, { - "id": 9309, + "id": 10965, "properties": { "facing": "south", "in_wall": "true", @@ -45622,7 +55422,7 @@ } }, { - "id": 9310, + "id": 10966, "properties": { "facing": "south", "in_wall": "true", @@ -45631,7 +55431,7 @@ } }, { - "id": 9311, + "id": 10967, "properties": { "facing": "south", "in_wall": "false", @@ -45640,7 +55440,7 @@ } }, { - "id": 9312, + "id": 10968, "properties": { "facing": "south", "in_wall": "false", @@ -45649,7 +55449,7 @@ } }, { - "id": 9313, + "id": 10969, "properties": { "facing": "south", "in_wall": "false", @@ -45658,7 +55458,7 @@ } }, { - "id": 9314, + "id": 10970, "properties": { "facing": "south", "in_wall": "false", @@ -45667,7 +55467,7 @@ } }, { - "id": 9315, + "id": 10971, "properties": { "facing": "west", "in_wall": "true", @@ -45676,7 +55476,7 @@ } }, { - "id": 9316, + "id": 10972, "properties": { "facing": "west", "in_wall": "true", @@ -45685,7 +55485,7 @@ } }, { - "id": 9317, + "id": 10973, "properties": { "facing": "west", "in_wall": "true", @@ -45694,7 +55494,7 @@ } }, { - "id": 9318, + "id": 10974, "properties": { "facing": "west", "in_wall": "true", @@ -45703,7 +55503,7 @@ } }, { - "id": 9319, + "id": 10975, "properties": { "facing": "west", "in_wall": "false", @@ -45712,7 +55512,7 @@ } }, { - "id": 9320, + "id": 10976, "properties": { "facing": "west", "in_wall": "false", @@ -45721,7 +55521,7 @@ } }, { - "id": 9321, + "id": 10977, "properties": { "facing": "west", "in_wall": "false", @@ -45730,7 +55530,7 @@ } }, { - "id": 9322, + "id": 10978, "properties": { "facing": "west", "in_wall": "false", @@ -45739,7 +55539,7 @@ } }, { - "id": 9323, + "id": 10979, "properties": { "facing": "east", "in_wall": "true", @@ -45748,7 +55548,7 @@ } }, { - "id": 9324, + "id": 10980, "properties": { "facing": "east", "in_wall": "true", @@ -45757,7 +55557,7 @@ } }, { - "id": 9325, + "id": 10981, "properties": { "facing": "east", "in_wall": "true", @@ -45766,7 +55566,7 @@ } }, { - "id": 9326, + "id": 10982, "properties": { "facing": "east", "in_wall": "true", @@ -45775,7 +55575,7 @@ } }, { - "id": 9327, + "id": 10983, "properties": { "facing": "east", "in_wall": "false", @@ -45784,7 +55584,7 @@ } }, { - "id": 9328, + "id": 10984, "properties": { "facing": "east", "in_wall": "false", @@ -45793,7 +55593,7 @@ } }, { - "id": 9329, + "id": 10985, "properties": { "facing": "east", "in_wall": "false", @@ -45802,7 +55602,7 @@ } }, { - "id": 9330, + "id": 10986, "properties": { "facing": "east", "in_wall": "false", @@ -45812,6 +55612,551 @@ } ] }, + "minecraft:dark_oak_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5062, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5063, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5064, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5065, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5066, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5067, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5068, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5069, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5070, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5071, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5072, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5073, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5074, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5075, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5076, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5077, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5078, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5079, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5080, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5081, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5082, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5083, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5084, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5085, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5086, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5087, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5088, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5089, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5090, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5091, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5092, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5093, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5094, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5095, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5096, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5097, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5098, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5099, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5100, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5101, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5102, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5103, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5104, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5105, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5106, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5107, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5108, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5109, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5110, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5111, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5112, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5113, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5114, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5115, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5116, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5117, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5118, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5119, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5120, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5121, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5122, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5123, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5124, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5125, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, "minecraft:dark_oak_leaves": { "properties": { "distance": [ @@ -45833,74 +56178,10 @@ ] }, "states": [ - { - "id": 346, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 347, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 348, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 349, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 350, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 351, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 352, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 353, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, { "id": 354, "properties": { - "distance": "3", + "distance": "1", "persistent": "true", "waterlogged": "true" } @@ -45908,7 +56189,7 @@ { "id": 355, "properties": { - "distance": "3", + "distance": "1", "persistent": "true", "waterlogged": "false" } @@ -45916,7 +56197,7 @@ { "id": 356, "properties": { - "distance": "3", + "distance": "1", "persistent": "false", "waterlogged": "true" } @@ -45924,7 +56205,7 @@ { "id": 357, "properties": { - "distance": "3", + "distance": "1", "persistent": "false", "waterlogged": "false" } @@ -45932,7 +56213,7 @@ { "id": 358, "properties": { - "distance": "4", + "distance": "2", "persistent": "true", "waterlogged": "true" } @@ -45940,7 +56221,7 @@ { "id": 359, "properties": { - "distance": "4", + "distance": "2", "persistent": "true", "waterlogged": "false" } @@ -45948,7 +56229,7 @@ { "id": 360, "properties": { - "distance": "4", + "distance": "2", "persistent": "false", "waterlogged": "true" } @@ -45956,7 +56237,7 @@ { "id": 361, "properties": { - "distance": "4", + "distance": "2", "persistent": "false", "waterlogged": "false" } @@ -45964,7 +56245,7 @@ { "id": 362, "properties": { - "distance": "5", + "distance": "3", "persistent": "true", "waterlogged": "true" } @@ -45972,7 +56253,7 @@ { "id": 363, "properties": { - "distance": "5", + "distance": "3", "persistent": "true", "waterlogged": "false" } @@ -45980,7 +56261,7 @@ { "id": 364, "properties": { - "distance": "5", + "distance": "3", "persistent": "false", "waterlogged": "true" } @@ -45988,7 +56269,7 @@ { "id": 365, "properties": { - "distance": "5", + "distance": "3", "persistent": "false", "waterlogged": "false" } @@ -45996,7 +56277,7 @@ { "id": 366, "properties": { - "distance": "6", + "distance": "4", "persistent": "true", "waterlogged": "true" } @@ -46004,7 +56285,7 @@ { "id": 367, "properties": { - "distance": "6", + "distance": "4", "persistent": "true", "waterlogged": "false" } @@ -46012,7 +56293,7 @@ { "id": 368, "properties": { - "distance": "6", + "distance": "4", "persistent": "false", "waterlogged": "true" } @@ -46020,7 +56301,7 @@ { "id": 369, "properties": { - "distance": "6", + "distance": "4", "persistent": "false", "waterlogged": "false" } @@ -46028,7 +56309,7 @@ { "id": 370, "properties": { - "distance": "7", + "distance": "5", "persistent": "true", "waterlogged": "true" } @@ -46036,13 +56317,77 @@ { "id": 371, "properties": { - "distance": "7", + "distance": "5", "persistent": "true", "waterlogged": "false" } }, { "id": 372, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 373, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 374, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 375, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 376, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 377, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 378, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 379, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 380, "properties": { "distance": "7", "persistent": "false", @@ -46051,7 +56396,7 @@ }, { "default": true, - "id": 373, + "id": 381, "properties": { "distance": "7", "persistent": "false", @@ -46070,20 +56415,20 @@ }, "states": [ { - "id": 132, + "id": 134, "properties": { "axis": "x" } }, { "default": true, - "id": 133, + "id": 135, "properties": { "axis": "y" } }, { - "id": 134, + "id": 136, "properties": { "axis": "z" } @@ -46107,14 +56452,14 @@ }, "states": [ { - "id": 4188, + "id": 5562, "properties": { "powered": "true" } }, { "default": true, - "id": 4189, + "id": 5563, "properties": { "powered": "false" } @@ -46131,13 +56476,13 @@ "states": [ { "default": true, - "id": 32, + "id": 34, "properties": { "stage": "0" } }, { - "id": 33, + "id": 35, "properties": { "stage": "1" } @@ -46171,7 +56516,7 @@ }, "states": [ { - "id": 3796, + "id": 4410, "properties": { "rotation": "0", "waterlogged": "true" @@ -46179,217 +56524,217 @@ }, { "default": true, - "id": 3797, + "id": 4411, "properties": { "rotation": "0", "waterlogged": "false" } }, { - "id": 3798, + "id": 4412, "properties": { "rotation": "1", "waterlogged": "true" } }, { - "id": 3799, + "id": 4413, "properties": { "rotation": "1", "waterlogged": "false" } }, { - "id": 3800, + "id": 4414, "properties": { "rotation": "2", "waterlogged": "true" } }, { - "id": 3801, + "id": 4415, "properties": { "rotation": "2", "waterlogged": "false" } }, { - "id": 3802, + "id": 4416, "properties": { "rotation": "3", "waterlogged": "true" } }, { - "id": 3803, + "id": 4417, "properties": { "rotation": "3", "waterlogged": "false" } }, { - "id": 3804, + "id": 4418, "properties": { "rotation": "4", "waterlogged": "true" } }, { - "id": 3805, + "id": 4419, "properties": { "rotation": "4", "waterlogged": "false" } }, { - "id": 3806, + "id": 4420, "properties": { "rotation": "5", "waterlogged": "true" } }, { - "id": 3807, + "id": 4421, "properties": { "rotation": "5", "waterlogged": "false" } }, { - "id": 3808, + "id": 4422, "properties": { "rotation": "6", "waterlogged": "true" } }, { - "id": 3809, + "id": 4423, "properties": { "rotation": "6", "waterlogged": "false" } }, { - "id": 3810, + "id": 4424, "properties": { "rotation": "7", "waterlogged": "true" } }, { - "id": 3811, + "id": 4425, "properties": { "rotation": "7", "waterlogged": "false" } }, { - "id": 3812, + "id": 4426, "properties": { "rotation": "8", "waterlogged": "true" } }, { - "id": 3813, + "id": 4427, "properties": { "rotation": "8", "waterlogged": "false" } }, { - "id": 3814, + "id": 4428, "properties": { "rotation": "9", "waterlogged": "true" } }, { - "id": 3815, + "id": 4429, "properties": { "rotation": "9", "waterlogged": "false" } }, { - "id": 3816, + "id": 4430, "properties": { "rotation": "10", "waterlogged": "true" } }, { - "id": 3817, + "id": 4431, "properties": { "rotation": "10", "waterlogged": "false" } }, { - "id": 3818, + "id": 4432, "properties": { "rotation": "11", "waterlogged": "true" } }, { - "id": 3819, + "id": 4433, "properties": { "rotation": "11", "waterlogged": "false" } }, { - "id": 3820, + "id": 4434, "properties": { "rotation": "12", "waterlogged": "true" } }, { - "id": 3821, + "id": 4435, "properties": { "rotation": "12", "waterlogged": "false" } }, { - "id": 3822, + "id": 4436, "properties": { "rotation": "13", "waterlogged": "true" } }, { - "id": 3823, + "id": 4437, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 3824, + "id": 4438, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 3825, + "id": 4439, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 3826, + "id": 4440, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 3827, + "id": 4441, "properties": { "rotation": "15", "waterlogged": "false" @@ -46411,21 +56756,21 @@ }, "states": [ { - "id": 9071, + "id": 10715, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 9072, + "id": 10716, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 9073, + "id": 10717, "properties": { "type": "bottom", "waterlogged": "true" @@ -46433,21 +56778,21 @@ }, { "default": true, - "id": 9074, + "id": 10718, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 9075, + "id": 10719, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 9076, + "id": 10720, "properties": { "type": "double", "waterlogged": "false" @@ -46481,7 +56826,7 @@ }, "states": [ { - "id": 8084, + "id": 9568, "properties": { "facing": "north", "half": "top", @@ -46490,7 +56835,7 @@ } }, { - "id": 8085, + "id": 9569, "properties": { "facing": "north", "half": "top", @@ -46499,7 +56844,7 @@ } }, { - "id": 8086, + "id": 9570, "properties": { "facing": "north", "half": "top", @@ -46508,7 +56853,7 @@ } }, { - "id": 8087, + "id": 9571, "properties": { "facing": "north", "half": "top", @@ -46517,7 +56862,7 @@ } }, { - "id": 8088, + "id": 9572, "properties": { "facing": "north", "half": "top", @@ -46526,7 +56871,7 @@ } }, { - "id": 8089, + "id": 9573, "properties": { "facing": "north", "half": "top", @@ -46535,7 +56880,7 @@ } }, { - "id": 8090, + "id": 9574, "properties": { "facing": "north", "half": "top", @@ -46544,7 +56889,7 @@ } }, { - "id": 8091, + "id": 9575, "properties": { "facing": "north", "half": "top", @@ -46553,7 +56898,7 @@ } }, { - "id": 8092, + "id": 9576, "properties": { "facing": "north", "half": "top", @@ -46562,7 +56907,7 @@ } }, { - "id": 8093, + "id": 9577, "properties": { "facing": "north", "half": "top", @@ -46571,7 +56916,7 @@ } }, { - "id": 8094, + "id": 9578, "properties": { "facing": "north", "half": "bottom", @@ -46581,7 +56926,7 @@ }, { "default": true, - "id": 8095, + "id": 9579, "properties": { "facing": "north", "half": "bottom", @@ -46590,7 +56935,7 @@ } }, { - "id": 8096, + "id": 9580, "properties": { "facing": "north", "half": "bottom", @@ -46599,7 +56944,7 @@ } }, { - "id": 8097, + "id": 9581, "properties": { "facing": "north", "half": "bottom", @@ -46608,7 +56953,7 @@ } }, { - "id": 8098, + "id": 9582, "properties": { "facing": "north", "half": "bottom", @@ -46617,7 +56962,7 @@ } }, { - "id": 8099, + "id": 9583, "properties": { "facing": "north", "half": "bottom", @@ -46626,7 +56971,7 @@ } }, { - "id": 8100, + "id": 9584, "properties": { "facing": "north", "half": "bottom", @@ -46635,7 +56980,7 @@ } }, { - "id": 8101, + "id": 9585, "properties": { "facing": "north", "half": "bottom", @@ -46644,7 +56989,7 @@ } }, { - "id": 8102, + "id": 9586, "properties": { "facing": "north", "half": "bottom", @@ -46653,7 +56998,7 @@ } }, { - "id": 8103, + "id": 9587, "properties": { "facing": "north", "half": "bottom", @@ -46662,7 +57007,7 @@ } }, { - "id": 8104, + "id": 9588, "properties": { "facing": "south", "half": "top", @@ -46671,7 +57016,7 @@ } }, { - "id": 8105, + "id": 9589, "properties": { "facing": "south", "half": "top", @@ -46680,7 +57025,7 @@ } }, { - "id": 8106, + "id": 9590, "properties": { "facing": "south", "half": "top", @@ -46689,7 +57034,7 @@ } }, { - "id": 8107, + "id": 9591, "properties": { "facing": "south", "half": "top", @@ -46698,7 +57043,7 @@ } }, { - "id": 8108, + "id": 9592, "properties": { "facing": "south", "half": "top", @@ -46707,7 +57052,7 @@ } }, { - "id": 8109, + "id": 9593, "properties": { "facing": "south", "half": "top", @@ -46716,7 +57061,7 @@ } }, { - "id": 8110, + "id": 9594, "properties": { "facing": "south", "half": "top", @@ -46725,7 +57070,7 @@ } }, { - "id": 8111, + "id": 9595, "properties": { "facing": "south", "half": "top", @@ -46734,7 +57079,7 @@ } }, { - "id": 8112, + "id": 9596, "properties": { "facing": "south", "half": "top", @@ -46743,7 +57088,7 @@ } }, { - "id": 8113, + "id": 9597, "properties": { "facing": "south", "half": "top", @@ -46752,7 +57097,7 @@ } }, { - "id": 8114, + "id": 9598, "properties": { "facing": "south", "half": "bottom", @@ -46761,7 +57106,7 @@ } }, { - "id": 8115, + "id": 9599, "properties": { "facing": "south", "half": "bottom", @@ -46770,7 +57115,7 @@ } }, { - "id": 8116, + "id": 9600, "properties": { "facing": "south", "half": "bottom", @@ -46779,7 +57124,7 @@ } }, { - "id": 8117, + "id": 9601, "properties": { "facing": "south", "half": "bottom", @@ -46788,7 +57133,7 @@ } }, { - "id": 8118, + "id": 9602, "properties": { "facing": "south", "half": "bottom", @@ -46797,7 +57142,7 @@ } }, { - "id": 8119, + "id": 9603, "properties": { "facing": "south", "half": "bottom", @@ -46806,7 +57151,7 @@ } }, { - "id": 8120, + "id": 9604, "properties": { "facing": "south", "half": "bottom", @@ -46815,7 +57160,7 @@ } }, { - "id": 8121, + "id": 9605, "properties": { "facing": "south", "half": "bottom", @@ -46824,7 +57169,7 @@ } }, { - "id": 8122, + "id": 9606, "properties": { "facing": "south", "half": "bottom", @@ -46833,7 +57178,7 @@ } }, { - "id": 8123, + "id": 9607, "properties": { "facing": "south", "half": "bottom", @@ -46842,7 +57187,7 @@ } }, { - "id": 8124, + "id": 9608, "properties": { "facing": "west", "half": "top", @@ -46851,7 +57196,7 @@ } }, { - "id": 8125, + "id": 9609, "properties": { "facing": "west", "half": "top", @@ -46860,7 +57205,7 @@ } }, { - "id": 8126, + "id": 9610, "properties": { "facing": "west", "half": "top", @@ -46869,7 +57214,7 @@ } }, { - "id": 8127, + "id": 9611, "properties": { "facing": "west", "half": "top", @@ -46878,7 +57223,7 @@ } }, { - "id": 8128, + "id": 9612, "properties": { "facing": "west", "half": "top", @@ -46887,7 +57232,7 @@ } }, { - "id": 8129, + "id": 9613, "properties": { "facing": "west", "half": "top", @@ -46896,7 +57241,7 @@ } }, { - "id": 8130, + "id": 9614, "properties": { "facing": "west", "half": "top", @@ -46905,7 +57250,7 @@ } }, { - "id": 8131, + "id": 9615, "properties": { "facing": "west", "half": "top", @@ -46914,7 +57259,7 @@ } }, { - "id": 8132, + "id": 9616, "properties": { "facing": "west", "half": "top", @@ -46923,7 +57268,7 @@ } }, { - "id": 8133, + "id": 9617, "properties": { "facing": "west", "half": "top", @@ -46932,7 +57277,7 @@ } }, { - "id": 8134, + "id": 9618, "properties": { "facing": "west", "half": "bottom", @@ -46941,7 +57286,7 @@ } }, { - "id": 8135, + "id": 9619, "properties": { "facing": "west", "half": "bottom", @@ -46950,7 +57295,7 @@ } }, { - "id": 8136, + "id": 9620, "properties": { "facing": "west", "half": "bottom", @@ -46959,7 +57304,7 @@ } }, { - "id": 8137, + "id": 9621, "properties": { "facing": "west", "half": "bottom", @@ -46968,7 +57313,7 @@ } }, { - "id": 8138, + "id": 9622, "properties": { "facing": "west", "half": "bottom", @@ -46977,7 +57322,7 @@ } }, { - "id": 8139, + "id": 9623, "properties": { "facing": "west", "half": "bottom", @@ -46986,7 +57331,7 @@ } }, { - "id": 8140, + "id": 9624, "properties": { "facing": "west", "half": "bottom", @@ -46995,7 +57340,7 @@ } }, { - "id": 8141, + "id": 9625, "properties": { "facing": "west", "half": "bottom", @@ -47004,7 +57349,7 @@ } }, { - "id": 8142, + "id": 9626, "properties": { "facing": "west", "half": "bottom", @@ -47013,7 +57358,7 @@ } }, { - "id": 8143, + "id": 9627, "properties": { "facing": "west", "half": "bottom", @@ -47022,7 +57367,7 @@ } }, { - "id": 8144, + "id": 9628, "properties": { "facing": "east", "half": "top", @@ -47031,7 +57376,7 @@ } }, { - "id": 8145, + "id": 9629, "properties": { "facing": "east", "half": "top", @@ -47040,7 +57385,7 @@ } }, { - "id": 8146, + "id": 9630, "properties": { "facing": "east", "half": "top", @@ -47049,7 +57394,7 @@ } }, { - "id": 8147, + "id": 9631, "properties": { "facing": "east", "half": "top", @@ -47058,7 +57403,7 @@ } }, { - "id": 8148, + "id": 9632, "properties": { "facing": "east", "half": "top", @@ -47067,7 +57412,7 @@ } }, { - "id": 8149, + "id": 9633, "properties": { "facing": "east", "half": "top", @@ -47076,7 +57421,7 @@ } }, { - "id": 8150, + "id": 9634, "properties": { "facing": "east", "half": "top", @@ -47085,7 +57430,7 @@ } }, { - "id": 8151, + "id": 9635, "properties": { "facing": "east", "half": "top", @@ -47094,7 +57439,7 @@ } }, { - "id": 8152, + "id": 9636, "properties": { "facing": "east", "half": "top", @@ -47103,7 +57448,7 @@ } }, { - "id": 8153, + "id": 9637, "properties": { "facing": "east", "half": "top", @@ -47112,7 +57457,7 @@ } }, { - "id": 8154, + "id": 9638, "properties": { "facing": "east", "half": "bottom", @@ -47121,7 +57466,7 @@ } }, { - "id": 8155, + "id": 9639, "properties": { "facing": "east", "half": "bottom", @@ -47130,7 +57475,7 @@ } }, { - "id": 8156, + "id": 9640, "properties": { "facing": "east", "half": "bottom", @@ -47139,7 +57484,7 @@ } }, { - "id": 8157, + "id": 9641, "properties": { "facing": "east", "half": "bottom", @@ -47148,7 +57493,7 @@ } }, { - "id": 8158, + "id": 9642, "properties": { "facing": "east", "half": "bottom", @@ -47157,7 +57502,7 @@ } }, { - "id": 8159, + "id": 9643, "properties": { "facing": "east", "half": "bottom", @@ -47166,7 +57511,7 @@ } }, { - "id": 8160, + "id": 9644, "properties": { "facing": "east", "half": "bottom", @@ -47175,7 +57520,7 @@ } }, { - "id": 8161, + "id": 9645, "properties": { "facing": "east", "half": "bottom", @@ -47184,7 +57529,7 @@ } }, { - "id": 8162, + "id": 9646, "properties": { "facing": "east", "half": "bottom", @@ -47193,7 +57538,7 @@ } }, { - "id": 8163, + "id": 9647, "properties": { "facing": "east", "half": "bottom", @@ -47230,7 +57575,7 @@ }, "states": [ { - "id": 4740, + "id": 6116, "properties": { "facing": "north", "half": "top", @@ -47240,7 +57585,7 @@ } }, { - "id": 4741, + "id": 6117, "properties": { "facing": "north", "half": "top", @@ -47250,7 +57595,7 @@ } }, { - "id": 4742, + "id": 6118, "properties": { "facing": "north", "half": "top", @@ -47260,7 +57605,7 @@ } }, { - "id": 4743, + "id": 6119, "properties": { "facing": "north", "half": "top", @@ -47270,7 +57615,7 @@ } }, { - "id": 4744, + "id": 6120, "properties": { "facing": "north", "half": "top", @@ -47280,7 +57625,7 @@ } }, { - "id": 4745, + "id": 6121, "properties": { "facing": "north", "half": "top", @@ -47290,7 +57635,7 @@ } }, { - "id": 4746, + "id": 6122, "properties": { "facing": "north", "half": "top", @@ -47300,7 +57645,7 @@ } }, { - "id": 4747, + "id": 6123, "properties": { "facing": "north", "half": "top", @@ -47310,7 +57655,7 @@ } }, { - "id": 4748, + "id": 6124, "properties": { "facing": "north", "half": "bottom", @@ -47320,7 +57665,7 @@ } }, { - "id": 4749, + "id": 6125, "properties": { "facing": "north", "half": "bottom", @@ -47330,7 +57675,7 @@ } }, { - "id": 4750, + "id": 6126, "properties": { "facing": "north", "half": "bottom", @@ -47340,7 +57685,7 @@ } }, { - "id": 4751, + "id": 6127, "properties": { "facing": "north", "half": "bottom", @@ -47350,7 +57695,7 @@ } }, { - "id": 4752, + "id": 6128, "properties": { "facing": "north", "half": "bottom", @@ -47360,7 +57705,7 @@ } }, { - "id": 4753, + "id": 6129, "properties": { "facing": "north", "half": "bottom", @@ -47370,7 +57715,7 @@ } }, { - "id": 4754, + "id": 6130, "properties": { "facing": "north", "half": "bottom", @@ -47381,7 +57726,7 @@ }, { "default": true, - "id": 4755, + "id": 6131, "properties": { "facing": "north", "half": "bottom", @@ -47391,7 +57736,7 @@ } }, { - "id": 4756, + "id": 6132, "properties": { "facing": "south", "half": "top", @@ -47401,7 +57746,7 @@ } }, { - "id": 4757, + "id": 6133, "properties": { "facing": "south", "half": "top", @@ -47411,7 +57756,7 @@ } }, { - "id": 4758, + "id": 6134, "properties": { "facing": "south", "half": "top", @@ -47421,7 +57766,7 @@ } }, { - "id": 4759, + "id": 6135, "properties": { "facing": "south", "half": "top", @@ -47431,7 +57776,7 @@ } }, { - "id": 4760, + "id": 6136, "properties": { "facing": "south", "half": "top", @@ -47441,7 +57786,7 @@ } }, { - "id": 4761, + "id": 6137, "properties": { "facing": "south", "half": "top", @@ -47451,7 +57796,7 @@ } }, { - "id": 4762, + "id": 6138, "properties": { "facing": "south", "half": "top", @@ -47461,7 +57806,7 @@ } }, { - "id": 4763, + "id": 6139, "properties": { "facing": "south", "half": "top", @@ -47471,7 +57816,7 @@ } }, { - "id": 4764, + "id": 6140, "properties": { "facing": "south", "half": "bottom", @@ -47481,7 +57826,7 @@ } }, { - "id": 4765, + "id": 6141, "properties": { "facing": "south", "half": "bottom", @@ -47491,7 +57836,7 @@ } }, { - "id": 4766, + "id": 6142, "properties": { "facing": "south", "half": "bottom", @@ -47501,7 +57846,7 @@ } }, { - "id": 4767, + "id": 6143, "properties": { "facing": "south", "half": "bottom", @@ -47511,7 +57856,7 @@ } }, { - "id": 4768, + "id": 6144, "properties": { "facing": "south", "half": "bottom", @@ -47521,7 +57866,7 @@ } }, { - "id": 4769, + "id": 6145, "properties": { "facing": "south", "half": "bottom", @@ -47531,7 +57876,7 @@ } }, { - "id": 4770, + "id": 6146, "properties": { "facing": "south", "half": "bottom", @@ -47541,7 +57886,7 @@ } }, { - "id": 4771, + "id": 6147, "properties": { "facing": "south", "half": "bottom", @@ -47551,7 +57896,7 @@ } }, { - "id": 4772, + "id": 6148, "properties": { "facing": "west", "half": "top", @@ -47561,7 +57906,7 @@ } }, { - "id": 4773, + "id": 6149, "properties": { "facing": "west", "half": "top", @@ -47571,7 +57916,7 @@ } }, { - "id": 4774, + "id": 6150, "properties": { "facing": "west", "half": "top", @@ -47581,7 +57926,7 @@ } }, { - "id": 4775, + "id": 6151, "properties": { "facing": "west", "half": "top", @@ -47591,7 +57936,7 @@ } }, { - "id": 4776, + "id": 6152, "properties": { "facing": "west", "half": "top", @@ -47601,7 +57946,7 @@ } }, { - "id": 4777, + "id": 6153, "properties": { "facing": "west", "half": "top", @@ -47611,7 +57956,7 @@ } }, { - "id": 4778, + "id": 6154, "properties": { "facing": "west", "half": "top", @@ -47621,7 +57966,7 @@ } }, { - "id": 4779, + "id": 6155, "properties": { "facing": "west", "half": "top", @@ -47631,7 +57976,7 @@ } }, { - "id": 4780, + "id": 6156, "properties": { "facing": "west", "half": "bottom", @@ -47641,7 +57986,7 @@ } }, { - "id": 4781, + "id": 6157, "properties": { "facing": "west", "half": "bottom", @@ -47651,7 +57996,7 @@ } }, { - "id": 4782, + "id": 6158, "properties": { "facing": "west", "half": "bottom", @@ -47661,7 +58006,7 @@ } }, { - "id": 4783, + "id": 6159, "properties": { "facing": "west", "half": "bottom", @@ -47671,7 +58016,7 @@ } }, { - "id": 4784, + "id": 6160, "properties": { "facing": "west", "half": "bottom", @@ -47681,7 +58026,7 @@ } }, { - "id": 4785, + "id": 6161, "properties": { "facing": "west", "half": "bottom", @@ -47691,7 +58036,7 @@ } }, { - "id": 4786, + "id": 6162, "properties": { "facing": "west", "half": "bottom", @@ -47701,7 +58046,7 @@ } }, { - "id": 4787, + "id": 6163, "properties": { "facing": "west", "half": "bottom", @@ -47711,7 +58056,7 @@ } }, { - "id": 4788, + "id": 6164, "properties": { "facing": "east", "half": "top", @@ -47721,7 +58066,7 @@ } }, { - "id": 4789, + "id": 6165, "properties": { "facing": "east", "half": "top", @@ -47731,7 +58076,7 @@ } }, { - "id": 4790, + "id": 6166, "properties": { "facing": "east", "half": "top", @@ -47741,7 +58086,7 @@ } }, { - "id": 4791, + "id": 6167, "properties": { "facing": "east", "half": "top", @@ -47751,7 +58096,7 @@ } }, { - "id": 4792, + "id": 6168, "properties": { "facing": "east", "half": "top", @@ -47761,7 +58106,7 @@ } }, { - "id": 4793, + "id": 6169, "properties": { "facing": "east", "half": "top", @@ -47771,7 +58116,7 @@ } }, { - "id": 4794, + "id": 6170, "properties": { "facing": "east", "half": "top", @@ -47781,7 +58126,7 @@ } }, { - "id": 4795, + "id": 6171, "properties": { "facing": "east", "half": "top", @@ -47791,7 +58136,7 @@ } }, { - "id": 4796, + "id": 6172, "properties": { "facing": "east", "half": "bottom", @@ -47801,7 +58146,7 @@ } }, { - "id": 4797, + "id": 6173, "properties": { "facing": "east", "half": "bottom", @@ -47811,7 +58156,7 @@ } }, { - "id": 4798, + "id": 6174, "properties": { "facing": "east", "half": "bottom", @@ -47821,7 +58166,7 @@ } }, { - "id": 4799, + "id": 6175, "properties": { "facing": "east", "half": "bottom", @@ -47831,7 +58176,7 @@ } }, { - "id": 4800, + "id": 6176, "properties": { "facing": "east", "half": "bottom", @@ -47841,7 +58186,7 @@ } }, { - "id": 4801, + "id": 6177, "properties": { "facing": "east", "half": "bottom", @@ -47851,7 +58196,7 @@ } }, { - "id": 4802, + "id": 6178, "properties": { "facing": "east", "half": "bottom", @@ -47861,7 +58206,7 @@ } }, { - "id": 4803, + "id": 6179, "properties": { "facing": "east", "half": "bottom", @@ -47872,6 +58217,79 @@ } ] }, + "minecraft:dark_oak_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5422, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5423, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5424, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5425, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5426, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5427, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5428, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5429, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, "minecraft:dark_oak_wall_sign": { "properties": { "facing": [ @@ -47887,7 +58305,7 @@ }, "states": [ { - "id": 4072, + "id": 4718, "properties": { "facing": "north", "waterlogged": "true" @@ -47895,49 +58313,49 @@ }, { "default": true, - "id": 4073, + "id": 4719, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 4074, + "id": 4720, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 4075, + "id": 4721, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 4076, + "id": 4722, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 4077, + "id": 4723, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 4078, + "id": 4724, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4079, + "id": 4725, "properties": { "facing": "east", "waterlogged": "false" @@ -47955,20 +58373,20 @@ }, "states": [ { - "id": 179, + "id": 187, "properties": { "axis": "x" } }, { "default": true, - "id": 180, + "id": 188, "properties": { "axis": "y" } }, { - "id": 181, + "id": 189, "properties": { "axis": "z" } @@ -47979,7 +58397,7 @@ "states": [ { "default": true, - "id": 8344 + "id": 9988 } ] }, @@ -47997,21 +58415,21 @@ }, "states": [ { - "id": 8597, + "id": 10241, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 8598, + "id": 10242, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 8599, + "id": 10243, "properties": { "type": "bottom", "waterlogged": "true" @@ -48019,21 +58437,21 @@ }, { "default": true, - "id": 8600, + "id": 10244, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 8601, + "id": 10245, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 8602, + "id": 10246, "properties": { "type": "double", "waterlogged": "false" @@ -48067,7 +58485,7 @@ }, "states": [ { - "id": 8505, + "id": 10149, "properties": { "facing": "north", "half": "top", @@ -48076,7 +58494,7 @@ } }, { - "id": 8506, + "id": 10150, "properties": { "facing": "north", "half": "top", @@ -48085,7 +58503,7 @@ } }, { - "id": 8507, + "id": 10151, "properties": { "facing": "north", "half": "top", @@ -48094,7 +58512,7 @@ } }, { - "id": 8508, + "id": 10152, "properties": { "facing": "north", "half": "top", @@ -48103,7 +58521,7 @@ } }, { - "id": 8509, + "id": 10153, "properties": { "facing": "north", "half": "top", @@ -48112,7 +58530,7 @@ } }, { - "id": 8510, + "id": 10154, "properties": { "facing": "north", "half": "top", @@ -48121,7 +58539,7 @@ } }, { - "id": 8511, + "id": 10155, "properties": { "facing": "north", "half": "top", @@ -48130,7 +58548,7 @@ } }, { - "id": 8512, + "id": 10156, "properties": { "facing": "north", "half": "top", @@ -48139,7 +58557,7 @@ } }, { - "id": 8513, + "id": 10157, "properties": { "facing": "north", "half": "top", @@ -48148,7 +58566,7 @@ } }, { - "id": 8514, + "id": 10158, "properties": { "facing": "north", "half": "top", @@ -48157,7 +58575,7 @@ } }, { - "id": 8515, + "id": 10159, "properties": { "facing": "north", "half": "bottom", @@ -48167,7 +58585,7 @@ }, { "default": true, - "id": 8516, + "id": 10160, "properties": { "facing": "north", "half": "bottom", @@ -48176,7 +58594,7 @@ } }, { - "id": 8517, + "id": 10161, "properties": { "facing": "north", "half": "bottom", @@ -48185,7 +58603,7 @@ } }, { - "id": 8518, + "id": 10162, "properties": { "facing": "north", "half": "bottom", @@ -48194,7 +58612,7 @@ } }, { - "id": 8519, + "id": 10163, "properties": { "facing": "north", "half": "bottom", @@ -48203,7 +58621,7 @@ } }, { - "id": 8520, + "id": 10164, "properties": { "facing": "north", "half": "bottom", @@ -48212,7 +58630,7 @@ } }, { - "id": 8521, + "id": 10165, "properties": { "facing": "north", "half": "bottom", @@ -48221,7 +58639,7 @@ } }, { - "id": 8522, + "id": 10166, "properties": { "facing": "north", "half": "bottom", @@ -48230,7 +58648,7 @@ } }, { - "id": 8523, + "id": 10167, "properties": { "facing": "north", "half": "bottom", @@ -48239,7 +58657,7 @@ } }, { - "id": 8524, + "id": 10168, "properties": { "facing": "north", "half": "bottom", @@ -48248,7 +58666,7 @@ } }, { - "id": 8525, + "id": 10169, "properties": { "facing": "south", "half": "top", @@ -48257,7 +58675,7 @@ } }, { - "id": 8526, + "id": 10170, "properties": { "facing": "south", "half": "top", @@ -48266,7 +58684,7 @@ } }, { - "id": 8527, + "id": 10171, "properties": { "facing": "south", "half": "top", @@ -48275,7 +58693,7 @@ } }, { - "id": 8528, + "id": 10172, "properties": { "facing": "south", "half": "top", @@ -48284,7 +58702,7 @@ } }, { - "id": 8529, + "id": 10173, "properties": { "facing": "south", "half": "top", @@ -48293,7 +58711,7 @@ } }, { - "id": 8530, + "id": 10174, "properties": { "facing": "south", "half": "top", @@ -48302,7 +58720,7 @@ } }, { - "id": 8531, + "id": 10175, "properties": { "facing": "south", "half": "top", @@ -48311,7 +58729,7 @@ } }, { - "id": 8532, + "id": 10176, "properties": { "facing": "south", "half": "top", @@ -48320,7 +58738,7 @@ } }, { - "id": 8533, + "id": 10177, "properties": { "facing": "south", "half": "top", @@ -48329,7 +58747,7 @@ } }, { - "id": 8534, + "id": 10178, "properties": { "facing": "south", "half": "top", @@ -48338,7 +58756,7 @@ } }, { - "id": 8535, + "id": 10179, "properties": { "facing": "south", "half": "bottom", @@ -48347,7 +58765,7 @@ } }, { - "id": 8536, + "id": 10180, "properties": { "facing": "south", "half": "bottom", @@ -48356,7 +58774,7 @@ } }, { - "id": 8537, + "id": 10181, "properties": { "facing": "south", "half": "bottom", @@ -48365,7 +58783,7 @@ } }, { - "id": 8538, + "id": 10182, "properties": { "facing": "south", "half": "bottom", @@ -48374,7 +58792,7 @@ } }, { - "id": 8539, + "id": 10183, "properties": { "facing": "south", "half": "bottom", @@ -48383,7 +58801,7 @@ } }, { - "id": 8540, + "id": 10184, "properties": { "facing": "south", "half": "bottom", @@ -48392,7 +58810,7 @@ } }, { - "id": 8541, + "id": 10185, "properties": { "facing": "south", "half": "bottom", @@ -48401,7 +58819,7 @@ } }, { - "id": 8542, + "id": 10186, "properties": { "facing": "south", "half": "bottom", @@ -48410,7 +58828,7 @@ } }, { - "id": 8543, + "id": 10187, "properties": { "facing": "south", "half": "bottom", @@ -48419,7 +58837,7 @@ } }, { - "id": 8544, + "id": 10188, "properties": { "facing": "south", "half": "bottom", @@ -48428,7 +58846,7 @@ } }, { - "id": 8545, + "id": 10189, "properties": { "facing": "west", "half": "top", @@ -48437,7 +58855,7 @@ } }, { - "id": 8546, + "id": 10190, "properties": { "facing": "west", "half": "top", @@ -48446,7 +58864,7 @@ } }, { - "id": 8547, + "id": 10191, "properties": { "facing": "west", "half": "top", @@ -48455,7 +58873,7 @@ } }, { - "id": 8548, + "id": 10192, "properties": { "facing": "west", "half": "top", @@ -48464,7 +58882,7 @@ } }, { - "id": 8549, + "id": 10193, "properties": { "facing": "west", "half": "top", @@ -48473,7 +58891,7 @@ } }, { - "id": 8550, + "id": 10194, "properties": { "facing": "west", "half": "top", @@ -48482,7 +58900,7 @@ } }, { - "id": 8551, + "id": 10195, "properties": { "facing": "west", "half": "top", @@ -48491,7 +58909,7 @@ } }, { - "id": 8552, + "id": 10196, "properties": { "facing": "west", "half": "top", @@ -48500,7 +58918,7 @@ } }, { - "id": 8553, + "id": 10197, "properties": { "facing": "west", "half": "top", @@ -48509,7 +58927,7 @@ } }, { - "id": 8554, + "id": 10198, "properties": { "facing": "west", "half": "top", @@ -48518,7 +58936,7 @@ } }, { - "id": 8555, + "id": 10199, "properties": { "facing": "west", "half": "bottom", @@ -48527,7 +58945,7 @@ } }, { - "id": 8556, + "id": 10200, "properties": { "facing": "west", "half": "bottom", @@ -48536,7 +58954,7 @@ } }, { - "id": 8557, + "id": 10201, "properties": { "facing": "west", "half": "bottom", @@ -48545,7 +58963,7 @@ } }, { - "id": 8558, + "id": 10202, "properties": { "facing": "west", "half": "bottom", @@ -48554,7 +58972,7 @@ } }, { - "id": 8559, + "id": 10203, "properties": { "facing": "west", "half": "bottom", @@ -48563,7 +58981,7 @@ } }, { - "id": 8560, + "id": 10204, "properties": { "facing": "west", "half": "bottom", @@ -48572,7 +58990,7 @@ } }, { - "id": 8561, + "id": 10205, "properties": { "facing": "west", "half": "bottom", @@ -48581,7 +58999,7 @@ } }, { - "id": 8562, + "id": 10206, "properties": { "facing": "west", "half": "bottom", @@ -48590,7 +59008,7 @@ } }, { - "id": 8563, + "id": 10207, "properties": { "facing": "west", "half": "bottom", @@ -48599,7 +59017,7 @@ } }, { - "id": 8564, + "id": 10208, "properties": { "facing": "west", "half": "bottom", @@ -48608,7 +59026,7 @@ } }, { - "id": 8565, + "id": 10209, "properties": { "facing": "east", "half": "top", @@ -48617,7 +59035,7 @@ } }, { - "id": 8566, + "id": 10210, "properties": { "facing": "east", "half": "top", @@ -48626,7 +59044,7 @@ } }, { - "id": 8567, + "id": 10211, "properties": { "facing": "east", "half": "top", @@ -48635,7 +59053,7 @@ } }, { - "id": 8568, + "id": 10212, "properties": { "facing": "east", "half": "top", @@ -48644,7 +59062,7 @@ } }, { - "id": 8569, + "id": 10213, "properties": { "facing": "east", "half": "top", @@ -48653,7 +59071,7 @@ } }, { - "id": 8570, + "id": 10214, "properties": { "facing": "east", "half": "top", @@ -48662,7 +59080,7 @@ } }, { - "id": 8571, + "id": 10215, "properties": { "facing": "east", "half": "top", @@ -48671,7 +59089,7 @@ } }, { - "id": 8572, + "id": 10216, "properties": { "facing": "east", "half": "top", @@ -48680,7 +59098,7 @@ } }, { - "id": 8573, + "id": 10217, "properties": { "facing": "east", "half": "top", @@ -48689,7 +59107,7 @@ } }, { - "id": 8574, + "id": 10218, "properties": { "facing": "east", "half": "top", @@ -48698,7 +59116,7 @@ } }, { - "id": 8575, + "id": 10219, "properties": { "facing": "east", "half": "bottom", @@ -48707,7 +59125,7 @@ } }, { - "id": 8576, + "id": 10220, "properties": { "facing": "east", "half": "bottom", @@ -48716,7 +59134,7 @@ } }, { - "id": 8577, + "id": 10221, "properties": { "facing": "east", "half": "bottom", @@ -48725,7 +59143,7 @@ } }, { - "id": 8578, + "id": 10222, "properties": { "facing": "east", "half": "bottom", @@ -48734,7 +59152,7 @@ } }, { - "id": 8579, + "id": 10223, "properties": { "facing": "east", "half": "bottom", @@ -48743,7 +59161,7 @@ } }, { - "id": 8580, + "id": 10224, "properties": { "facing": "east", "half": "bottom", @@ -48752,7 +59170,7 @@ } }, { - "id": 8581, + "id": 10225, "properties": { "facing": "east", "half": "bottom", @@ -48761,7 +59179,7 @@ } }, { - "id": 8582, + "id": 10226, "properties": { "facing": "east", "half": "bottom", @@ -48770,7 +59188,7 @@ } }, { - "id": 8583, + "id": 10227, "properties": { "facing": "east", "half": "bottom", @@ -48779,7 +59197,7 @@ } }, { - "id": 8584, + "id": 10228, "properties": { "facing": "east", "half": "bottom", @@ -48816,112 +59234,112 @@ }, "states": [ { - "id": 7311, + "id": 8795, "properties": { "inverted": "true", "power": "0" } }, { - "id": 7312, + "id": 8796, "properties": { "inverted": "true", "power": "1" } }, { - "id": 7313, + "id": 8797, "properties": { "inverted": "true", "power": "2" } }, { - "id": 7314, + "id": 8798, "properties": { "inverted": "true", "power": "3" } }, { - "id": 7315, + "id": 8799, "properties": { "inverted": "true", "power": "4" } }, { - "id": 7316, + "id": 8800, "properties": { "inverted": "true", "power": "5" } }, { - "id": 7317, + "id": 8801, "properties": { "inverted": "true", "power": "6" } }, { - "id": 7318, + "id": 8802, "properties": { "inverted": "true", "power": "7" } }, { - "id": 7319, + "id": 8803, "properties": { "inverted": "true", "power": "8" } }, { - "id": 7320, + "id": 8804, "properties": { "inverted": "true", "power": "9" } }, { - "id": 7321, + "id": 8805, "properties": { "inverted": "true", "power": "10" } }, { - "id": 7322, + "id": 8806, "properties": { "inverted": "true", "power": "11" } }, { - "id": 7323, + "id": 8807, "properties": { "inverted": "true", "power": "12" } }, { - "id": 7324, + "id": 8808, "properties": { "inverted": "true", "power": "13" } }, { - "id": 7325, + "id": 8809, "properties": { "inverted": "true", "power": "14" } }, { - "id": 7326, + "id": 8810, "properties": { "inverted": "true", "power": "15" @@ -48929,112 +59347,112 @@ }, { "default": true, - "id": 7327, + "id": 8811, "properties": { "inverted": "false", "power": "0" } }, { - "id": 7328, + "id": 8812, "properties": { "inverted": "false", "power": "1" } }, { - "id": 7329, + "id": 8813, "properties": { "inverted": "false", "power": "2" } }, { - "id": 7330, + "id": 8814, "properties": { "inverted": "false", "power": "3" } }, { - "id": 7331, + "id": 8815, "properties": { "inverted": "false", "power": "4" } }, { - "id": 7332, + "id": 8816, "properties": { "inverted": "false", "power": "5" } }, { - "id": 7333, + "id": 8817, "properties": { "inverted": "false", "power": "6" } }, { - "id": 7334, + "id": 8818, "properties": { "inverted": "false", "power": "7" } }, { - "id": 7335, + "id": 8819, "properties": { "inverted": "false", "power": "8" } }, { - "id": 7336, + "id": 8820, "properties": { "inverted": "false", "power": "9" } }, { - "id": 7337, + "id": 8821, "properties": { "inverted": "false", "power": "10" } }, { - "id": 7338, + "id": 8822, "properties": { "inverted": "false", "power": "11" } }, { - "id": 7339, + "id": 8823, "properties": { "inverted": "false", "power": "12" } }, { - "id": 7340, + "id": 8824, "properties": { "inverted": "false", "power": "13" } }, { - "id": 7341, + "id": 8825, "properties": { "inverted": "false", "power": "14" } }, { - "id": 7342, + "id": 8826, "properties": { "inverted": "false", "power": "15" @@ -49052,13 +59470,13 @@ "states": [ { "default": true, - "id": 10403, + "id": 12187, "properties": { "waterlogged": "true" } }, { - "id": 10404, + "id": 12188, "properties": { "waterlogged": "false" } @@ -49069,7 +59487,7 @@ "states": [ { "default": true, - "id": 10392 + "id": 12176 } ] }, @@ -49083,13 +59501,13 @@ "states": [ { "default": true, - "id": 10423, + "id": 12207, "properties": { "waterlogged": "true" } }, { - "id": 10424, + "id": 12208, "properties": { "waterlogged": "false" } @@ -49112,56 +59530,56 @@ "states": [ { "default": true, - "id": 10449, + "id": 12233, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 10450, + "id": 12234, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 10451, + "id": 12235, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 10452, + "id": 12236, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 10453, + "id": 12237, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 10454, + "id": 12238, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 10455, + "id": 12239, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 10456, + "id": 12240, "properties": { "facing": "east", "waterlogged": "false" @@ -49179,13 +59597,13 @@ "states": [ { "default": true, - "id": 10405, + "id": 12189, "properties": { "waterlogged": "true" } }, { - "id": 10406, + "id": 12190, "properties": { "waterlogged": "false" } @@ -49196,7 +59614,7 @@ "states": [ { "default": true, - "id": 10393 + "id": 12177 } ] }, @@ -49210,13 +59628,13 @@ "states": [ { "default": true, - "id": 10425, + "id": 12209, "properties": { "waterlogged": "true" } }, { - "id": 10426, + "id": 12210, "properties": { "waterlogged": "false" } @@ -49239,56 +59657,56 @@ "states": [ { "default": true, - "id": 10457, + "id": 12241, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 10458, + "id": 12242, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 10459, + "id": 12243, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 10460, + "id": 12244, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 10461, + "id": 12245, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 10462, + "id": 12246, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 10463, + "id": 12247, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 10464, + "id": 12248, "properties": { "facing": "east", "waterlogged": "false" @@ -49300,7 +59718,7 @@ "states": [ { "default": true, - "id": 1598 + "id": 1956 } ] }, @@ -49314,13 +59732,13 @@ "states": [ { "default": true, - "id": 10407, + "id": 12191, "properties": { "waterlogged": "true" } }, { - "id": 10408, + "id": 12192, "properties": { "waterlogged": "false" } @@ -49331,7 +59749,7 @@ "states": [ { "default": true, - "id": 10394 + "id": 12178 } ] }, @@ -49345,13 +59763,13 @@ "states": [ { "default": true, - "id": 10427, + "id": 12211, "properties": { "waterlogged": "true" } }, { - "id": 10428, + "id": 12212, "properties": { "waterlogged": "false" } @@ -49374,56 +59792,56 @@ "states": [ { "default": true, - "id": 10465, + "id": 12249, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 10466, + "id": 12250, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 10467, + "id": 12251, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 10468, + "id": 12252, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 10469, + "id": 12253, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 10470, + "id": 12254, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 10471, + "id": 12255, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 10472, + "id": 12256, "properties": { "facing": "east", "waterlogged": "false" @@ -49441,13 +59859,13 @@ "states": [ { "default": true, - "id": 10409, + "id": 12193, "properties": { "waterlogged": "true" } }, { - "id": 10410, + "id": 12194, "properties": { "waterlogged": "false" } @@ -49458,7 +59876,7 @@ "states": [ { "default": true, - "id": 10395 + "id": 12179 } ] }, @@ -49472,13 +59890,13 @@ "states": [ { "default": true, - "id": 10429, + "id": 12213, "properties": { "waterlogged": "true" } }, { - "id": 10430, + "id": 12214, "properties": { "waterlogged": "false" } @@ -49501,56 +59919,56 @@ "states": [ { "default": true, - "id": 10473, + "id": 12257, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 10474, + "id": 12258, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 10475, + "id": 12259, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 10476, + "id": 12260, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 10477, + "id": 12261, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 10478, + "id": 12262, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 10479, + "id": 12263, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 10480, + "id": 12264, "properties": { "facing": "east", "waterlogged": "false" @@ -49568,13 +59986,13 @@ "states": [ { "default": true, - "id": 10401, + "id": 12185, "properties": { "waterlogged": "true" } }, { - "id": 10402, + "id": 12186, "properties": { "waterlogged": "false" } @@ -49585,7 +60003,7 @@ "states": [ { "default": true, - "id": 10391 + "id": 12175 } ] }, @@ -49599,13 +60017,13 @@ "states": [ { "default": true, - "id": 10421, + "id": 12205, "properties": { "waterlogged": "true" } }, { - "id": 10422, + "id": 12206, "properties": { "waterlogged": "false" } @@ -49628,56 +60046,56 @@ "states": [ { "default": true, - "id": 10441, + "id": 12225, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 10442, + "id": 12226, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 10443, + "id": 12227, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 10444, + "id": 12228, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 10445, + "id": 12229, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 10446, + "id": 12230, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 10447, + "id": 12231, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 10448, + "id": 12232, "properties": { "facing": "east", "waterlogged": "false" @@ -49695,20 +60113,20 @@ }, "states": [ { - "id": 19778, + "id": 21562, "properties": { "axis": "x" } }, { "default": true, - "id": 19779, + "id": 21563, "properties": { "axis": "y" } }, { - "id": 19780, + "id": 21564, "properties": { "axis": "z" } @@ -49729,21 +60147,21 @@ }, "states": [ { - "id": 21095, + "id": 22879, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 21096, + "id": 22880, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 21097, + "id": 22881, "properties": { "type": "bottom", "waterlogged": "true" @@ -49751,21 +60169,21 @@ }, { "default": true, - "id": 21098, + "id": 22882, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 21099, + "id": 22883, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 21100, + "id": 22884, "properties": { "type": "double", "waterlogged": "false" @@ -49799,7 +60217,7 @@ }, "states": [ { - "id": 21015, + "id": 22799, "properties": { "facing": "north", "half": "top", @@ -49808,7 +60226,7 @@ } }, { - "id": 21016, + "id": 22800, "properties": { "facing": "north", "half": "top", @@ -49817,7 +60235,7 @@ } }, { - "id": 21017, + "id": 22801, "properties": { "facing": "north", "half": "top", @@ -49826,7 +60244,7 @@ } }, { - "id": 21018, + "id": 22802, "properties": { "facing": "north", "half": "top", @@ -49835,7 +60253,7 @@ } }, { - "id": 21019, + "id": 22803, "properties": { "facing": "north", "half": "top", @@ -49844,7 +60262,7 @@ } }, { - "id": 21020, + "id": 22804, "properties": { "facing": "north", "half": "top", @@ -49853,7 +60271,7 @@ } }, { - "id": 21021, + "id": 22805, "properties": { "facing": "north", "half": "top", @@ -49862,7 +60280,7 @@ } }, { - "id": 21022, + "id": 22806, "properties": { "facing": "north", "half": "top", @@ -49871,7 +60289,7 @@ } }, { - "id": 21023, + "id": 22807, "properties": { "facing": "north", "half": "top", @@ -49880,7 +60298,7 @@ } }, { - "id": 21024, + "id": 22808, "properties": { "facing": "north", "half": "top", @@ -49889,7 +60307,7 @@ } }, { - "id": 21025, + "id": 22809, "properties": { "facing": "north", "half": "bottom", @@ -49899,7 +60317,7 @@ }, { "default": true, - "id": 21026, + "id": 22810, "properties": { "facing": "north", "half": "bottom", @@ -49908,7 +60326,7 @@ } }, { - "id": 21027, + "id": 22811, "properties": { "facing": "north", "half": "bottom", @@ -49917,7 +60335,7 @@ } }, { - "id": 21028, + "id": 22812, "properties": { "facing": "north", "half": "bottom", @@ -49926,7 +60344,7 @@ } }, { - "id": 21029, + "id": 22813, "properties": { "facing": "north", "half": "bottom", @@ -49935,7 +60353,7 @@ } }, { - "id": 21030, + "id": 22814, "properties": { "facing": "north", "half": "bottom", @@ -49944,7 +60362,7 @@ } }, { - "id": 21031, + "id": 22815, "properties": { "facing": "north", "half": "bottom", @@ -49953,7 +60371,7 @@ } }, { - "id": 21032, + "id": 22816, "properties": { "facing": "north", "half": "bottom", @@ -49962,7 +60380,7 @@ } }, { - "id": 21033, + "id": 22817, "properties": { "facing": "north", "half": "bottom", @@ -49971,7 +60389,7 @@ } }, { - "id": 21034, + "id": 22818, "properties": { "facing": "north", "half": "bottom", @@ -49980,7 +60398,7 @@ } }, { - "id": 21035, + "id": 22819, "properties": { "facing": "south", "half": "top", @@ -49989,7 +60407,7 @@ } }, { - "id": 21036, + "id": 22820, "properties": { "facing": "south", "half": "top", @@ -49998,7 +60416,7 @@ } }, { - "id": 21037, + "id": 22821, "properties": { "facing": "south", "half": "top", @@ -50007,7 +60425,7 @@ } }, { - "id": 21038, + "id": 22822, "properties": { "facing": "south", "half": "top", @@ -50016,7 +60434,7 @@ } }, { - "id": 21039, + "id": 22823, "properties": { "facing": "south", "half": "top", @@ -50025,7 +60443,7 @@ } }, { - "id": 21040, + "id": 22824, "properties": { "facing": "south", "half": "top", @@ -50034,7 +60452,7 @@ } }, { - "id": 21041, + "id": 22825, "properties": { "facing": "south", "half": "top", @@ -50043,7 +60461,7 @@ } }, { - "id": 21042, + "id": 22826, "properties": { "facing": "south", "half": "top", @@ -50052,7 +60470,7 @@ } }, { - "id": 21043, + "id": 22827, "properties": { "facing": "south", "half": "top", @@ -50061,7 +60479,7 @@ } }, { - "id": 21044, + "id": 22828, "properties": { "facing": "south", "half": "top", @@ -50070,7 +60488,7 @@ } }, { - "id": 21045, + "id": 22829, "properties": { "facing": "south", "half": "bottom", @@ -50079,7 +60497,7 @@ } }, { - "id": 21046, + "id": 22830, "properties": { "facing": "south", "half": "bottom", @@ -50088,7 +60506,7 @@ } }, { - "id": 21047, + "id": 22831, "properties": { "facing": "south", "half": "bottom", @@ -50097,7 +60515,7 @@ } }, { - "id": 21048, + "id": 22832, "properties": { "facing": "south", "half": "bottom", @@ -50106,7 +60524,7 @@ } }, { - "id": 21049, + "id": 22833, "properties": { "facing": "south", "half": "bottom", @@ -50115,7 +60533,7 @@ } }, { - "id": 21050, + "id": 22834, "properties": { "facing": "south", "half": "bottom", @@ -50124,7 +60542,7 @@ } }, { - "id": 21051, + "id": 22835, "properties": { "facing": "south", "half": "bottom", @@ -50133,7 +60551,7 @@ } }, { - "id": 21052, + "id": 22836, "properties": { "facing": "south", "half": "bottom", @@ -50142,7 +60560,7 @@ } }, { - "id": 21053, + "id": 22837, "properties": { "facing": "south", "half": "bottom", @@ -50151,7 +60569,7 @@ } }, { - "id": 21054, + "id": 22838, "properties": { "facing": "south", "half": "bottom", @@ -50160,7 +60578,7 @@ } }, { - "id": 21055, + "id": 22839, "properties": { "facing": "west", "half": "top", @@ -50169,7 +60587,7 @@ } }, { - "id": 21056, + "id": 22840, "properties": { "facing": "west", "half": "top", @@ -50178,7 +60596,7 @@ } }, { - "id": 21057, + "id": 22841, "properties": { "facing": "west", "half": "top", @@ -50187,7 +60605,7 @@ } }, { - "id": 21058, + "id": 22842, "properties": { "facing": "west", "half": "top", @@ -50196,7 +60614,7 @@ } }, { - "id": 21059, + "id": 22843, "properties": { "facing": "west", "half": "top", @@ -50205,7 +60623,7 @@ } }, { - "id": 21060, + "id": 22844, "properties": { "facing": "west", "half": "top", @@ -50214,7 +60632,7 @@ } }, { - "id": 21061, + "id": 22845, "properties": { "facing": "west", "half": "top", @@ -50223,7 +60641,7 @@ } }, { - "id": 21062, + "id": 22846, "properties": { "facing": "west", "half": "top", @@ -50232,7 +60650,7 @@ } }, { - "id": 21063, + "id": 22847, "properties": { "facing": "west", "half": "top", @@ -50241,7 +60659,7 @@ } }, { - "id": 21064, + "id": 22848, "properties": { "facing": "west", "half": "top", @@ -50250,7 +60668,7 @@ } }, { - "id": 21065, + "id": 22849, "properties": { "facing": "west", "half": "bottom", @@ -50259,7 +60677,7 @@ } }, { - "id": 21066, + "id": 22850, "properties": { "facing": "west", "half": "bottom", @@ -50268,7 +60686,7 @@ } }, { - "id": 21067, + "id": 22851, "properties": { "facing": "west", "half": "bottom", @@ -50277,7 +60695,7 @@ } }, { - "id": 21068, + "id": 22852, "properties": { "facing": "west", "half": "bottom", @@ -50286,7 +60704,7 @@ } }, { - "id": 21069, + "id": 22853, "properties": { "facing": "west", "half": "bottom", @@ -50295,7 +60713,7 @@ } }, { - "id": 21070, + "id": 22854, "properties": { "facing": "west", "half": "bottom", @@ -50304,7 +60722,7 @@ } }, { - "id": 21071, + "id": 22855, "properties": { "facing": "west", "half": "bottom", @@ -50313,7 +60731,7 @@ } }, { - "id": 21072, + "id": 22856, "properties": { "facing": "west", "half": "bottom", @@ -50322,7 +60740,7 @@ } }, { - "id": 21073, + "id": 22857, "properties": { "facing": "west", "half": "bottom", @@ -50331,7 +60749,7 @@ } }, { - "id": 21074, + "id": 22858, "properties": { "facing": "west", "half": "bottom", @@ -50340,7 +60758,7 @@ } }, { - "id": 21075, + "id": 22859, "properties": { "facing": "east", "half": "top", @@ -50349,7 +60767,7 @@ } }, { - "id": 21076, + "id": 22860, "properties": { "facing": "east", "half": "top", @@ -50358,7 +60776,7 @@ } }, { - "id": 21077, + "id": 22861, "properties": { "facing": "east", "half": "top", @@ -50367,7 +60785,7 @@ } }, { - "id": 21078, + "id": 22862, "properties": { "facing": "east", "half": "top", @@ -50376,7 +60794,7 @@ } }, { - "id": 21079, + "id": 22863, "properties": { "facing": "east", "half": "top", @@ -50385,7 +60803,7 @@ } }, { - "id": 21080, + "id": 22864, "properties": { "facing": "east", "half": "top", @@ -50394,7 +60812,7 @@ } }, { - "id": 21081, + "id": 22865, "properties": { "facing": "east", "half": "top", @@ -50403,7 +60821,7 @@ } }, { - "id": 21082, + "id": 22866, "properties": { "facing": "east", "half": "top", @@ -50412,7 +60830,7 @@ } }, { - "id": 21083, + "id": 22867, "properties": { "facing": "east", "half": "top", @@ -50421,7 +60839,7 @@ } }, { - "id": 21084, + "id": 22868, "properties": { "facing": "east", "half": "top", @@ -50430,7 +60848,7 @@ } }, { - "id": 21085, + "id": 22869, "properties": { "facing": "east", "half": "bottom", @@ -50439,7 +60857,7 @@ } }, { - "id": 21086, + "id": 22870, "properties": { "facing": "east", "half": "bottom", @@ -50448,7 +60866,7 @@ } }, { - "id": 21087, + "id": 22871, "properties": { "facing": "east", "half": "bottom", @@ -50457,7 +60875,7 @@ } }, { - "id": 21088, + "id": 22872, "properties": { "facing": "east", "half": "bottom", @@ -50466,7 +60884,7 @@ } }, { - "id": 21089, + "id": 22873, "properties": { "facing": "east", "half": "bottom", @@ -50475,7 +60893,7 @@ } }, { - "id": 21090, + "id": 22874, "properties": { "facing": "east", "half": "bottom", @@ -50484,7 +60902,7 @@ } }, { - "id": 21091, + "id": 22875, "properties": { "facing": "east", "half": "bottom", @@ -50493,7 +60911,7 @@ } }, { - "id": 21092, + "id": 22876, "properties": { "facing": "east", "half": "bottom", @@ -50502,7 +60920,7 @@ } }, { - "id": 21093, + "id": 22877, "properties": { "facing": "east", "half": "bottom", @@ -50511,7 +60929,7 @@ } }, { - "id": 21094, + "id": 22878, "properties": { "facing": "east", "half": "bottom", @@ -50554,7 +60972,7 @@ }, "states": [ { - "id": 21101, + "id": 22885, "properties": { "east": "none", "north": "none", @@ -50565,7 +60983,7 @@ } }, { - "id": 21102, + "id": 22886, "properties": { "east": "none", "north": "none", @@ -50576,7 +60994,7 @@ } }, { - "id": 21103, + "id": 22887, "properties": { "east": "none", "north": "none", @@ -50588,7 +61006,7 @@ }, { "default": true, - "id": 21104, + "id": 22888, "properties": { "east": "none", "north": "none", @@ -50599,7 +61017,7 @@ } }, { - "id": 21105, + "id": 22889, "properties": { "east": "none", "north": "none", @@ -50610,7 +61028,7 @@ } }, { - "id": 21106, + "id": 22890, "properties": { "east": "none", "north": "none", @@ -50621,7 +61039,7 @@ } }, { - "id": 21107, + "id": 22891, "properties": { "east": "none", "north": "none", @@ -50632,7 +61050,7 @@ } }, { - "id": 21108, + "id": 22892, "properties": { "east": "none", "north": "none", @@ -50643,7 +61061,7 @@ } }, { - "id": 21109, + "id": 22893, "properties": { "east": "none", "north": "none", @@ -50654,7 +61072,7 @@ } }, { - "id": 21110, + "id": 22894, "properties": { "east": "none", "north": "none", @@ -50665,7 +61083,7 @@ } }, { - "id": 21111, + "id": 22895, "properties": { "east": "none", "north": "none", @@ -50676,7 +61094,7 @@ } }, { - "id": 21112, + "id": 22896, "properties": { "east": "none", "north": "none", @@ -50687,7 +61105,7 @@ } }, { - "id": 21113, + "id": 22897, "properties": { "east": "none", "north": "none", @@ -50698,7 +61116,7 @@ } }, { - "id": 21114, + "id": 22898, "properties": { "east": "none", "north": "none", @@ -50709,7 +61127,7 @@ } }, { - "id": 21115, + "id": 22899, "properties": { "east": "none", "north": "none", @@ -50720,7 +61138,7 @@ } }, { - "id": 21116, + "id": 22900, "properties": { "east": "none", "north": "none", @@ -50731,7 +61149,7 @@ } }, { - "id": 21117, + "id": 22901, "properties": { "east": "none", "north": "none", @@ -50742,7 +61160,7 @@ } }, { - "id": 21118, + "id": 22902, "properties": { "east": "none", "north": "none", @@ -50753,7 +61171,7 @@ } }, { - "id": 21119, + "id": 22903, "properties": { "east": "none", "north": "none", @@ -50764,7 +61182,7 @@ } }, { - "id": 21120, + "id": 22904, "properties": { "east": "none", "north": "none", @@ -50775,7 +61193,7 @@ } }, { - "id": 21121, + "id": 22905, "properties": { "east": "none", "north": "none", @@ -50786,7 +61204,7 @@ } }, { - "id": 21122, + "id": 22906, "properties": { "east": "none", "north": "none", @@ -50797,7 +61215,7 @@ } }, { - "id": 21123, + "id": 22907, "properties": { "east": "none", "north": "none", @@ -50808,7 +61226,7 @@ } }, { - "id": 21124, + "id": 22908, "properties": { "east": "none", "north": "none", @@ -50819,7 +61237,7 @@ } }, { - "id": 21125, + "id": 22909, "properties": { "east": "none", "north": "none", @@ -50830,7 +61248,7 @@ } }, { - "id": 21126, + "id": 22910, "properties": { "east": "none", "north": "none", @@ -50841,7 +61259,7 @@ } }, { - "id": 21127, + "id": 22911, "properties": { "east": "none", "north": "none", @@ -50852,7 +61270,7 @@ } }, { - "id": 21128, + "id": 22912, "properties": { "east": "none", "north": "none", @@ -50863,7 +61281,7 @@ } }, { - "id": 21129, + "id": 22913, "properties": { "east": "none", "north": "none", @@ -50874,7 +61292,7 @@ } }, { - "id": 21130, + "id": 22914, "properties": { "east": "none", "north": "none", @@ -50885,7 +61303,7 @@ } }, { - "id": 21131, + "id": 22915, "properties": { "east": "none", "north": "none", @@ -50896,7 +61314,7 @@ } }, { - "id": 21132, + "id": 22916, "properties": { "east": "none", "north": "none", @@ -50907,7 +61325,7 @@ } }, { - "id": 21133, + "id": 22917, "properties": { "east": "none", "north": "none", @@ -50918,7 +61336,7 @@ } }, { - "id": 21134, + "id": 22918, "properties": { "east": "none", "north": "none", @@ -50929,7 +61347,7 @@ } }, { - "id": 21135, + "id": 22919, "properties": { "east": "none", "north": "none", @@ -50940,7 +61358,7 @@ } }, { - "id": 21136, + "id": 22920, "properties": { "east": "none", "north": "none", @@ -50951,7 +61369,7 @@ } }, { - "id": 21137, + "id": 22921, "properties": { "east": "none", "north": "low", @@ -50962,7 +61380,7 @@ } }, { - "id": 21138, + "id": 22922, "properties": { "east": "none", "north": "low", @@ -50973,7 +61391,7 @@ } }, { - "id": 21139, + "id": 22923, "properties": { "east": "none", "north": "low", @@ -50984,7 +61402,7 @@ } }, { - "id": 21140, + "id": 22924, "properties": { "east": "none", "north": "low", @@ -50995,7 +61413,7 @@ } }, { - "id": 21141, + "id": 22925, "properties": { "east": "none", "north": "low", @@ -51006,7 +61424,7 @@ } }, { - "id": 21142, + "id": 22926, "properties": { "east": "none", "north": "low", @@ -51017,7 +61435,7 @@ } }, { - "id": 21143, + "id": 22927, "properties": { "east": "none", "north": "low", @@ -51028,7 +61446,7 @@ } }, { - "id": 21144, + "id": 22928, "properties": { "east": "none", "north": "low", @@ -51039,7 +61457,7 @@ } }, { - "id": 21145, + "id": 22929, "properties": { "east": "none", "north": "low", @@ -51050,7 +61468,7 @@ } }, { - "id": 21146, + "id": 22930, "properties": { "east": "none", "north": "low", @@ -51061,7 +61479,7 @@ } }, { - "id": 21147, + "id": 22931, "properties": { "east": "none", "north": "low", @@ -51072,7 +61490,7 @@ } }, { - "id": 21148, + "id": 22932, "properties": { "east": "none", "north": "low", @@ -51083,7 +61501,7 @@ } }, { - "id": 21149, + "id": 22933, "properties": { "east": "none", "north": "low", @@ -51094,7 +61512,7 @@ } }, { - "id": 21150, + "id": 22934, "properties": { "east": "none", "north": "low", @@ -51105,7 +61523,7 @@ } }, { - "id": 21151, + "id": 22935, "properties": { "east": "none", "north": "low", @@ -51116,7 +61534,7 @@ } }, { - "id": 21152, + "id": 22936, "properties": { "east": "none", "north": "low", @@ -51127,7 +61545,7 @@ } }, { - "id": 21153, + "id": 22937, "properties": { "east": "none", "north": "low", @@ -51138,7 +61556,7 @@ } }, { - "id": 21154, + "id": 22938, "properties": { "east": "none", "north": "low", @@ -51149,7 +61567,7 @@ } }, { - "id": 21155, + "id": 22939, "properties": { "east": "none", "north": "low", @@ -51160,7 +61578,7 @@ } }, { - "id": 21156, + "id": 22940, "properties": { "east": "none", "north": "low", @@ -51171,7 +61589,7 @@ } }, { - "id": 21157, + "id": 22941, "properties": { "east": "none", "north": "low", @@ -51182,7 +61600,7 @@ } }, { - "id": 21158, + "id": 22942, "properties": { "east": "none", "north": "low", @@ -51193,7 +61611,7 @@ } }, { - "id": 21159, + "id": 22943, "properties": { "east": "none", "north": "low", @@ -51204,7 +61622,7 @@ } }, { - "id": 21160, + "id": 22944, "properties": { "east": "none", "north": "low", @@ -51215,7 +61633,7 @@ } }, { - "id": 21161, + "id": 22945, "properties": { "east": "none", "north": "low", @@ -51226,7 +61644,7 @@ } }, { - "id": 21162, + "id": 22946, "properties": { "east": "none", "north": "low", @@ -51237,7 +61655,7 @@ } }, { - "id": 21163, + "id": 22947, "properties": { "east": "none", "north": "low", @@ -51248,7 +61666,7 @@ } }, { - "id": 21164, + "id": 22948, "properties": { "east": "none", "north": "low", @@ -51259,7 +61677,7 @@ } }, { - "id": 21165, + "id": 22949, "properties": { "east": "none", "north": "low", @@ -51270,7 +61688,7 @@ } }, { - "id": 21166, + "id": 22950, "properties": { "east": "none", "north": "low", @@ -51281,7 +61699,7 @@ } }, { - "id": 21167, + "id": 22951, "properties": { "east": "none", "north": "low", @@ -51292,7 +61710,7 @@ } }, { - "id": 21168, + "id": 22952, "properties": { "east": "none", "north": "low", @@ -51303,7 +61721,7 @@ } }, { - "id": 21169, + "id": 22953, "properties": { "east": "none", "north": "low", @@ -51314,7 +61732,7 @@ } }, { - "id": 21170, + "id": 22954, "properties": { "east": "none", "north": "low", @@ -51325,7 +61743,7 @@ } }, { - "id": 21171, + "id": 22955, "properties": { "east": "none", "north": "low", @@ -51336,7 +61754,7 @@ } }, { - "id": 21172, + "id": 22956, "properties": { "east": "none", "north": "low", @@ -51347,7 +61765,7 @@ } }, { - "id": 21173, + "id": 22957, "properties": { "east": "none", "north": "tall", @@ -51358,7 +61776,7 @@ } }, { - "id": 21174, + "id": 22958, "properties": { "east": "none", "north": "tall", @@ -51369,7 +61787,7 @@ } }, { - "id": 21175, + "id": 22959, "properties": { "east": "none", "north": "tall", @@ -51380,7 +61798,7 @@ } }, { - "id": 21176, + "id": 22960, "properties": { "east": "none", "north": "tall", @@ -51391,7 +61809,7 @@ } }, { - "id": 21177, + "id": 22961, "properties": { "east": "none", "north": "tall", @@ -51402,7 +61820,7 @@ } }, { - "id": 21178, + "id": 22962, "properties": { "east": "none", "north": "tall", @@ -51413,7 +61831,7 @@ } }, { - "id": 21179, + "id": 22963, "properties": { "east": "none", "north": "tall", @@ -51424,7 +61842,7 @@ } }, { - "id": 21180, + "id": 22964, "properties": { "east": "none", "north": "tall", @@ -51435,7 +61853,7 @@ } }, { - "id": 21181, + "id": 22965, "properties": { "east": "none", "north": "tall", @@ -51446,7 +61864,7 @@ } }, { - "id": 21182, + "id": 22966, "properties": { "east": "none", "north": "tall", @@ -51457,7 +61875,7 @@ } }, { - "id": 21183, + "id": 22967, "properties": { "east": "none", "north": "tall", @@ -51468,7 +61886,7 @@ } }, { - "id": 21184, + "id": 22968, "properties": { "east": "none", "north": "tall", @@ -51479,7 +61897,7 @@ } }, { - "id": 21185, + "id": 22969, "properties": { "east": "none", "north": "tall", @@ -51490,7 +61908,7 @@ } }, { - "id": 21186, + "id": 22970, "properties": { "east": "none", "north": "tall", @@ -51501,7 +61919,7 @@ } }, { - "id": 21187, + "id": 22971, "properties": { "east": "none", "north": "tall", @@ -51512,7 +61930,7 @@ } }, { - "id": 21188, + "id": 22972, "properties": { "east": "none", "north": "tall", @@ -51523,7 +61941,7 @@ } }, { - "id": 21189, + "id": 22973, "properties": { "east": "none", "north": "tall", @@ -51534,7 +61952,7 @@ } }, { - "id": 21190, + "id": 22974, "properties": { "east": "none", "north": "tall", @@ -51545,7 +61963,7 @@ } }, { - "id": 21191, + "id": 22975, "properties": { "east": "none", "north": "tall", @@ -51556,7 +61974,7 @@ } }, { - "id": 21192, + "id": 22976, "properties": { "east": "none", "north": "tall", @@ -51567,7 +61985,7 @@ } }, { - "id": 21193, + "id": 22977, "properties": { "east": "none", "north": "tall", @@ -51578,7 +61996,7 @@ } }, { - "id": 21194, + "id": 22978, "properties": { "east": "none", "north": "tall", @@ -51589,7 +62007,7 @@ } }, { - "id": 21195, + "id": 22979, "properties": { "east": "none", "north": "tall", @@ -51600,7 +62018,7 @@ } }, { - "id": 21196, + "id": 22980, "properties": { "east": "none", "north": "tall", @@ -51611,7 +62029,7 @@ } }, { - "id": 21197, + "id": 22981, "properties": { "east": "none", "north": "tall", @@ -51622,7 +62040,7 @@ } }, { - "id": 21198, + "id": 22982, "properties": { "east": "none", "north": "tall", @@ -51633,7 +62051,7 @@ } }, { - "id": 21199, + "id": 22983, "properties": { "east": "none", "north": "tall", @@ -51644,7 +62062,7 @@ } }, { - "id": 21200, + "id": 22984, "properties": { "east": "none", "north": "tall", @@ -51655,7 +62073,7 @@ } }, { - "id": 21201, + "id": 22985, "properties": { "east": "none", "north": "tall", @@ -51666,7 +62084,7 @@ } }, { - "id": 21202, + "id": 22986, "properties": { "east": "none", "north": "tall", @@ -51677,7 +62095,7 @@ } }, { - "id": 21203, + "id": 22987, "properties": { "east": "none", "north": "tall", @@ -51688,7 +62106,7 @@ } }, { - "id": 21204, + "id": 22988, "properties": { "east": "none", "north": "tall", @@ -51699,7 +62117,7 @@ } }, { - "id": 21205, + "id": 22989, "properties": { "east": "none", "north": "tall", @@ -51710,7 +62128,7 @@ } }, { - "id": 21206, + "id": 22990, "properties": { "east": "none", "north": "tall", @@ -51721,7 +62139,7 @@ } }, { - "id": 21207, + "id": 22991, "properties": { "east": "none", "north": "tall", @@ -51732,7 +62150,7 @@ } }, { - "id": 21208, + "id": 22992, "properties": { "east": "none", "north": "tall", @@ -51743,7 +62161,7 @@ } }, { - "id": 21209, + "id": 22993, "properties": { "east": "low", "north": "none", @@ -51754,7 +62172,7 @@ } }, { - "id": 21210, + "id": 22994, "properties": { "east": "low", "north": "none", @@ -51765,7 +62183,7 @@ } }, { - "id": 21211, + "id": 22995, "properties": { "east": "low", "north": "none", @@ -51776,7 +62194,7 @@ } }, { - "id": 21212, + "id": 22996, "properties": { "east": "low", "north": "none", @@ -51787,7 +62205,7 @@ } }, { - "id": 21213, + "id": 22997, "properties": { "east": "low", "north": "none", @@ -51798,7 +62216,7 @@ } }, { - "id": 21214, + "id": 22998, "properties": { "east": "low", "north": "none", @@ -51809,7 +62227,7 @@ } }, { - "id": 21215, + "id": 22999, "properties": { "east": "low", "north": "none", @@ -51820,7 +62238,7 @@ } }, { - "id": 21216, + "id": 23000, "properties": { "east": "low", "north": "none", @@ -51831,7 +62249,7 @@ } }, { - "id": 21217, + "id": 23001, "properties": { "east": "low", "north": "none", @@ -51842,7 +62260,7 @@ } }, { - "id": 21218, + "id": 23002, "properties": { "east": "low", "north": "none", @@ -51853,7 +62271,7 @@ } }, { - "id": 21219, + "id": 23003, "properties": { "east": "low", "north": "none", @@ -51864,7 +62282,7 @@ } }, { - "id": 21220, + "id": 23004, "properties": { "east": "low", "north": "none", @@ -51875,7 +62293,7 @@ } }, { - "id": 21221, + "id": 23005, "properties": { "east": "low", "north": "none", @@ -51886,7 +62304,7 @@ } }, { - "id": 21222, + "id": 23006, "properties": { "east": "low", "north": "none", @@ -51897,7 +62315,7 @@ } }, { - "id": 21223, + "id": 23007, "properties": { "east": "low", "north": "none", @@ -51908,7 +62326,7 @@ } }, { - "id": 21224, + "id": 23008, "properties": { "east": "low", "north": "none", @@ -51919,7 +62337,7 @@ } }, { - "id": 21225, + "id": 23009, "properties": { "east": "low", "north": "none", @@ -51930,7 +62348,7 @@ } }, { - "id": 21226, + "id": 23010, "properties": { "east": "low", "north": "none", @@ -51941,7 +62359,7 @@ } }, { - "id": 21227, + "id": 23011, "properties": { "east": "low", "north": "none", @@ -51952,7 +62370,7 @@ } }, { - "id": 21228, + "id": 23012, "properties": { "east": "low", "north": "none", @@ -51963,7 +62381,7 @@ } }, { - "id": 21229, + "id": 23013, "properties": { "east": "low", "north": "none", @@ -51974,7 +62392,7 @@ } }, { - "id": 21230, + "id": 23014, "properties": { "east": "low", "north": "none", @@ -51985,7 +62403,7 @@ } }, { - "id": 21231, + "id": 23015, "properties": { "east": "low", "north": "none", @@ -51996,7 +62414,7 @@ } }, { - "id": 21232, + "id": 23016, "properties": { "east": "low", "north": "none", @@ -52007,7 +62425,7 @@ } }, { - "id": 21233, + "id": 23017, "properties": { "east": "low", "north": "none", @@ -52018,7 +62436,7 @@ } }, { - "id": 21234, + "id": 23018, "properties": { "east": "low", "north": "none", @@ -52029,7 +62447,7 @@ } }, { - "id": 21235, + "id": 23019, "properties": { "east": "low", "north": "none", @@ -52040,7 +62458,7 @@ } }, { - "id": 21236, + "id": 23020, "properties": { "east": "low", "north": "none", @@ -52051,7 +62469,7 @@ } }, { - "id": 21237, + "id": 23021, "properties": { "east": "low", "north": "none", @@ -52062,7 +62480,7 @@ } }, { - "id": 21238, + "id": 23022, "properties": { "east": "low", "north": "none", @@ -52073,7 +62491,7 @@ } }, { - "id": 21239, + "id": 23023, "properties": { "east": "low", "north": "none", @@ -52084,7 +62502,7 @@ } }, { - "id": 21240, + "id": 23024, "properties": { "east": "low", "north": "none", @@ -52095,7 +62513,7 @@ } }, { - "id": 21241, + "id": 23025, "properties": { "east": "low", "north": "none", @@ -52106,7 +62524,7 @@ } }, { - "id": 21242, + "id": 23026, "properties": { "east": "low", "north": "none", @@ -52117,7 +62535,7 @@ } }, { - "id": 21243, + "id": 23027, "properties": { "east": "low", "north": "none", @@ -52128,7 +62546,7 @@ } }, { - "id": 21244, + "id": 23028, "properties": { "east": "low", "north": "none", @@ -52139,7 +62557,7 @@ } }, { - "id": 21245, + "id": 23029, "properties": { "east": "low", "north": "low", @@ -52150,7 +62568,7 @@ } }, { - "id": 21246, + "id": 23030, "properties": { "east": "low", "north": "low", @@ -52161,7 +62579,7 @@ } }, { - "id": 21247, + "id": 23031, "properties": { "east": "low", "north": "low", @@ -52172,7 +62590,7 @@ } }, { - "id": 21248, + "id": 23032, "properties": { "east": "low", "north": "low", @@ -52183,7 +62601,7 @@ } }, { - "id": 21249, + "id": 23033, "properties": { "east": "low", "north": "low", @@ -52194,7 +62612,7 @@ } }, { - "id": 21250, + "id": 23034, "properties": { "east": "low", "north": "low", @@ -52205,7 +62623,7 @@ } }, { - "id": 21251, + "id": 23035, "properties": { "east": "low", "north": "low", @@ -52216,7 +62634,7 @@ } }, { - "id": 21252, + "id": 23036, "properties": { "east": "low", "north": "low", @@ -52227,7 +62645,7 @@ } }, { - "id": 21253, + "id": 23037, "properties": { "east": "low", "north": "low", @@ -52238,7 +62656,7 @@ } }, { - "id": 21254, + "id": 23038, "properties": { "east": "low", "north": "low", @@ -52249,7 +62667,7 @@ } }, { - "id": 21255, + "id": 23039, "properties": { "east": "low", "north": "low", @@ -52260,7 +62678,7 @@ } }, { - "id": 21256, + "id": 23040, "properties": { "east": "low", "north": "low", @@ -52271,7 +62689,7 @@ } }, { - "id": 21257, + "id": 23041, "properties": { "east": "low", "north": "low", @@ -52282,7 +62700,7 @@ } }, { - "id": 21258, + "id": 23042, "properties": { "east": "low", "north": "low", @@ -52293,7 +62711,7 @@ } }, { - "id": 21259, + "id": 23043, "properties": { "east": "low", "north": "low", @@ -52304,7 +62722,7 @@ } }, { - "id": 21260, + "id": 23044, "properties": { "east": "low", "north": "low", @@ -52315,7 +62733,7 @@ } }, { - "id": 21261, + "id": 23045, "properties": { "east": "low", "north": "low", @@ -52326,7 +62744,7 @@ } }, { - "id": 21262, + "id": 23046, "properties": { "east": "low", "north": "low", @@ -52337,7 +62755,7 @@ } }, { - "id": 21263, + "id": 23047, "properties": { "east": "low", "north": "low", @@ -52348,7 +62766,7 @@ } }, { - "id": 21264, + "id": 23048, "properties": { "east": "low", "north": "low", @@ -52359,7 +62777,7 @@ } }, { - "id": 21265, + "id": 23049, "properties": { "east": "low", "north": "low", @@ -52370,7 +62788,7 @@ } }, { - "id": 21266, + "id": 23050, "properties": { "east": "low", "north": "low", @@ -52381,7 +62799,7 @@ } }, { - "id": 21267, + "id": 23051, "properties": { "east": "low", "north": "low", @@ -52392,7 +62810,7 @@ } }, { - "id": 21268, + "id": 23052, "properties": { "east": "low", "north": "low", @@ -52403,7 +62821,7 @@ } }, { - "id": 21269, + "id": 23053, "properties": { "east": "low", "north": "low", @@ -52414,7 +62832,7 @@ } }, { - "id": 21270, + "id": 23054, "properties": { "east": "low", "north": "low", @@ -52425,7 +62843,7 @@ } }, { - "id": 21271, + "id": 23055, "properties": { "east": "low", "north": "low", @@ -52436,7 +62854,7 @@ } }, { - "id": 21272, + "id": 23056, "properties": { "east": "low", "north": "low", @@ -52447,7 +62865,7 @@ } }, { - "id": 21273, + "id": 23057, "properties": { "east": "low", "north": "low", @@ -52458,7 +62876,7 @@ } }, { - "id": 21274, + "id": 23058, "properties": { "east": "low", "north": "low", @@ -52469,7 +62887,7 @@ } }, { - "id": 21275, + "id": 23059, "properties": { "east": "low", "north": "low", @@ -52480,7 +62898,7 @@ } }, { - "id": 21276, + "id": 23060, "properties": { "east": "low", "north": "low", @@ -52491,7 +62909,7 @@ } }, { - "id": 21277, + "id": 23061, "properties": { "east": "low", "north": "low", @@ -52502,7 +62920,7 @@ } }, { - "id": 21278, + "id": 23062, "properties": { "east": "low", "north": "low", @@ -52513,7 +62931,7 @@ } }, { - "id": 21279, + "id": 23063, "properties": { "east": "low", "north": "low", @@ -52524,7 +62942,7 @@ } }, { - "id": 21280, + "id": 23064, "properties": { "east": "low", "north": "low", @@ -52535,7 +62953,7 @@ } }, { - "id": 21281, + "id": 23065, "properties": { "east": "low", "north": "tall", @@ -52546,7 +62964,7 @@ } }, { - "id": 21282, + "id": 23066, "properties": { "east": "low", "north": "tall", @@ -52557,7 +62975,7 @@ } }, { - "id": 21283, + "id": 23067, "properties": { "east": "low", "north": "tall", @@ -52568,7 +62986,7 @@ } }, { - "id": 21284, + "id": 23068, "properties": { "east": "low", "north": "tall", @@ -52579,7 +62997,7 @@ } }, { - "id": 21285, + "id": 23069, "properties": { "east": "low", "north": "tall", @@ -52590,7 +63008,7 @@ } }, { - "id": 21286, + "id": 23070, "properties": { "east": "low", "north": "tall", @@ -52601,7 +63019,7 @@ } }, { - "id": 21287, + "id": 23071, "properties": { "east": "low", "north": "tall", @@ -52612,7 +63030,7 @@ } }, { - "id": 21288, + "id": 23072, "properties": { "east": "low", "north": "tall", @@ -52623,7 +63041,7 @@ } }, { - "id": 21289, + "id": 23073, "properties": { "east": "low", "north": "tall", @@ -52634,7 +63052,7 @@ } }, { - "id": 21290, + "id": 23074, "properties": { "east": "low", "north": "tall", @@ -52645,7 +63063,7 @@ } }, { - "id": 21291, + "id": 23075, "properties": { "east": "low", "north": "tall", @@ -52656,7 +63074,7 @@ } }, { - "id": 21292, + "id": 23076, "properties": { "east": "low", "north": "tall", @@ -52667,7 +63085,7 @@ } }, { - "id": 21293, + "id": 23077, "properties": { "east": "low", "north": "tall", @@ -52678,7 +63096,7 @@ } }, { - "id": 21294, + "id": 23078, "properties": { "east": "low", "north": "tall", @@ -52689,7 +63107,7 @@ } }, { - "id": 21295, + "id": 23079, "properties": { "east": "low", "north": "tall", @@ -52700,7 +63118,7 @@ } }, { - "id": 21296, + "id": 23080, "properties": { "east": "low", "north": "tall", @@ -52711,7 +63129,7 @@ } }, { - "id": 21297, + "id": 23081, "properties": { "east": "low", "north": "tall", @@ -52722,7 +63140,7 @@ } }, { - "id": 21298, + "id": 23082, "properties": { "east": "low", "north": "tall", @@ -52733,7 +63151,7 @@ } }, { - "id": 21299, + "id": 23083, "properties": { "east": "low", "north": "tall", @@ -52744,7 +63162,7 @@ } }, { - "id": 21300, + "id": 23084, "properties": { "east": "low", "north": "tall", @@ -52755,7 +63173,7 @@ } }, { - "id": 21301, + "id": 23085, "properties": { "east": "low", "north": "tall", @@ -52766,7 +63184,7 @@ } }, { - "id": 21302, + "id": 23086, "properties": { "east": "low", "north": "tall", @@ -52777,7 +63195,7 @@ } }, { - "id": 21303, + "id": 23087, "properties": { "east": "low", "north": "tall", @@ -52788,7 +63206,7 @@ } }, { - "id": 21304, + "id": 23088, "properties": { "east": "low", "north": "tall", @@ -52799,7 +63217,7 @@ } }, { - "id": 21305, + "id": 23089, "properties": { "east": "low", "north": "tall", @@ -52810,7 +63228,7 @@ } }, { - "id": 21306, + "id": 23090, "properties": { "east": "low", "north": "tall", @@ -52821,7 +63239,7 @@ } }, { - "id": 21307, + "id": 23091, "properties": { "east": "low", "north": "tall", @@ -52832,7 +63250,7 @@ } }, { - "id": 21308, + "id": 23092, "properties": { "east": "low", "north": "tall", @@ -52843,7 +63261,7 @@ } }, { - "id": 21309, + "id": 23093, "properties": { "east": "low", "north": "tall", @@ -52854,7 +63272,7 @@ } }, { - "id": 21310, + "id": 23094, "properties": { "east": "low", "north": "tall", @@ -52865,7 +63283,7 @@ } }, { - "id": 21311, + "id": 23095, "properties": { "east": "low", "north": "tall", @@ -52876,7 +63294,7 @@ } }, { - "id": 21312, + "id": 23096, "properties": { "east": "low", "north": "tall", @@ -52887,7 +63305,7 @@ } }, { - "id": 21313, + "id": 23097, "properties": { "east": "low", "north": "tall", @@ -52898,7 +63316,7 @@ } }, { - "id": 21314, + "id": 23098, "properties": { "east": "low", "north": "tall", @@ -52909,7 +63327,7 @@ } }, { - "id": 21315, + "id": 23099, "properties": { "east": "low", "north": "tall", @@ -52920,7 +63338,7 @@ } }, { - "id": 21316, + "id": 23100, "properties": { "east": "low", "north": "tall", @@ -52931,7 +63349,7 @@ } }, { - "id": 21317, + "id": 23101, "properties": { "east": "tall", "north": "none", @@ -52942,7 +63360,7 @@ } }, { - "id": 21318, + "id": 23102, "properties": { "east": "tall", "north": "none", @@ -52953,7 +63371,7 @@ } }, { - "id": 21319, + "id": 23103, "properties": { "east": "tall", "north": "none", @@ -52964,7 +63382,7 @@ } }, { - "id": 21320, + "id": 23104, "properties": { "east": "tall", "north": "none", @@ -52975,7 +63393,7 @@ } }, { - "id": 21321, + "id": 23105, "properties": { "east": "tall", "north": "none", @@ -52986,7 +63404,7 @@ } }, { - "id": 21322, + "id": 23106, "properties": { "east": "tall", "north": "none", @@ -52997,7 +63415,7 @@ } }, { - "id": 21323, + "id": 23107, "properties": { "east": "tall", "north": "none", @@ -53008,7 +63426,7 @@ } }, { - "id": 21324, + "id": 23108, "properties": { "east": "tall", "north": "none", @@ -53019,7 +63437,7 @@ } }, { - "id": 21325, + "id": 23109, "properties": { "east": "tall", "north": "none", @@ -53030,7 +63448,7 @@ } }, { - "id": 21326, + "id": 23110, "properties": { "east": "tall", "north": "none", @@ -53041,7 +63459,7 @@ } }, { - "id": 21327, + "id": 23111, "properties": { "east": "tall", "north": "none", @@ -53052,7 +63470,7 @@ } }, { - "id": 21328, + "id": 23112, "properties": { "east": "tall", "north": "none", @@ -53063,7 +63481,7 @@ } }, { - "id": 21329, + "id": 23113, "properties": { "east": "tall", "north": "none", @@ -53074,7 +63492,7 @@ } }, { - "id": 21330, + "id": 23114, "properties": { "east": "tall", "north": "none", @@ -53085,7 +63503,7 @@ } }, { - "id": 21331, + "id": 23115, "properties": { "east": "tall", "north": "none", @@ -53096,7 +63514,7 @@ } }, { - "id": 21332, + "id": 23116, "properties": { "east": "tall", "north": "none", @@ -53107,7 +63525,7 @@ } }, { - "id": 21333, + "id": 23117, "properties": { "east": "tall", "north": "none", @@ -53118,7 +63536,7 @@ } }, { - "id": 21334, + "id": 23118, "properties": { "east": "tall", "north": "none", @@ -53129,7 +63547,7 @@ } }, { - "id": 21335, + "id": 23119, "properties": { "east": "tall", "north": "none", @@ -53140,7 +63558,7 @@ } }, { - "id": 21336, + "id": 23120, "properties": { "east": "tall", "north": "none", @@ -53151,7 +63569,7 @@ } }, { - "id": 21337, + "id": 23121, "properties": { "east": "tall", "north": "none", @@ -53162,7 +63580,7 @@ } }, { - "id": 21338, + "id": 23122, "properties": { "east": "tall", "north": "none", @@ -53173,7 +63591,7 @@ } }, { - "id": 21339, + "id": 23123, "properties": { "east": "tall", "north": "none", @@ -53184,7 +63602,7 @@ } }, { - "id": 21340, + "id": 23124, "properties": { "east": "tall", "north": "none", @@ -53195,7 +63613,7 @@ } }, { - "id": 21341, + "id": 23125, "properties": { "east": "tall", "north": "none", @@ -53206,7 +63624,7 @@ } }, { - "id": 21342, + "id": 23126, "properties": { "east": "tall", "north": "none", @@ -53217,7 +63635,7 @@ } }, { - "id": 21343, + "id": 23127, "properties": { "east": "tall", "north": "none", @@ -53228,7 +63646,7 @@ } }, { - "id": 21344, + "id": 23128, "properties": { "east": "tall", "north": "none", @@ -53239,7 +63657,7 @@ } }, { - "id": 21345, + "id": 23129, "properties": { "east": "tall", "north": "none", @@ -53250,7 +63668,7 @@ } }, { - "id": 21346, + "id": 23130, "properties": { "east": "tall", "north": "none", @@ -53261,7 +63679,7 @@ } }, { - "id": 21347, + "id": 23131, "properties": { "east": "tall", "north": "none", @@ -53272,7 +63690,7 @@ } }, { - "id": 21348, + "id": 23132, "properties": { "east": "tall", "north": "none", @@ -53283,7 +63701,7 @@ } }, { - "id": 21349, + "id": 23133, "properties": { "east": "tall", "north": "none", @@ -53294,7 +63712,7 @@ } }, { - "id": 21350, + "id": 23134, "properties": { "east": "tall", "north": "none", @@ -53305,7 +63723,7 @@ } }, { - "id": 21351, + "id": 23135, "properties": { "east": "tall", "north": "none", @@ -53316,7 +63734,7 @@ } }, { - "id": 21352, + "id": 23136, "properties": { "east": "tall", "north": "none", @@ -53327,7 +63745,7 @@ } }, { - "id": 21353, + "id": 23137, "properties": { "east": "tall", "north": "low", @@ -53338,7 +63756,7 @@ } }, { - "id": 21354, + "id": 23138, "properties": { "east": "tall", "north": "low", @@ -53349,7 +63767,7 @@ } }, { - "id": 21355, + "id": 23139, "properties": { "east": "tall", "north": "low", @@ -53360,7 +63778,7 @@ } }, { - "id": 21356, + "id": 23140, "properties": { "east": "tall", "north": "low", @@ -53371,7 +63789,7 @@ } }, { - "id": 21357, + "id": 23141, "properties": { "east": "tall", "north": "low", @@ -53382,7 +63800,7 @@ } }, { - "id": 21358, + "id": 23142, "properties": { "east": "tall", "north": "low", @@ -53393,7 +63811,7 @@ } }, { - "id": 21359, + "id": 23143, "properties": { "east": "tall", "north": "low", @@ -53404,7 +63822,7 @@ } }, { - "id": 21360, + "id": 23144, "properties": { "east": "tall", "north": "low", @@ -53415,7 +63833,7 @@ } }, { - "id": 21361, + "id": 23145, "properties": { "east": "tall", "north": "low", @@ -53426,7 +63844,7 @@ } }, { - "id": 21362, + "id": 23146, "properties": { "east": "tall", "north": "low", @@ -53437,7 +63855,7 @@ } }, { - "id": 21363, + "id": 23147, "properties": { "east": "tall", "north": "low", @@ -53448,7 +63866,7 @@ } }, { - "id": 21364, + "id": 23148, "properties": { "east": "tall", "north": "low", @@ -53459,7 +63877,7 @@ } }, { - "id": 21365, + "id": 23149, "properties": { "east": "tall", "north": "low", @@ -53470,7 +63888,7 @@ } }, { - "id": 21366, + "id": 23150, "properties": { "east": "tall", "north": "low", @@ -53481,7 +63899,7 @@ } }, { - "id": 21367, + "id": 23151, "properties": { "east": "tall", "north": "low", @@ -53492,7 +63910,7 @@ } }, { - "id": 21368, + "id": 23152, "properties": { "east": "tall", "north": "low", @@ -53503,7 +63921,7 @@ } }, { - "id": 21369, + "id": 23153, "properties": { "east": "tall", "north": "low", @@ -53514,7 +63932,7 @@ } }, { - "id": 21370, + "id": 23154, "properties": { "east": "tall", "north": "low", @@ -53525,7 +63943,7 @@ } }, { - "id": 21371, + "id": 23155, "properties": { "east": "tall", "north": "low", @@ -53536,7 +63954,7 @@ } }, { - "id": 21372, + "id": 23156, "properties": { "east": "tall", "north": "low", @@ -53547,7 +63965,7 @@ } }, { - "id": 21373, + "id": 23157, "properties": { "east": "tall", "north": "low", @@ -53558,7 +63976,7 @@ } }, { - "id": 21374, + "id": 23158, "properties": { "east": "tall", "north": "low", @@ -53569,7 +63987,7 @@ } }, { - "id": 21375, + "id": 23159, "properties": { "east": "tall", "north": "low", @@ -53580,7 +63998,7 @@ } }, { - "id": 21376, + "id": 23160, "properties": { "east": "tall", "north": "low", @@ -53591,7 +64009,7 @@ } }, { - "id": 21377, + "id": 23161, "properties": { "east": "tall", "north": "low", @@ -53602,7 +64020,7 @@ } }, { - "id": 21378, + "id": 23162, "properties": { "east": "tall", "north": "low", @@ -53613,7 +64031,7 @@ } }, { - "id": 21379, + "id": 23163, "properties": { "east": "tall", "north": "low", @@ -53624,7 +64042,7 @@ } }, { - "id": 21380, + "id": 23164, "properties": { "east": "tall", "north": "low", @@ -53635,7 +64053,7 @@ } }, { - "id": 21381, + "id": 23165, "properties": { "east": "tall", "north": "low", @@ -53646,7 +64064,7 @@ } }, { - "id": 21382, + "id": 23166, "properties": { "east": "tall", "north": "low", @@ -53657,7 +64075,7 @@ } }, { - "id": 21383, + "id": 23167, "properties": { "east": "tall", "north": "low", @@ -53668,7 +64086,7 @@ } }, { - "id": 21384, + "id": 23168, "properties": { "east": "tall", "north": "low", @@ -53679,7 +64097,7 @@ } }, { - "id": 21385, + "id": 23169, "properties": { "east": "tall", "north": "low", @@ -53690,7 +64108,7 @@ } }, { - "id": 21386, + "id": 23170, "properties": { "east": "tall", "north": "low", @@ -53701,7 +64119,7 @@ } }, { - "id": 21387, + "id": 23171, "properties": { "east": "tall", "north": "low", @@ -53712,7 +64130,7 @@ } }, { - "id": 21388, + "id": 23172, "properties": { "east": "tall", "north": "low", @@ -53723,7 +64141,7 @@ } }, { - "id": 21389, + "id": 23173, "properties": { "east": "tall", "north": "tall", @@ -53734,7 +64152,7 @@ } }, { - "id": 21390, + "id": 23174, "properties": { "east": "tall", "north": "tall", @@ -53745,7 +64163,7 @@ } }, { - "id": 21391, + "id": 23175, "properties": { "east": "tall", "north": "tall", @@ -53756,7 +64174,7 @@ } }, { - "id": 21392, + "id": 23176, "properties": { "east": "tall", "north": "tall", @@ -53767,7 +64185,7 @@ } }, { - "id": 21393, + "id": 23177, "properties": { "east": "tall", "north": "tall", @@ -53778,7 +64196,7 @@ } }, { - "id": 21394, + "id": 23178, "properties": { "east": "tall", "north": "tall", @@ -53789,7 +64207,7 @@ } }, { - "id": 21395, + "id": 23179, "properties": { "east": "tall", "north": "tall", @@ -53800,7 +64218,7 @@ } }, { - "id": 21396, + "id": 23180, "properties": { "east": "tall", "north": "tall", @@ -53811,7 +64229,7 @@ } }, { - "id": 21397, + "id": 23181, "properties": { "east": "tall", "north": "tall", @@ -53822,7 +64240,7 @@ } }, { - "id": 21398, + "id": 23182, "properties": { "east": "tall", "north": "tall", @@ -53833,7 +64251,7 @@ } }, { - "id": 21399, + "id": 23183, "properties": { "east": "tall", "north": "tall", @@ -53844,7 +64262,7 @@ } }, { - "id": 21400, + "id": 23184, "properties": { "east": "tall", "north": "tall", @@ -53855,7 +64273,7 @@ } }, { - "id": 21401, + "id": 23185, "properties": { "east": "tall", "north": "tall", @@ -53866,7 +64284,7 @@ } }, { - "id": 21402, + "id": 23186, "properties": { "east": "tall", "north": "tall", @@ -53877,7 +64295,7 @@ } }, { - "id": 21403, + "id": 23187, "properties": { "east": "tall", "north": "tall", @@ -53888,7 +64306,7 @@ } }, { - "id": 21404, + "id": 23188, "properties": { "east": "tall", "north": "tall", @@ -53899,7 +64317,7 @@ } }, { - "id": 21405, + "id": 23189, "properties": { "east": "tall", "north": "tall", @@ -53910,7 +64328,7 @@ } }, { - "id": 21406, + "id": 23190, "properties": { "east": "tall", "north": "tall", @@ -53921,7 +64339,7 @@ } }, { - "id": 21407, + "id": 23191, "properties": { "east": "tall", "north": "tall", @@ -53932,7 +64350,7 @@ } }, { - "id": 21408, + "id": 23192, "properties": { "east": "tall", "north": "tall", @@ -53943,7 +64361,7 @@ } }, { - "id": 21409, + "id": 23193, "properties": { "east": "tall", "north": "tall", @@ -53954,7 +64372,7 @@ } }, { - "id": 21410, + "id": 23194, "properties": { "east": "tall", "north": "tall", @@ -53965,7 +64383,7 @@ } }, { - "id": 21411, + "id": 23195, "properties": { "east": "tall", "north": "tall", @@ -53976,7 +64394,7 @@ } }, { - "id": 21412, + "id": 23196, "properties": { "east": "tall", "north": "tall", @@ -53987,7 +64405,7 @@ } }, { - "id": 21413, + "id": 23197, "properties": { "east": "tall", "north": "tall", @@ -53998,7 +64416,7 @@ } }, { - "id": 21414, + "id": 23198, "properties": { "east": "tall", "north": "tall", @@ -54009,7 +64427,7 @@ } }, { - "id": 21415, + "id": 23199, "properties": { "east": "tall", "north": "tall", @@ -54020,7 +64438,7 @@ } }, { - "id": 21416, + "id": 23200, "properties": { "east": "tall", "north": "tall", @@ -54031,7 +64449,7 @@ } }, { - "id": 21417, + "id": 23201, "properties": { "east": "tall", "north": "tall", @@ -54042,7 +64460,7 @@ } }, { - "id": 21418, + "id": 23202, "properties": { "east": "tall", "north": "tall", @@ -54053,7 +64471,7 @@ } }, { - "id": 21419, + "id": 23203, "properties": { "east": "tall", "north": "tall", @@ -54064,7 +64482,7 @@ } }, { - "id": 21420, + "id": 23204, "properties": { "east": "tall", "north": "tall", @@ -54075,7 +64493,7 @@ } }, { - "id": 21421, + "id": 23205, "properties": { "east": "tall", "north": "tall", @@ -54086,7 +64504,7 @@ } }, { - "id": 21422, + "id": 23206, "properties": { "east": "tall", "north": "tall", @@ -54097,7 +64515,7 @@ } }, { - "id": 21423, + "id": 23207, "properties": { "east": "tall", "north": "tall", @@ -54108,7 +64526,7 @@ } }, { - "id": 21424, + "id": 23208, "properties": { "east": "tall", "north": "tall", @@ -54124,7 +64542,7 @@ "states": [ { "default": true, - "id": 21014 + "id": 22798 } ] }, @@ -54132,7 +64550,7 @@ "states": [ { "default": true, - "id": 115 + "id": 117 } ] }, @@ -54140,7 +64558,7 @@ "states": [ { "default": true, - "id": 18913 + "id": 20697 } ] }, @@ -54148,7 +64566,7 @@ "states": [ { "default": true, - "id": 3609 + "id": 4223 } ] }, @@ -54156,7 +64574,7 @@ "states": [ { "default": true, - "id": 5842 + "id": 7282 } ] }, @@ -54164,7 +64582,7 @@ "states": [ { "default": true, - "id": 111 + "id": 113 } ] }, @@ -54172,7 +64590,7 @@ "states": [ { "default": true, - "id": 113 + "id": 115 } ] }, @@ -54180,7 +64598,7 @@ "states": [ { "default": true, - "id": 462 + "id": 470 } ] }, @@ -54193,14 +64611,14 @@ }, "states": [ { - "id": 4194, + "id": 5570, "properties": { "lit": "true" } }, { "default": true, - "id": 4195, + "id": 5571, "properties": { "lit": "false" } @@ -54221,21 +64639,21 @@ }, "states": [ { - "id": 20684, + "id": 22468, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 20685, + "id": 22469, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 20686, + "id": 22470, "properties": { "type": "bottom", "waterlogged": "true" @@ -54243,21 +64661,21 @@ }, { "default": true, - "id": 20687, + "id": 22471, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 20688, + "id": 22472, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 20689, + "id": 22473, "properties": { "type": "double", "waterlogged": "false" @@ -54291,7 +64709,7 @@ }, "states": [ { - "id": 20604, + "id": 22388, "properties": { "facing": "north", "half": "top", @@ -54300,7 +64718,7 @@ } }, { - "id": 20605, + "id": 22389, "properties": { "facing": "north", "half": "top", @@ -54309,7 +64727,7 @@ } }, { - "id": 20606, + "id": 22390, "properties": { "facing": "north", "half": "top", @@ -54318,7 +64736,7 @@ } }, { - "id": 20607, + "id": 22391, "properties": { "facing": "north", "half": "top", @@ -54327,7 +64745,7 @@ } }, { - "id": 20608, + "id": 22392, "properties": { "facing": "north", "half": "top", @@ -54336,7 +64754,7 @@ } }, { - "id": 20609, + "id": 22393, "properties": { "facing": "north", "half": "top", @@ -54345,7 +64763,7 @@ } }, { - "id": 20610, + "id": 22394, "properties": { "facing": "north", "half": "top", @@ -54354,7 +64772,7 @@ } }, { - "id": 20611, + "id": 22395, "properties": { "facing": "north", "half": "top", @@ -54363,7 +64781,7 @@ } }, { - "id": 20612, + "id": 22396, "properties": { "facing": "north", "half": "top", @@ -54372,7 +64790,7 @@ } }, { - "id": 20613, + "id": 22397, "properties": { "facing": "north", "half": "top", @@ -54381,7 +64799,7 @@ } }, { - "id": 20614, + "id": 22398, "properties": { "facing": "north", "half": "bottom", @@ -54391,7 +64809,7 @@ }, { "default": true, - "id": 20615, + "id": 22399, "properties": { "facing": "north", "half": "bottom", @@ -54400,7 +64818,7 @@ } }, { - "id": 20616, + "id": 22400, "properties": { "facing": "north", "half": "bottom", @@ -54409,7 +64827,7 @@ } }, { - "id": 20617, + "id": 22401, "properties": { "facing": "north", "half": "bottom", @@ -54418,7 +64836,7 @@ } }, { - "id": 20618, + "id": 22402, "properties": { "facing": "north", "half": "bottom", @@ -54427,7 +64845,7 @@ } }, { - "id": 20619, + "id": 22403, "properties": { "facing": "north", "half": "bottom", @@ -54436,7 +64854,7 @@ } }, { - "id": 20620, + "id": 22404, "properties": { "facing": "north", "half": "bottom", @@ -54445,7 +64863,7 @@ } }, { - "id": 20621, + "id": 22405, "properties": { "facing": "north", "half": "bottom", @@ -54454,7 +64872,7 @@ } }, { - "id": 20622, + "id": 22406, "properties": { "facing": "north", "half": "bottom", @@ -54463,7 +64881,7 @@ } }, { - "id": 20623, + "id": 22407, "properties": { "facing": "north", "half": "bottom", @@ -54472,7 +64890,7 @@ } }, { - "id": 20624, + "id": 22408, "properties": { "facing": "south", "half": "top", @@ -54481,7 +64899,7 @@ } }, { - "id": 20625, + "id": 22409, "properties": { "facing": "south", "half": "top", @@ -54490,7 +64908,7 @@ } }, { - "id": 20626, + "id": 22410, "properties": { "facing": "south", "half": "top", @@ -54499,7 +64917,7 @@ } }, { - "id": 20627, + "id": 22411, "properties": { "facing": "south", "half": "top", @@ -54508,7 +64926,7 @@ } }, { - "id": 20628, + "id": 22412, "properties": { "facing": "south", "half": "top", @@ -54517,7 +64935,7 @@ } }, { - "id": 20629, + "id": 22413, "properties": { "facing": "south", "half": "top", @@ -54526,7 +64944,7 @@ } }, { - "id": 20630, + "id": 22414, "properties": { "facing": "south", "half": "top", @@ -54535,7 +64953,7 @@ } }, { - "id": 20631, + "id": 22415, "properties": { "facing": "south", "half": "top", @@ -54544,7 +64962,7 @@ } }, { - "id": 20632, + "id": 22416, "properties": { "facing": "south", "half": "top", @@ -54553,7 +64971,7 @@ } }, { - "id": 20633, + "id": 22417, "properties": { "facing": "south", "half": "top", @@ -54562,7 +64980,7 @@ } }, { - "id": 20634, + "id": 22418, "properties": { "facing": "south", "half": "bottom", @@ -54571,7 +64989,7 @@ } }, { - "id": 20635, + "id": 22419, "properties": { "facing": "south", "half": "bottom", @@ -54580,7 +64998,7 @@ } }, { - "id": 20636, + "id": 22420, "properties": { "facing": "south", "half": "bottom", @@ -54589,7 +65007,7 @@ } }, { - "id": 20637, + "id": 22421, "properties": { "facing": "south", "half": "bottom", @@ -54598,7 +65016,7 @@ } }, { - "id": 20638, + "id": 22422, "properties": { "facing": "south", "half": "bottom", @@ -54607,7 +65025,7 @@ } }, { - "id": 20639, + "id": 22423, "properties": { "facing": "south", "half": "bottom", @@ -54616,7 +65034,7 @@ } }, { - "id": 20640, + "id": 22424, "properties": { "facing": "south", "half": "bottom", @@ -54625,7 +65043,7 @@ } }, { - "id": 20641, + "id": 22425, "properties": { "facing": "south", "half": "bottom", @@ -54634,7 +65052,7 @@ } }, { - "id": 20642, + "id": 22426, "properties": { "facing": "south", "half": "bottom", @@ -54643,7 +65061,7 @@ } }, { - "id": 20643, + "id": 22427, "properties": { "facing": "south", "half": "bottom", @@ -54652,7 +65070,7 @@ } }, { - "id": 20644, + "id": 22428, "properties": { "facing": "west", "half": "top", @@ -54661,7 +65079,7 @@ } }, { - "id": 20645, + "id": 22429, "properties": { "facing": "west", "half": "top", @@ -54670,7 +65088,7 @@ } }, { - "id": 20646, + "id": 22430, "properties": { "facing": "west", "half": "top", @@ -54679,7 +65097,7 @@ } }, { - "id": 20647, + "id": 22431, "properties": { "facing": "west", "half": "top", @@ -54688,7 +65106,7 @@ } }, { - "id": 20648, + "id": 22432, "properties": { "facing": "west", "half": "top", @@ -54697,7 +65115,7 @@ } }, { - "id": 20649, + "id": 22433, "properties": { "facing": "west", "half": "top", @@ -54706,7 +65124,7 @@ } }, { - "id": 20650, + "id": 22434, "properties": { "facing": "west", "half": "top", @@ -54715,7 +65133,7 @@ } }, { - "id": 20651, + "id": 22435, "properties": { "facing": "west", "half": "top", @@ -54724,7 +65142,7 @@ } }, { - "id": 20652, + "id": 22436, "properties": { "facing": "west", "half": "top", @@ -54733,7 +65151,7 @@ } }, { - "id": 20653, + "id": 22437, "properties": { "facing": "west", "half": "top", @@ -54742,7 +65160,7 @@ } }, { - "id": 20654, + "id": 22438, "properties": { "facing": "west", "half": "bottom", @@ -54751,7 +65169,7 @@ } }, { - "id": 20655, + "id": 22439, "properties": { "facing": "west", "half": "bottom", @@ -54760,7 +65178,7 @@ } }, { - "id": 20656, + "id": 22440, "properties": { "facing": "west", "half": "bottom", @@ -54769,7 +65187,7 @@ } }, { - "id": 20657, + "id": 22441, "properties": { "facing": "west", "half": "bottom", @@ -54778,7 +65196,7 @@ } }, { - "id": 20658, + "id": 22442, "properties": { "facing": "west", "half": "bottom", @@ -54787,7 +65205,7 @@ } }, { - "id": 20659, + "id": 22443, "properties": { "facing": "west", "half": "bottom", @@ -54796,7 +65214,7 @@ } }, { - "id": 20660, + "id": 22444, "properties": { "facing": "west", "half": "bottom", @@ -54805,7 +65223,7 @@ } }, { - "id": 20661, + "id": 22445, "properties": { "facing": "west", "half": "bottom", @@ -54814,7 +65232,7 @@ } }, { - "id": 20662, + "id": 22446, "properties": { "facing": "west", "half": "bottom", @@ -54823,7 +65241,7 @@ } }, { - "id": 20663, + "id": 22447, "properties": { "facing": "west", "half": "bottom", @@ -54832,7 +65250,7 @@ } }, { - "id": 20664, + "id": 22448, "properties": { "facing": "east", "half": "top", @@ -54841,7 +65259,7 @@ } }, { - "id": 20665, + "id": 22449, "properties": { "facing": "east", "half": "top", @@ -54850,7 +65268,7 @@ } }, { - "id": 20666, + "id": 22450, "properties": { "facing": "east", "half": "top", @@ -54859,7 +65277,7 @@ } }, { - "id": 20667, + "id": 22451, "properties": { "facing": "east", "half": "top", @@ -54868,7 +65286,7 @@ } }, { - "id": 20668, + "id": 22452, "properties": { "facing": "east", "half": "top", @@ -54877,7 +65295,7 @@ } }, { - "id": 20669, + "id": 22453, "properties": { "facing": "east", "half": "top", @@ -54886,7 +65304,7 @@ } }, { - "id": 20670, + "id": 22454, "properties": { "facing": "east", "half": "top", @@ -54895,7 +65313,7 @@ } }, { - "id": 20671, + "id": 22455, "properties": { "facing": "east", "half": "top", @@ -54904,7 +65322,7 @@ } }, { - "id": 20672, + "id": 22456, "properties": { "facing": "east", "half": "top", @@ -54913,7 +65331,7 @@ } }, { - "id": 20673, + "id": 22457, "properties": { "facing": "east", "half": "top", @@ -54922,7 +65340,7 @@ } }, { - "id": 20674, + "id": 22458, "properties": { "facing": "east", "half": "bottom", @@ -54931,7 +65349,7 @@ } }, { - "id": 20675, + "id": 22459, "properties": { "facing": "east", "half": "bottom", @@ -54940,7 +65358,7 @@ } }, { - "id": 20676, + "id": 22460, "properties": { "facing": "east", "half": "bottom", @@ -54949,7 +65367,7 @@ } }, { - "id": 20677, + "id": 22461, "properties": { "facing": "east", "half": "bottom", @@ -54958,7 +65376,7 @@ } }, { - "id": 20678, + "id": 22462, "properties": { "facing": "east", "half": "bottom", @@ -54967,7 +65385,7 @@ } }, { - "id": 20679, + "id": 22463, "properties": { "facing": "east", "half": "bottom", @@ -54976,7 +65394,7 @@ } }, { - "id": 20680, + "id": 22464, "properties": { "facing": "east", "half": "bottom", @@ -54985,7 +65403,7 @@ } }, { - "id": 20681, + "id": 22465, "properties": { "facing": "east", "half": "bottom", @@ -54994,7 +65412,7 @@ } }, { - "id": 20682, + "id": 22466, "properties": { "facing": "east", "half": "bottom", @@ -55003,7 +65421,7 @@ } }, { - "id": 20683, + "id": 22467, "properties": { "facing": "east", "half": "bottom", @@ -55046,7 +65464,7 @@ }, "states": [ { - "id": 20690, + "id": 22474, "properties": { "east": "none", "north": "none", @@ -55057,7 +65475,7 @@ } }, { - "id": 20691, + "id": 22475, "properties": { "east": "none", "north": "none", @@ -55068,7 +65486,7 @@ } }, { - "id": 20692, + "id": 22476, "properties": { "east": "none", "north": "none", @@ -55080,7 +65498,7 @@ }, { "default": true, - "id": 20693, + "id": 22477, "properties": { "east": "none", "north": "none", @@ -55091,7 +65509,7 @@ } }, { - "id": 20694, + "id": 22478, "properties": { "east": "none", "north": "none", @@ -55102,7 +65520,7 @@ } }, { - "id": 20695, + "id": 22479, "properties": { "east": "none", "north": "none", @@ -55113,7 +65531,7 @@ } }, { - "id": 20696, + "id": 22480, "properties": { "east": "none", "north": "none", @@ -55124,7 +65542,7 @@ } }, { - "id": 20697, + "id": 22481, "properties": { "east": "none", "north": "none", @@ -55135,7 +65553,7 @@ } }, { - "id": 20698, + "id": 22482, "properties": { "east": "none", "north": "none", @@ -55146,7 +65564,7 @@ } }, { - "id": 20699, + "id": 22483, "properties": { "east": "none", "north": "none", @@ -55157,7 +65575,7 @@ } }, { - "id": 20700, + "id": 22484, "properties": { "east": "none", "north": "none", @@ -55168,7 +65586,7 @@ } }, { - "id": 20701, + "id": 22485, "properties": { "east": "none", "north": "none", @@ -55179,7 +65597,7 @@ } }, { - "id": 20702, + "id": 22486, "properties": { "east": "none", "north": "none", @@ -55190,7 +65608,7 @@ } }, { - "id": 20703, + "id": 22487, "properties": { "east": "none", "north": "none", @@ -55201,7 +65619,7 @@ } }, { - "id": 20704, + "id": 22488, "properties": { "east": "none", "north": "none", @@ -55212,7 +65630,7 @@ } }, { - "id": 20705, + "id": 22489, "properties": { "east": "none", "north": "none", @@ -55223,7 +65641,7 @@ } }, { - "id": 20706, + "id": 22490, "properties": { "east": "none", "north": "none", @@ -55234,7 +65652,7 @@ } }, { - "id": 20707, + "id": 22491, "properties": { "east": "none", "north": "none", @@ -55245,7 +65663,7 @@ } }, { - "id": 20708, + "id": 22492, "properties": { "east": "none", "north": "none", @@ -55256,7 +65674,7 @@ } }, { - "id": 20709, + "id": 22493, "properties": { "east": "none", "north": "none", @@ -55267,7 +65685,7 @@ } }, { - "id": 20710, + "id": 22494, "properties": { "east": "none", "north": "none", @@ -55278,7 +65696,7 @@ } }, { - "id": 20711, + "id": 22495, "properties": { "east": "none", "north": "none", @@ -55289,7 +65707,7 @@ } }, { - "id": 20712, + "id": 22496, "properties": { "east": "none", "north": "none", @@ -55300,7 +65718,7 @@ } }, { - "id": 20713, + "id": 22497, "properties": { "east": "none", "north": "none", @@ -55311,7 +65729,7 @@ } }, { - "id": 20714, + "id": 22498, "properties": { "east": "none", "north": "none", @@ -55322,7 +65740,7 @@ } }, { - "id": 20715, + "id": 22499, "properties": { "east": "none", "north": "none", @@ -55333,7 +65751,7 @@ } }, { - "id": 20716, + "id": 22500, "properties": { "east": "none", "north": "none", @@ -55344,7 +65762,7 @@ } }, { - "id": 20717, + "id": 22501, "properties": { "east": "none", "north": "none", @@ -55355,7 +65773,7 @@ } }, { - "id": 20718, + "id": 22502, "properties": { "east": "none", "north": "none", @@ -55366,7 +65784,7 @@ } }, { - "id": 20719, + "id": 22503, "properties": { "east": "none", "north": "none", @@ -55377,7 +65795,7 @@ } }, { - "id": 20720, + "id": 22504, "properties": { "east": "none", "north": "none", @@ -55388,7 +65806,7 @@ } }, { - "id": 20721, + "id": 22505, "properties": { "east": "none", "north": "none", @@ -55399,7 +65817,7 @@ } }, { - "id": 20722, + "id": 22506, "properties": { "east": "none", "north": "none", @@ -55410,7 +65828,7 @@ } }, { - "id": 20723, + "id": 22507, "properties": { "east": "none", "north": "none", @@ -55421,7 +65839,7 @@ } }, { - "id": 20724, + "id": 22508, "properties": { "east": "none", "north": "none", @@ -55432,7 +65850,7 @@ } }, { - "id": 20725, + "id": 22509, "properties": { "east": "none", "north": "none", @@ -55443,7 +65861,7 @@ } }, { - "id": 20726, + "id": 22510, "properties": { "east": "none", "north": "low", @@ -55454,7 +65872,7 @@ } }, { - "id": 20727, + "id": 22511, "properties": { "east": "none", "north": "low", @@ -55465,7 +65883,7 @@ } }, { - "id": 20728, + "id": 22512, "properties": { "east": "none", "north": "low", @@ -55476,7 +65894,7 @@ } }, { - "id": 20729, + "id": 22513, "properties": { "east": "none", "north": "low", @@ -55487,7 +65905,7 @@ } }, { - "id": 20730, + "id": 22514, "properties": { "east": "none", "north": "low", @@ -55498,7 +65916,7 @@ } }, { - "id": 20731, + "id": 22515, "properties": { "east": "none", "north": "low", @@ -55509,7 +65927,7 @@ } }, { - "id": 20732, + "id": 22516, "properties": { "east": "none", "north": "low", @@ -55520,7 +65938,7 @@ } }, { - "id": 20733, + "id": 22517, "properties": { "east": "none", "north": "low", @@ -55531,7 +65949,7 @@ } }, { - "id": 20734, + "id": 22518, "properties": { "east": "none", "north": "low", @@ -55542,7 +65960,7 @@ } }, { - "id": 20735, + "id": 22519, "properties": { "east": "none", "north": "low", @@ -55553,7 +65971,7 @@ } }, { - "id": 20736, + "id": 22520, "properties": { "east": "none", "north": "low", @@ -55564,7 +65982,7 @@ } }, { - "id": 20737, + "id": 22521, "properties": { "east": "none", "north": "low", @@ -55575,7 +65993,7 @@ } }, { - "id": 20738, + "id": 22522, "properties": { "east": "none", "north": "low", @@ -55586,7 +66004,7 @@ } }, { - "id": 20739, + "id": 22523, "properties": { "east": "none", "north": "low", @@ -55597,7 +66015,7 @@ } }, { - "id": 20740, + "id": 22524, "properties": { "east": "none", "north": "low", @@ -55608,7 +66026,7 @@ } }, { - "id": 20741, + "id": 22525, "properties": { "east": "none", "north": "low", @@ -55619,7 +66037,7 @@ } }, { - "id": 20742, + "id": 22526, "properties": { "east": "none", "north": "low", @@ -55630,7 +66048,7 @@ } }, { - "id": 20743, + "id": 22527, "properties": { "east": "none", "north": "low", @@ -55641,7 +66059,7 @@ } }, { - "id": 20744, + "id": 22528, "properties": { "east": "none", "north": "low", @@ -55652,7 +66070,7 @@ } }, { - "id": 20745, + "id": 22529, "properties": { "east": "none", "north": "low", @@ -55663,7 +66081,7 @@ } }, { - "id": 20746, + "id": 22530, "properties": { "east": "none", "north": "low", @@ -55674,7 +66092,7 @@ } }, { - "id": 20747, + "id": 22531, "properties": { "east": "none", "north": "low", @@ -55685,7 +66103,7 @@ } }, { - "id": 20748, + "id": 22532, "properties": { "east": "none", "north": "low", @@ -55696,7 +66114,7 @@ } }, { - "id": 20749, + "id": 22533, "properties": { "east": "none", "north": "low", @@ -55707,7 +66125,7 @@ } }, { - "id": 20750, + "id": 22534, "properties": { "east": "none", "north": "low", @@ -55718,7 +66136,7 @@ } }, { - "id": 20751, + "id": 22535, "properties": { "east": "none", "north": "low", @@ -55729,7 +66147,7 @@ } }, { - "id": 20752, + "id": 22536, "properties": { "east": "none", "north": "low", @@ -55740,7 +66158,7 @@ } }, { - "id": 20753, + "id": 22537, "properties": { "east": "none", "north": "low", @@ -55751,7 +66169,7 @@ } }, { - "id": 20754, + "id": 22538, "properties": { "east": "none", "north": "low", @@ -55762,7 +66180,7 @@ } }, { - "id": 20755, + "id": 22539, "properties": { "east": "none", "north": "low", @@ -55773,7 +66191,7 @@ } }, { - "id": 20756, + "id": 22540, "properties": { "east": "none", "north": "low", @@ -55784,7 +66202,7 @@ } }, { - "id": 20757, + "id": 22541, "properties": { "east": "none", "north": "low", @@ -55795,7 +66213,7 @@ } }, { - "id": 20758, + "id": 22542, "properties": { "east": "none", "north": "low", @@ -55806,7 +66224,7 @@ } }, { - "id": 20759, + "id": 22543, "properties": { "east": "none", "north": "low", @@ -55817,7 +66235,7 @@ } }, { - "id": 20760, + "id": 22544, "properties": { "east": "none", "north": "low", @@ -55828,7 +66246,7 @@ } }, { - "id": 20761, + "id": 22545, "properties": { "east": "none", "north": "low", @@ -55839,7 +66257,7 @@ } }, { - "id": 20762, + "id": 22546, "properties": { "east": "none", "north": "tall", @@ -55850,7 +66268,7 @@ } }, { - "id": 20763, + "id": 22547, "properties": { "east": "none", "north": "tall", @@ -55861,7 +66279,7 @@ } }, { - "id": 20764, + "id": 22548, "properties": { "east": "none", "north": "tall", @@ -55872,7 +66290,7 @@ } }, { - "id": 20765, + "id": 22549, "properties": { "east": "none", "north": "tall", @@ -55883,7 +66301,7 @@ } }, { - "id": 20766, + "id": 22550, "properties": { "east": "none", "north": "tall", @@ -55894,7 +66312,7 @@ } }, { - "id": 20767, + "id": 22551, "properties": { "east": "none", "north": "tall", @@ -55905,7 +66323,7 @@ } }, { - "id": 20768, + "id": 22552, "properties": { "east": "none", "north": "tall", @@ -55916,7 +66334,7 @@ } }, { - "id": 20769, + "id": 22553, "properties": { "east": "none", "north": "tall", @@ -55927,7 +66345,7 @@ } }, { - "id": 20770, + "id": 22554, "properties": { "east": "none", "north": "tall", @@ -55938,7 +66356,7 @@ } }, { - "id": 20771, + "id": 22555, "properties": { "east": "none", "north": "tall", @@ -55949,7 +66367,7 @@ } }, { - "id": 20772, + "id": 22556, "properties": { "east": "none", "north": "tall", @@ -55960,7 +66378,7 @@ } }, { - "id": 20773, + "id": 22557, "properties": { "east": "none", "north": "tall", @@ -55971,7 +66389,7 @@ } }, { - "id": 20774, + "id": 22558, "properties": { "east": "none", "north": "tall", @@ -55982,7 +66400,7 @@ } }, { - "id": 20775, + "id": 22559, "properties": { "east": "none", "north": "tall", @@ -55993,7 +66411,7 @@ } }, { - "id": 20776, + "id": 22560, "properties": { "east": "none", "north": "tall", @@ -56004,7 +66422,7 @@ } }, { - "id": 20777, + "id": 22561, "properties": { "east": "none", "north": "tall", @@ -56015,7 +66433,7 @@ } }, { - "id": 20778, + "id": 22562, "properties": { "east": "none", "north": "tall", @@ -56026,7 +66444,7 @@ } }, { - "id": 20779, + "id": 22563, "properties": { "east": "none", "north": "tall", @@ -56037,7 +66455,7 @@ } }, { - "id": 20780, + "id": 22564, "properties": { "east": "none", "north": "tall", @@ -56048,7 +66466,7 @@ } }, { - "id": 20781, + "id": 22565, "properties": { "east": "none", "north": "tall", @@ -56059,7 +66477,7 @@ } }, { - "id": 20782, + "id": 22566, "properties": { "east": "none", "north": "tall", @@ -56070,7 +66488,7 @@ } }, { - "id": 20783, + "id": 22567, "properties": { "east": "none", "north": "tall", @@ -56081,7 +66499,7 @@ } }, { - "id": 20784, + "id": 22568, "properties": { "east": "none", "north": "tall", @@ -56092,7 +66510,7 @@ } }, { - "id": 20785, + "id": 22569, "properties": { "east": "none", "north": "tall", @@ -56103,7 +66521,7 @@ } }, { - "id": 20786, + "id": 22570, "properties": { "east": "none", "north": "tall", @@ -56114,7 +66532,7 @@ } }, { - "id": 20787, + "id": 22571, "properties": { "east": "none", "north": "tall", @@ -56125,7 +66543,7 @@ } }, { - "id": 20788, + "id": 22572, "properties": { "east": "none", "north": "tall", @@ -56136,7 +66554,7 @@ } }, { - "id": 20789, + "id": 22573, "properties": { "east": "none", "north": "tall", @@ -56147,7 +66565,7 @@ } }, { - "id": 20790, + "id": 22574, "properties": { "east": "none", "north": "tall", @@ -56158,7 +66576,7 @@ } }, { - "id": 20791, + "id": 22575, "properties": { "east": "none", "north": "tall", @@ -56169,7 +66587,7 @@ } }, { - "id": 20792, + "id": 22576, "properties": { "east": "none", "north": "tall", @@ -56180,7 +66598,7 @@ } }, { - "id": 20793, + "id": 22577, "properties": { "east": "none", "north": "tall", @@ -56191,7 +66609,7 @@ } }, { - "id": 20794, + "id": 22578, "properties": { "east": "none", "north": "tall", @@ -56202,7 +66620,7 @@ } }, { - "id": 20795, + "id": 22579, "properties": { "east": "none", "north": "tall", @@ -56213,7 +66631,7 @@ } }, { - "id": 20796, + "id": 22580, "properties": { "east": "none", "north": "tall", @@ -56224,7 +66642,7 @@ } }, { - "id": 20797, + "id": 22581, "properties": { "east": "none", "north": "tall", @@ -56235,7 +66653,7 @@ } }, { - "id": 20798, + "id": 22582, "properties": { "east": "low", "north": "none", @@ -56246,7 +66664,7 @@ } }, { - "id": 20799, + "id": 22583, "properties": { "east": "low", "north": "none", @@ -56257,7 +66675,7 @@ } }, { - "id": 20800, + "id": 22584, "properties": { "east": "low", "north": "none", @@ -56268,7 +66686,7 @@ } }, { - "id": 20801, + "id": 22585, "properties": { "east": "low", "north": "none", @@ -56279,7 +66697,7 @@ } }, { - "id": 20802, + "id": 22586, "properties": { "east": "low", "north": "none", @@ -56290,7 +66708,7 @@ } }, { - "id": 20803, + "id": 22587, "properties": { "east": "low", "north": "none", @@ -56301,7 +66719,7 @@ } }, { - "id": 20804, + "id": 22588, "properties": { "east": "low", "north": "none", @@ -56312,7 +66730,7 @@ } }, { - "id": 20805, + "id": 22589, "properties": { "east": "low", "north": "none", @@ -56323,7 +66741,7 @@ } }, { - "id": 20806, + "id": 22590, "properties": { "east": "low", "north": "none", @@ -56334,7 +66752,7 @@ } }, { - "id": 20807, + "id": 22591, "properties": { "east": "low", "north": "none", @@ -56345,7 +66763,7 @@ } }, { - "id": 20808, + "id": 22592, "properties": { "east": "low", "north": "none", @@ -56356,7 +66774,7 @@ } }, { - "id": 20809, + "id": 22593, "properties": { "east": "low", "north": "none", @@ -56367,7 +66785,7 @@ } }, { - "id": 20810, + "id": 22594, "properties": { "east": "low", "north": "none", @@ -56378,7 +66796,7 @@ } }, { - "id": 20811, + "id": 22595, "properties": { "east": "low", "north": "none", @@ -56389,7 +66807,7 @@ } }, { - "id": 20812, + "id": 22596, "properties": { "east": "low", "north": "none", @@ -56400,7 +66818,7 @@ } }, { - "id": 20813, + "id": 22597, "properties": { "east": "low", "north": "none", @@ -56411,7 +66829,7 @@ } }, { - "id": 20814, + "id": 22598, "properties": { "east": "low", "north": "none", @@ -56422,7 +66840,7 @@ } }, { - "id": 20815, + "id": 22599, "properties": { "east": "low", "north": "none", @@ -56433,7 +66851,7 @@ } }, { - "id": 20816, + "id": 22600, "properties": { "east": "low", "north": "none", @@ -56444,7 +66862,7 @@ } }, { - "id": 20817, + "id": 22601, "properties": { "east": "low", "north": "none", @@ -56455,7 +66873,7 @@ } }, { - "id": 20818, + "id": 22602, "properties": { "east": "low", "north": "none", @@ -56466,7 +66884,7 @@ } }, { - "id": 20819, + "id": 22603, "properties": { "east": "low", "north": "none", @@ -56477,7 +66895,7 @@ } }, { - "id": 20820, + "id": 22604, "properties": { "east": "low", "north": "none", @@ -56488,7 +66906,7 @@ } }, { - "id": 20821, + "id": 22605, "properties": { "east": "low", "north": "none", @@ -56499,7 +66917,7 @@ } }, { - "id": 20822, + "id": 22606, "properties": { "east": "low", "north": "none", @@ -56510,7 +66928,7 @@ } }, { - "id": 20823, + "id": 22607, "properties": { "east": "low", "north": "none", @@ -56521,7 +66939,7 @@ } }, { - "id": 20824, + "id": 22608, "properties": { "east": "low", "north": "none", @@ -56532,7 +66950,7 @@ } }, { - "id": 20825, + "id": 22609, "properties": { "east": "low", "north": "none", @@ -56543,7 +66961,7 @@ } }, { - "id": 20826, + "id": 22610, "properties": { "east": "low", "north": "none", @@ -56554,7 +66972,7 @@ } }, { - "id": 20827, + "id": 22611, "properties": { "east": "low", "north": "none", @@ -56565,7 +66983,7 @@ } }, { - "id": 20828, + "id": 22612, "properties": { "east": "low", "north": "none", @@ -56576,7 +66994,7 @@ } }, { - "id": 20829, + "id": 22613, "properties": { "east": "low", "north": "none", @@ -56587,7 +67005,7 @@ } }, { - "id": 20830, + "id": 22614, "properties": { "east": "low", "north": "none", @@ -56598,7 +67016,7 @@ } }, { - "id": 20831, + "id": 22615, "properties": { "east": "low", "north": "none", @@ -56609,7 +67027,7 @@ } }, { - "id": 20832, + "id": 22616, "properties": { "east": "low", "north": "none", @@ -56620,7 +67038,7 @@ } }, { - "id": 20833, + "id": 22617, "properties": { "east": "low", "north": "none", @@ -56631,7 +67049,7 @@ } }, { - "id": 20834, + "id": 22618, "properties": { "east": "low", "north": "low", @@ -56642,7 +67060,7 @@ } }, { - "id": 20835, + "id": 22619, "properties": { "east": "low", "north": "low", @@ -56653,7 +67071,7 @@ } }, { - "id": 20836, + "id": 22620, "properties": { "east": "low", "north": "low", @@ -56664,7 +67082,7 @@ } }, { - "id": 20837, + "id": 22621, "properties": { "east": "low", "north": "low", @@ -56675,7 +67093,7 @@ } }, { - "id": 20838, + "id": 22622, "properties": { "east": "low", "north": "low", @@ -56686,7 +67104,7 @@ } }, { - "id": 20839, + "id": 22623, "properties": { "east": "low", "north": "low", @@ -56697,7 +67115,7 @@ } }, { - "id": 20840, + "id": 22624, "properties": { "east": "low", "north": "low", @@ -56708,7 +67126,7 @@ } }, { - "id": 20841, + "id": 22625, "properties": { "east": "low", "north": "low", @@ -56719,7 +67137,7 @@ } }, { - "id": 20842, + "id": 22626, "properties": { "east": "low", "north": "low", @@ -56730,7 +67148,7 @@ } }, { - "id": 20843, + "id": 22627, "properties": { "east": "low", "north": "low", @@ -56741,7 +67159,7 @@ } }, { - "id": 20844, + "id": 22628, "properties": { "east": "low", "north": "low", @@ -56752,7 +67170,7 @@ } }, { - "id": 20845, + "id": 22629, "properties": { "east": "low", "north": "low", @@ -56763,7 +67181,7 @@ } }, { - "id": 20846, + "id": 22630, "properties": { "east": "low", "north": "low", @@ -56774,7 +67192,7 @@ } }, { - "id": 20847, + "id": 22631, "properties": { "east": "low", "north": "low", @@ -56785,7 +67203,7 @@ } }, { - "id": 20848, + "id": 22632, "properties": { "east": "low", "north": "low", @@ -56796,7 +67214,7 @@ } }, { - "id": 20849, + "id": 22633, "properties": { "east": "low", "north": "low", @@ -56807,7 +67225,7 @@ } }, { - "id": 20850, + "id": 22634, "properties": { "east": "low", "north": "low", @@ -56818,7 +67236,7 @@ } }, { - "id": 20851, + "id": 22635, "properties": { "east": "low", "north": "low", @@ -56829,7 +67247,7 @@ } }, { - "id": 20852, + "id": 22636, "properties": { "east": "low", "north": "low", @@ -56840,7 +67258,7 @@ } }, { - "id": 20853, + "id": 22637, "properties": { "east": "low", "north": "low", @@ -56851,7 +67269,7 @@ } }, { - "id": 20854, + "id": 22638, "properties": { "east": "low", "north": "low", @@ -56862,7 +67280,7 @@ } }, { - "id": 20855, + "id": 22639, "properties": { "east": "low", "north": "low", @@ -56873,7 +67291,7 @@ } }, { - "id": 20856, + "id": 22640, "properties": { "east": "low", "north": "low", @@ -56884,7 +67302,7 @@ } }, { - "id": 20857, + "id": 22641, "properties": { "east": "low", "north": "low", @@ -56895,7 +67313,7 @@ } }, { - "id": 20858, + "id": 22642, "properties": { "east": "low", "north": "low", @@ -56906,7 +67324,7 @@ } }, { - "id": 20859, + "id": 22643, "properties": { "east": "low", "north": "low", @@ -56917,7 +67335,7 @@ } }, { - "id": 20860, + "id": 22644, "properties": { "east": "low", "north": "low", @@ -56928,7 +67346,7 @@ } }, { - "id": 20861, + "id": 22645, "properties": { "east": "low", "north": "low", @@ -56939,7 +67357,7 @@ } }, { - "id": 20862, + "id": 22646, "properties": { "east": "low", "north": "low", @@ -56950,7 +67368,7 @@ } }, { - "id": 20863, + "id": 22647, "properties": { "east": "low", "north": "low", @@ -56961,7 +67379,7 @@ } }, { - "id": 20864, + "id": 22648, "properties": { "east": "low", "north": "low", @@ -56972,7 +67390,7 @@ } }, { - "id": 20865, + "id": 22649, "properties": { "east": "low", "north": "low", @@ -56983,7 +67401,7 @@ } }, { - "id": 20866, + "id": 22650, "properties": { "east": "low", "north": "low", @@ -56994,7 +67412,7 @@ } }, { - "id": 20867, + "id": 22651, "properties": { "east": "low", "north": "low", @@ -57005,7 +67423,7 @@ } }, { - "id": 20868, + "id": 22652, "properties": { "east": "low", "north": "low", @@ -57016,7 +67434,7 @@ } }, { - "id": 20869, + "id": 22653, "properties": { "east": "low", "north": "low", @@ -57027,7 +67445,7 @@ } }, { - "id": 20870, + "id": 22654, "properties": { "east": "low", "north": "tall", @@ -57038,7 +67456,7 @@ } }, { - "id": 20871, + "id": 22655, "properties": { "east": "low", "north": "tall", @@ -57049,7 +67467,7 @@ } }, { - "id": 20872, + "id": 22656, "properties": { "east": "low", "north": "tall", @@ -57060,7 +67478,7 @@ } }, { - "id": 20873, + "id": 22657, "properties": { "east": "low", "north": "tall", @@ -57071,7 +67489,7 @@ } }, { - "id": 20874, + "id": 22658, "properties": { "east": "low", "north": "tall", @@ -57082,7 +67500,7 @@ } }, { - "id": 20875, + "id": 22659, "properties": { "east": "low", "north": "tall", @@ -57093,7 +67511,7 @@ } }, { - "id": 20876, + "id": 22660, "properties": { "east": "low", "north": "tall", @@ -57104,7 +67522,7 @@ } }, { - "id": 20877, + "id": 22661, "properties": { "east": "low", "north": "tall", @@ -57115,7 +67533,7 @@ } }, { - "id": 20878, + "id": 22662, "properties": { "east": "low", "north": "tall", @@ -57126,7 +67544,7 @@ } }, { - "id": 20879, + "id": 22663, "properties": { "east": "low", "north": "tall", @@ -57137,7 +67555,7 @@ } }, { - "id": 20880, + "id": 22664, "properties": { "east": "low", "north": "tall", @@ -57148,7 +67566,7 @@ } }, { - "id": 20881, + "id": 22665, "properties": { "east": "low", "north": "tall", @@ -57159,7 +67577,7 @@ } }, { - "id": 20882, + "id": 22666, "properties": { "east": "low", "north": "tall", @@ -57170,7 +67588,7 @@ } }, { - "id": 20883, + "id": 22667, "properties": { "east": "low", "north": "tall", @@ -57181,7 +67599,7 @@ } }, { - "id": 20884, + "id": 22668, "properties": { "east": "low", "north": "tall", @@ -57192,7 +67610,7 @@ } }, { - "id": 20885, + "id": 22669, "properties": { "east": "low", "north": "tall", @@ -57203,7 +67621,7 @@ } }, { - "id": 20886, + "id": 22670, "properties": { "east": "low", "north": "tall", @@ -57214,7 +67632,7 @@ } }, { - "id": 20887, + "id": 22671, "properties": { "east": "low", "north": "tall", @@ -57225,7 +67643,7 @@ } }, { - "id": 20888, + "id": 22672, "properties": { "east": "low", "north": "tall", @@ -57236,7 +67654,7 @@ } }, { - "id": 20889, + "id": 22673, "properties": { "east": "low", "north": "tall", @@ -57247,7 +67665,7 @@ } }, { - "id": 20890, + "id": 22674, "properties": { "east": "low", "north": "tall", @@ -57258,7 +67676,7 @@ } }, { - "id": 20891, + "id": 22675, "properties": { "east": "low", "north": "tall", @@ -57269,7 +67687,7 @@ } }, { - "id": 20892, + "id": 22676, "properties": { "east": "low", "north": "tall", @@ -57280,7 +67698,7 @@ } }, { - "id": 20893, + "id": 22677, "properties": { "east": "low", "north": "tall", @@ -57291,7 +67709,7 @@ } }, { - "id": 20894, + "id": 22678, "properties": { "east": "low", "north": "tall", @@ -57302,7 +67720,7 @@ } }, { - "id": 20895, + "id": 22679, "properties": { "east": "low", "north": "tall", @@ -57313,7 +67731,7 @@ } }, { - "id": 20896, + "id": 22680, "properties": { "east": "low", "north": "tall", @@ -57324,7 +67742,7 @@ } }, { - "id": 20897, + "id": 22681, "properties": { "east": "low", "north": "tall", @@ -57335,7 +67753,7 @@ } }, { - "id": 20898, + "id": 22682, "properties": { "east": "low", "north": "tall", @@ -57346,7 +67764,7 @@ } }, { - "id": 20899, + "id": 22683, "properties": { "east": "low", "north": "tall", @@ -57357,7 +67775,7 @@ } }, { - "id": 20900, + "id": 22684, "properties": { "east": "low", "north": "tall", @@ -57368,7 +67786,7 @@ } }, { - "id": 20901, + "id": 22685, "properties": { "east": "low", "north": "tall", @@ -57379,7 +67797,7 @@ } }, { - "id": 20902, + "id": 22686, "properties": { "east": "low", "north": "tall", @@ -57390,7 +67808,7 @@ } }, { - "id": 20903, + "id": 22687, "properties": { "east": "low", "north": "tall", @@ -57401,7 +67819,7 @@ } }, { - "id": 20904, + "id": 22688, "properties": { "east": "low", "north": "tall", @@ -57412,7 +67830,7 @@ } }, { - "id": 20905, + "id": 22689, "properties": { "east": "low", "north": "tall", @@ -57423,7 +67841,7 @@ } }, { - "id": 20906, + "id": 22690, "properties": { "east": "tall", "north": "none", @@ -57434,7 +67852,7 @@ } }, { - "id": 20907, + "id": 22691, "properties": { "east": "tall", "north": "none", @@ -57445,7 +67863,7 @@ } }, { - "id": 20908, + "id": 22692, "properties": { "east": "tall", "north": "none", @@ -57456,7 +67874,7 @@ } }, { - "id": 20909, + "id": 22693, "properties": { "east": "tall", "north": "none", @@ -57467,7 +67885,7 @@ } }, { - "id": 20910, + "id": 22694, "properties": { "east": "tall", "north": "none", @@ -57478,7 +67896,7 @@ } }, { - "id": 20911, + "id": 22695, "properties": { "east": "tall", "north": "none", @@ -57489,7 +67907,7 @@ } }, { - "id": 20912, + "id": 22696, "properties": { "east": "tall", "north": "none", @@ -57500,7 +67918,7 @@ } }, { - "id": 20913, + "id": 22697, "properties": { "east": "tall", "north": "none", @@ -57511,7 +67929,7 @@ } }, { - "id": 20914, + "id": 22698, "properties": { "east": "tall", "north": "none", @@ -57522,7 +67940,7 @@ } }, { - "id": 20915, + "id": 22699, "properties": { "east": "tall", "north": "none", @@ -57533,7 +67951,7 @@ } }, { - "id": 20916, + "id": 22700, "properties": { "east": "tall", "north": "none", @@ -57544,7 +67962,7 @@ } }, { - "id": 20917, + "id": 22701, "properties": { "east": "tall", "north": "none", @@ -57555,7 +67973,7 @@ } }, { - "id": 20918, + "id": 22702, "properties": { "east": "tall", "north": "none", @@ -57566,7 +67984,7 @@ } }, { - "id": 20919, + "id": 22703, "properties": { "east": "tall", "north": "none", @@ -57577,7 +67995,7 @@ } }, { - "id": 20920, + "id": 22704, "properties": { "east": "tall", "north": "none", @@ -57588,7 +68006,7 @@ } }, { - "id": 20921, + "id": 22705, "properties": { "east": "tall", "north": "none", @@ -57599,7 +68017,7 @@ } }, { - "id": 20922, + "id": 22706, "properties": { "east": "tall", "north": "none", @@ -57610,7 +68028,7 @@ } }, { - "id": 20923, + "id": 22707, "properties": { "east": "tall", "north": "none", @@ -57621,7 +68039,7 @@ } }, { - "id": 20924, + "id": 22708, "properties": { "east": "tall", "north": "none", @@ -57632,7 +68050,7 @@ } }, { - "id": 20925, + "id": 22709, "properties": { "east": "tall", "north": "none", @@ -57643,7 +68061,7 @@ } }, { - "id": 20926, + "id": 22710, "properties": { "east": "tall", "north": "none", @@ -57654,7 +68072,7 @@ } }, { - "id": 20927, + "id": 22711, "properties": { "east": "tall", "north": "none", @@ -57665,7 +68083,7 @@ } }, { - "id": 20928, + "id": 22712, "properties": { "east": "tall", "north": "none", @@ -57676,7 +68094,7 @@ } }, { - "id": 20929, + "id": 22713, "properties": { "east": "tall", "north": "none", @@ -57687,7 +68105,7 @@ } }, { - "id": 20930, + "id": 22714, "properties": { "east": "tall", "north": "none", @@ -57698,7 +68116,7 @@ } }, { - "id": 20931, + "id": 22715, "properties": { "east": "tall", "north": "none", @@ -57709,7 +68127,7 @@ } }, { - "id": 20932, + "id": 22716, "properties": { "east": "tall", "north": "none", @@ -57720,7 +68138,7 @@ } }, { - "id": 20933, + "id": 22717, "properties": { "east": "tall", "north": "none", @@ -57731,7 +68149,7 @@ } }, { - "id": 20934, + "id": 22718, "properties": { "east": "tall", "north": "none", @@ -57742,7 +68160,7 @@ } }, { - "id": 20935, + "id": 22719, "properties": { "east": "tall", "north": "none", @@ -57753,7 +68171,7 @@ } }, { - "id": 20936, + "id": 22720, "properties": { "east": "tall", "north": "none", @@ -57764,7 +68182,7 @@ } }, { - "id": 20937, + "id": 22721, "properties": { "east": "tall", "north": "none", @@ -57775,7 +68193,7 @@ } }, { - "id": 20938, + "id": 22722, "properties": { "east": "tall", "north": "none", @@ -57786,7 +68204,7 @@ } }, { - "id": 20939, + "id": 22723, "properties": { "east": "tall", "north": "none", @@ -57797,7 +68215,7 @@ } }, { - "id": 20940, + "id": 22724, "properties": { "east": "tall", "north": "none", @@ -57808,7 +68226,7 @@ } }, { - "id": 20941, + "id": 22725, "properties": { "east": "tall", "north": "none", @@ -57819,7 +68237,7 @@ } }, { - "id": 20942, + "id": 22726, "properties": { "east": "tall", "north": "low", @@ -57830,7 +68248,7 @@ } }, { - "id": 20943, + "id": 22727, "properties": { "east": "tall", "north": "low", @@ -57841,7 +68259,7 @@ } }, { - "id": 20944, + "id": 22728, "properties": { "east": "tall", "north": "low", @@ -57852,7 +68270,7 @@ } }, { - "id": 20945, + "id": 22729, "properties": { "east": "tall", "north": "low", @@ -57863,7 +68281,7 @@ } }, { - "id": 20946, + "id": 22730, "properties": { "east": "tall", "north": "low", @@ -57874,7 +68292,7 @@ } }, { - "id": 20947, + "id": 22731, "properties": { "east": "tall", "north": "low", @@ -57885,7 +68303,7 @@ } }, { - "id": 20948, + "id": 22732, "properties": { "east": "tall", "north": "low", @@ -57896,7 +68314,7 @@ } }, { - "id": 20949, + "id": 22733, "properties": { "east": "tall", "north": "low", @@ -57907,7 +68325,7 @@ } }, { - "id": 20950, + "id": 22734, "properties": { "east": "tall", "north": "low", @@ -57918,7 +68336,7 @@ } }, { - "id": 20951, + "id": 22735, "properties": { "east": "tall", "north": "low", @@ -57929,7 +68347,7 @@ } }, { - "id": 20952, + "id": 22736, "properties": { "east": "tall", "north": "low", @@ -57940,7 +68358,7 @@ } }, { - "id": 20953, + "id": 22737, "properties": { "east": "tall", "north": "low", @@ -57951,7 +68369,7 @@ } }, { - "id": 20954, + "id": 22738, "properties": { "east": "tall", "north": "low", @@ -57962,7 +68380,7 @@ } }, { - "id": 20955, + "id": 22739, "properties": { "east": "tall", "north": "low", @@ -57973,7 +68391,7 @@ } }, { - "id": 20956, + "id": 22740, "properties": { "east": "tall", "north": "low", @@ -57984,7 +68402,7 @@ } }, { - "id": 20957, + "id": 22741, "properties": { "east": "tall", "north": "low", @@ -57995,7 +68413,7 @@ } }, { - "id": 20958, + "id": 22742, "properties": { "east": "tall", "north": "low", @@ -58006,7 +68424,7 @@ } }, { - "id": 20959, + "id": 22743, "properties": { "east": "tall", "north": "low", @@ -58017,7 +68435,7 @@ } }, { - "id": 20960, + "id": 22744, "properties": { "east": "tall", "north": "low", @@ -58028,7 +68446,7 @@ } }, { - "id": 20961, + "id": 22745, "properties": { "east": "tall", "north": "low", @@ -58039,7 +68457,7 @@ } }, { - "id": 20962, + "id": 22746, "properties": { "east": "tall", "north": "low", @@ -58050,7 +68468,7 @@ } }, { - "id": 20963, + "id": 22747, "properties": { "east": "tall", "north": "low", @@ -58061,7 +68479,7 @@ } }, { - "id": 20964, + "id": 22748, "properties": { "east": "tall", "north": "low", @@ -58072,7 +68490,7 @@ } }, { - "id": 20965, + "id": 22749, "properties": { "east": "tall", "north": "low", @@ -58083,7 +68501,7 @@ } }, { - "id": 20966, + "id": 22750, "properties": { "east": "tall", "north": "low", @@ -58094,7 +68512,7 @@ } }, { - "id": 20967, + "id": 22751, "properties": { "east": "tall", "north": "low", @@ -58105,7 +68523,7 @@ } }, { - "id": 20968, + "id": 22752, "properties": { "east": "tall", "north": "low", @@ -58116,7 +68534,7 @@ } }, { - "id": 20969, + "id": 22753, "properties": { "east": "tall", "north": "low", @@ -58127,7 +68545,7 @@ } }, { - "id": 20970, + "id": 22754, "properties": { "east": "tall", "north": "low", @@ -58138,7 +68556,7 @@ } }, { - "id": 20971, + "id": 22755, "properties": { "east": "tall", "north": "low", @@ -58149,7 +68567,7 @@ } }, { - "id": 20972, + "id": 22756, "properties": { "east": "tall", "north": "low", @@ -58160,7 +68578,7 @@ } }, { - "id": 20973, + "id": 22757, "properties": { "east": "tall", "north": "low", @@ -58171,7 +68589,7 @@ } }, { - "id": 20974, + "id": 22758, "properties": { "east": "tall", "north": "low", @@ -58182,7 +68600,7 @@ } }, { - "id": 20975, + "id": 22759, "properties": { "east": "tall", "north": "low", @@ -58193,7 +68611,7 @@ } }, { - "id": 20976, + "id": 22760, "properties": { "east": "tall", "north": "low", @@ -58204,7 +68622,7 @@ } }, { - "id": 20977, + "id": 22761, "properties": { "east": "tall", "north": "low", @@ -58215,7 +68633,7 @@ } }, { - "id": 20978, + "id": 22762, "properties": { "east": "tall", "north": "tall", @@ -58226,7 +68644,7 @@ } }, { - "id": 20979, + "id": 22763, "properties": { "east": "tall", "north": "tall", @@ -58237,7 +68655,7 @@ } }, { - "id": 20980, + "id": 22764, "properties": { "east": "tall", "north": "tall", @@ -58248,7 +68666,7 @@ } }, { - "id": 20981, + "id": 22765, "properties": { "east": "tall", "north": "tall", @@ -58259,7 +68677,7 @@ } }, { - "id": 20982, + "id": 22766, "properties": { "east": "tall", "north": "tall", @@ -58270,7 +68688,7 @@ } }, { - "id": 20983, + "id": 22767, "properties": { "east": "tall", "north": "tall", @@ -58281,7 +68699,7 @@ } }, { - "id": 20984, + "id": 22768, "properties": { "east": "tall", "north": "tall", @@ -58292,7 +68710,7 @@ } }, { - "id": 20985, + "id": 22769, "properties": { "east": "tall", "north": "tall", @@ -58303,7 +68721,7 @@ } }, { - "id": 20986, + "id": 22770, "properties": { "east": "tall", "north": "tall", @@ -58314,7 +68732,7 @@ } }, { - "id": 20987, + "id": 22771, "properties": { "east": "tall", "north": "tall", @@ -58325,7 +68743,7 @@ } }, { - "id": 20988, + "id": 22772, "properties": { "east": "tall", "north": "tall", @@ -58336,7 +68754,7 @@ } }, { - "id": 20989, + "id": 22773, "properties": { "east": "tall", "north": "tall", @@ -58347,7 +68765,7 @@ } }, { - "id": 20990, + "id": 22774, "properties": { "east": "tall", "north": "tall", @@ -58358,7 +68776,7 @@ } }, { - "id": 20991, + "id": 22775, "properties": { "east": "tall", "north": "tall", @@ -58369,7 +68787,7 @@ } }, { - "id": 20992, + "id": 22776, "properties": { "east": "tall", "north": "tall", @@ -58380,7 +68798,7 @@ } }, { - "id": 20993, + "id": 22777, "properties": { "east": "tall", "north": "tall", @@ -58391,7 +68809,7 @@ } }, { - "id": 20994, + "id": 22778, "properties": { "east": "tall", "north": "tall", @@ -58402,7 +68820,7 @@ } }, { - "id": 20995, + "id": 22779, "properties": { "east": "tall", "north": "tall", @@ -58413,7 +68831,7 @@ } }, { - "id": 20996, + "id": 22780, "properties": { "east": "tall", "north": "tall", @@ -58424,7 +68842,7 @@ } }, { - "id": 20997, + "id": 22781, "properties": { "east": "tall", "north": "tall", @@ -58435,7 +68853,7 @@ } }, { - "id": 20998, + "id": 22782, "properties": { "east": "tall", "north": "tall", @@ -58446,7 +68864,7 @@ } }, { - "id": 20999, + "id": 22783, "properties": { "east": "tall", "north": "tall", @@ -58457,7 +68875,7 @@ } }, { - "id": 21000, + "id": 22784, "properties": { "east": "tall", "north": "tall", @@ -58468,7 +68886,7 @@ } }, { - "id": 21001, + "id": 22785, "properties": { "east": "tall", "north": "tall", @@ -58479,7 +68897,7 @@ } }, { - "id": 21002, + "id": 22786, "properties": { "east": "tall", "north": "tall", @@ -58490,7 +68908,7 @@ } }, { - "id": 21003, + "id": 22787, "properties": { "east": "tall", "north": "tall", @@ -58501,7 +68919,7 @@ } }, { - "id": 21004, + "id": 22788, "properties": { "east": "tall", "north": "tall", @@ -58512,7 +68930,7 @@ } }, { - "id": 21005, + "id": 22789, "properties": { "east": "tall", "north": "tall", @@ -58523,7 +68941,7 @@ } }, { - "id": 21006, + "id": 22790, "properties": { "east": "tall", "north": "tall", @@ -58534,7 +68952,7 @@ } }, { - "id": 21007, + "id": 22791, "properties": { "east": "tall", "north": "tall", @@ -58545,7 +68963,7 @@ } }, { - "id": 21008, + "id": 22792, "properties": { "east": "tall", "north": "tall", @@ -58556,7 +68974,7 @@ } }, { - "id": 21009, + "id": 22793, "properties": { "east": "tall", "north": "tall", @@ -58567,7 +68985,7 @@ } }, { - "id": 21010, + "id": 22794, "properties": { "east": "tall", "north": "tall", @@ -58578,7 +68996,7 @@ } }, { - "id": 21011, + "id": 22795, "properties": { "east": "tall", "north": "tall", @@ -58589,7 +69007,7 @@ } }, { - "id": 21012, + "id": 22796, "properties": { "east": "tall", "north": "tall", @@ -58600,7 +69018,7 @@ } }, { - "id": 21013, + "id": 22797, "properties": { "east": "tall", "north": "tall", @@ -58616,7 +69034,7 @@ "states": [ { "default": true, - "id": 20603 + "id": 22387 } ] }, @@ -58641,7 +69059,7 @@ }, "states": [ { - "id": 1559, + "id": 1917, "properties": { "powered": "true", "shape": "north_south", @@ -58649,7 +69067,7 @@ } }, { - "id": 1560, + "id": 1918, "properties": { "powered": "true", "shape": "north_south", @@ -58657,7 +69075,7 @@ } }, { - "id": 1561, + "id": 1919, "properties": { "powered": "true", "shape": "east_west", @@ -58665,7 +69083,7 @@ } }, { - "id": 1562, + "id": 1920, "properties": { "powered": "true", "shape": "east_west", @@ -58673,7 +69091,7 @@ } }, { - "id": 1563, + "id": 1921, "properties": { "powered": "true", "shape": "ascending_east", @@ -58681,7 +69099,7 @@ } }, { - "id": 1564, + "id": 1922, "properties": { "powered": "true", "shape": "ascending_east", @@ -58689,7 +69107,7 @@ } }, { - "id": 1565, + "id": 1923, "properties": { "powered": "true", "shape": "ascending_west", @@ -58697,7 +69115,7 @@ } }, { - "id": 1566, + "id": 1924, "properties": { "powered": "true", "shape": "ascending_west", @@ -58705,7 +69123,7 @@ } }, { - "id": 1567, + "id": 1925, "properties": { "powered": "true", "shape": "ascending_north", @@ -58713,7 +69131,7 @@ } }, { - "id": 1568, + "id": 1926, "properties": { "powered": "true", "shape": "ascending_north", @@ -58721,7 +69139,7 @@ } }, { - "id": 1569, + "id": 1927, "properties": { "powered": "true", "shape": "ascending_south", @@ -58729,7 +69147,7 @@ } }, { - "id": 1570, + "id": 1928, "properties": { "powered": "true", "shape": "ascending_south", @@ -58737,7 +69155,7 @@ } }, { - "id": 1571, + "id": 1929, "properties": { "powered": "false", "shape": "north_south", @@ -58746,7 +69164,7 @@ }, { "default": true, - "id": 1572, + "id": 1930, "properties": { "powered": "false", "shape": "north_south", @@ -58754,7 +69172,7 @@ } }, { - "id": 1573, + "id": 1931, "properties": { "powered": "false", "shape": "east_west", @@ -58762,7 +69180,7 @@ } }, { - "id": 1574, + "id": 1932, "properties": { "powered": "false", "shape": "east_west", @@ -58770,7 +69188,7 @@ } }, { - "id": 1575, + "id": 1933, "properties": { "powered": "false", "shape": "ascending_east", @@ -58778,7 +69196,7 @@ } }, { - "id": 1576, + "id": 1934, "properties": { "powered": "false", "shape": "ascending_east", @@ -58786,7 +69204,7 @@ } }, { - "id": 1577, + "id": 1935, "properties": { "powered": "false", "shape": "ascending_west", @@ -58794,7 +69212,7 @@ } }, { - "id": 1578, + "id": 1936, "properties": { "powered": "false", "shape": "ascending_west", @@ -58802,7 +69220,7 @@ } }, { - "id": 1579, + "id": 1937, "properties": { "powered": "false", "shape": "ascending_north", @@ -58810,7 +69228,7 @@ } }, { - "id": 1580, + "id": 1938, "properties": { "powered": "false", "shape": "ascending_north", @@ -58818,7 +69236,7 @@ } }, { - "id": 1581, + "id": 1939, "properties": { "powered": "false", "shape": "ascending_south", @@ -58826,7 +69244,7 @@ } }, { - "id": 1582, + "id": 1940, "properties": { "powered": "false", "shape": "ascending_south", @@ -58839,7 +69257,7 @@ "states": [ { "default": true, - "id": 3610 + "id": 4224 } ] }, @@ -58847,7 +69265,7 @@ "states": [ { "default": true, - "id": 3608 + "id": 4222 } ] }, @@ -58873,21 +69291,21 @@ }, "states": [ { - "id": 11742, + "id": 13526, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11743, + "id": 13527, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11744, + "id": 13528, "properties": { "type": "bottom", "waterlogged": "true" @@ -58895,21 +69313,21 @@ }, { "default": true, - "id": 11745, + "id": 13529, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11746, + "id": 13530, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11747, + "id": 13531, "properties": { "type": "double", "waterlogged": "false" @@ -58943,7 +69361,7 @@ }, "states": [ { - "id": 11590, + "id": 13374, "properties": { "facing": "north", "half": "top", @@ -58952,7 +69370,7 @@ } }, { - "id": 11591, + "id": 13375, "properties": { "facing": "north", "half": "top", @@ -58961,7 +69379,7 @@ } }, { - "id": 11592, + "id": 13376, "properties": { "facing": "north", "half": "top", @@ -58970,7 +69388,7 @@ } }, { - "id": 11593, + "id": 13377, "properties": { "facing": "north", "half": "top", @@ -58979,7 +69397,7 @@ } }, { - "id": 11594, + "id": 13378, "properties": { "facing": "north", "half": "top", @@ -58988,7 +69406,7 @@ } }, { - "id": 11595, + "id": 13379, "properties": { "facing": "north", "half": "top", @@ -58997,7 +69415,7 @@ } }, { - "id": 11596, + "id": 13380, "properties": { "facing": "north", "half": "top", @@ -59006,7 +69424,7 @@ } }, { - "id": 11597, + "id": 13381, "properties": { "facing": "north", "half": "top", @@ -59015,7 +69433,7 @@ } }, { - "id": 11598, + "id": 13382, "properties": { "facing": "north", "half": "top", @@ -59024,7 +69442,7 @@ } }, { - "id": 11599, + "id": 13383, "properties": { "facing": "north", "half": "top", @@ -59033,7 +69451,7 @@ } }, { - "id": 11600, + "id": 13384, "properties": { "facing": "north", "half": "bottom", @@ -59043,7 +69461,7 @@ }, { "default": true, - "id": 11601, + "id": 13385, "properties": { "facing": "north", "half": "bottom", @@ -59052,7 +69470,7 @@ } }, { - "id": 11602, + "id": 13386, "properties": { "facing": "north", "half": "bottom", @@ -59061,7 +69479,7 @@ } }, { - "id": 11603, + "id": 13387, "properties": { "facing": "north", "half": "bottom", @@ -59070,7 +69488,7 @@ } }, { - "id": 11604, + "id": 13388, "properties": { "facing": "north", "half": "bottom", @@ -59079,7 +69497,7 @@ } }, { - "id": 11605, + "id": 13389, "properties": { "facing": "north", "half": "bottom", @@ -59088,7 +69506,7 @@ } }, { - "id": 11606, + "id": 13390, "properties": { "facing": "north", "half": "bottom", @@ -59097,7 +69515,7 @@ } }, { - "id": 11607, + "id": 13391, "properties": { "facing": "north", "half": "bottom", @@ -59106,7 +69524,7 @@ } }, { - "id": 11608, + "id": 13392, "properties": { "facing": "north", "half": "bottom", @@ -59115,7 +69533,7 @@ } }, { - "id": 11609, + "id": 13393, "properties": { "facing": "north", "half": "bottom", @@ -59124,7 +69542,7 @@ } }, { - "id": 11610, + "id": 13394, "properties": { "facing": "south", "half": "top", @@ -59133,7 +69551,7 @@ } }, { - "id": 11611, + "id": 13395, "properties": { "facing": "south", "half": "top", @@ -59142,7 +69560,7 @@ } }, { - "id": 11612, + "id": 13396, "properties": { "facing": "south", "half": "top", @@ -59151,7 +69569,7 @@ } }, { - "id": 11613, + "id": 13397, "properties": { "facing": "south", "half": "top", @@ -59160,7 +69578,7 @@ } }, { - "id": 11614, + "id": 13398, "properties": { "facing": "south", "half": "top", @@ -59169,7 +69587,7 @@ } }, { - "id": 11615, + "id": 13399, "properties": { "facing": "south", "half": "top", @@ -59178,7 +69596,7 @@ } }, { - "id": 11616, + "id": 13400, "properties": { "facing": "south", "half": "top", @@ -59187,7 +69605,7 @@ } }, { - "id": 11617, + "id": 13401, "properties": { "facing": "south", "half": "top", @@ -59196,7 +69614,7 @@ } }, { - "id": 11618, + "id": 13402, "properties": { "facing": "south", "half": "top", @@ -59205,7 +69623,7 @@ } }, { - "id": 11619, + "id": 13403, "properties": { "facing": "south", "half": "top", @@ -59214,7 +69632,7 @@ } }, { - "id": 11620, + "id": 13404, "properties": { "facing": "south", "half": "bottom", @@ -59223,7 +69641,7 @@ } }, { - "id": 11621, + "id": 13405, "properties": { "facing": "south", "half": "bottom", @@ -59232,7 +69650,7 @@ } }, { - "id": 11622, + "id": 13406, "properties": { "facing": "south", "half": "bottom", @@ -59241,7 +69659,7 @@ } }, { - "id": 11623, + "id": 13407, "properties": { "facing": "south", "half": "bottom", @@ -59250,7 +69668,7 @@ } }, { - "id": 11624, + "id": 13408, "properties": { "facing": "south", "half": "bottom", @@ -59259,7 +69677,7 @@ } }, { - "id": 11625, + "id": 13409, "properties": { "facing": "south", "half": "bottom", @@ -59268,7 +69686,7 @@ } }, { - "id": 11626, + "id": 13410, "properties": { "facing": "south", "half": "bottom", @@ -59277,7 +69695,7 @@ } }, { - "id": 11627, + "id": 13411, "properties": { "facing": "south", "half": "bottom", @@ -59286,7 +69704,7 @@ } }, { - "id": 11628, + "id": 13412, "properties": { "facing": "south", "half": "bottom", @@ -59295,7 +69713,7 @@ } }, { - "id": 11629, + "id": 13413, "properties": { "facing": "south", "half": "bottom", @@ -59304,7 +69722,7 @@ } }, { - "id": 11630, + "id": 13414, "properties": { "facing": "west", "half": "top", @@ -59313,7 +69731,7 @@ } }, { - "id": 11631, + "id": 13415, "properties": { "facing": "west", "half": "top", @@ -59322,7 +69740,7 @@ } }, { - "id": 11632, + "id": 13416, "properties": { "facing": "west", "half": "top", @@ -59331,7 +69749,7 @@ } }, { - "id": 11633, + "id": 13417, "properties": { "facing": "west", "half": "top", @@ -59340,7 +69758,7 @@ } }, { - "id": 11634, + "id": 13418, "properties": { "facing": "west", "half": "top", @@ -59349,7 +69767,7 @@ } }, { - "id": 11635, + "id": 13419, "properties": { "facing": "west", "half": "top", @@ -59358,7 +69776,7 @@ } }, { - "id": 11636, + "id": 13420, "properties": { "facing": "west", "half": "top", @@ -59367,7 +69785,7 @@ } }, { - "id": 11637, + "id": 13421, "properties": { "facing": "west", "half": "top", @@ -59376,7 +69794,7 @@ } }, { - "id": 11638, + "id": 13422, "properties": { "facing": "west", "half": "top", @@ -59385,7 +69803,7 @@ } }, { - "id": 11639, + "id": 13423, "properties": { "facing": "west", "half": "top", @@ -59394,7 +69812,7 @@ } }, { - "id": 11640, + "id": 13424, "properties": { "facing": "west", "half": "bottom", @@ -59403,7 +69821,7 @@ } }, { - "id": 11641, + "id": 13425, "properties": { "facing": "west", "half": "bottom", @@ -59412,7 +69830,7 @@ } }, { - "id": 11642, + "id": 13426, "properties": { "facing": "west", "half": "bottom", @@ -59421,7 +69839,7 @@ } }, { - "id": 11643, + "id": 13427, "properties": { "facing": "west", "half": "bottom", @@ -59430,7 +69848,7 @@ } }, { - "id": 11644, + "id": 13428, "properties": { "facing": "west", "half": "bottom", @@ -59439,7 +69857,7 @@ } }, { - "id": 11645, + "id": 13429, "properties": { "facing": "west", "half": "bottom", @@ -59448,7 +69866,7 @@ } }, { - "id": 11646, + "id": 13430, "properties": { "facing": "west", "half": "bottom", @@ -59457,7 +69875,7 @@ } }, { - "id": 11647, + "id": 13431, "properties": { "facing": "west", "half": "bottom", @@ -59466,7 +69884,7 @@ } }, { - "id": 11648, + "id": 13432, "properties": { "facing": "west", "half": "bottom", @@ -59475,7 +69893,7 @@ } }, { - "id": 11649, + "id": 13433, "properties": { "facing": "west", "half": "bottom", @@ -59484,7 +69902,7 @@ } }, { - "id": 11650, + "id": 13434, "properties": { "facing": "east", "half": "top", @@ -59493,7 +69911,7 @@ } }, { - "id": 11651, + "id": 13435, "properties": { "facing": "east", "half": "top", @@ -59502,7 +69920,7 @@ } }, { - "id": 11652, + "id": 13436, "properties": { "facing": "east", "half": "top", @@ -59511,7 +69929,7 @@ } }, { - "id": 11653, + "id": 13437, "properties": { "facing": "east", "half": "top", @@ -59520,7 +69938,7 @@ } }, { - "id": 11654, + "id": 13438, "properties": { "facing": "east", "half": "top", @@ -59529,7 +69947,7 @@ } }, { - "id": 11655, + "id": 13439, "properties": { "facing": "east", "half": "top", @@ -59538,7 +69956,7 @@ } }, { - "id": 11656, + "id": 13440, "properties": { "facing": "east", "half": "top", @@ -59547,7 +69965,7 @@ } }, { - "id": 11657, + "id": 13441, "properties": { "facing": "east", "half": "top", @@ -59556,7 +69974,7 @@ } }, { - "id": 11658, + "id": 13442, "properties": { "facing": "east", "half": "top", @@ -59565,7 +69983,7 @@ } }, { - "id": 11659, + "id": 13443, "properties": { "facing": "east", "half": "top", @@ -59574,7 +69992,7 @@ } }, { - "id": 11660, + "id": 13444, "properties": { "facing": "east", "half": "bottom", @@ -59583,7 +70001,7 @@ } }, { - "id": 11661, + "id": 13445, "properties": { "facing": "east", "half": "bottom", @@ -59592,7 +70010,7 @@ } }, { - "id": 11662, + "id": 13446, "properties": { "facing": "east", "half": "bottom", @@ -59601,7 +70019,7 @@ } }, { - "id": 11663, + "id": 13447, "properties": { "facing": "east", "half": "bottom", @@ -59610,7 +70028,7 @@ } }, { - "id": 11664, + "id": 13448, "properties": { "facing": "east", "half": "bottom", @@ -59619,7 +70037,7 @@ } }, { - "id": 11665, + "id": 13449, "properties": { "facing": "east", "half": "bottom", @@ -59628,7 +70046,7 @@ } }, { - "id": 11666, + "id": 13450, "properties": { "facing": "east", "half": "bottom", @@ -59637,7 +70055,7 @@ } }, { - "id": 11667, + "id": 13451, "properties": { "facing": "east", "half": "bottom", @@ -59646,7 +70064,7 @@ } }, { - "id": 11668, + "id": 13452, "properties": { "facing": "east", "half": "bottom", @@ -59655,7 +70073,7 @@ } }, { - "id": 11669, + "id": 13453, "properties": { "facing": "east", "half": "bottom", @@ -59698,7 +70116,7 @@ }, "states": [ { - "id": 15636, + "id": 17420, "properties": { "east": "none", "north": "none", @@ -59709,7 +70127,7 @@ } }, { - "id": 15637, + "id": 17421, "properties": { "east": "none", "north": "none", @@ -59720,7 +70138,7 @@ } }, { - "id": 15638, + "id": 17422, "properties": { "east": "none", "north": "none", @@ -59732,7 +70150,7 @@ }, { "default": true, - "id": 15639, + "id": 17423, "properties": { "east": "none", "north": "none", @@ -59743,7 +70161,7 @@ } }, { - "id": 15640, + "id": 17424, "properties": { "east": "none", "north": "none", @@ -59754,7 +70172,7 @@ } }, { - "id": 15641, + "id": 17425, "properties": { "east": "none", "north": "none", @@ -59765,7 +70183,7 @@ } }, { - "id": 15642, + "id": 17426, "properties": { "east": "none", "north": "none", @@ -59776,7 +70194,7 @@ } }, { - "id": 15643, + "id": 17427, "properties": { "east": "none", "north": "none", @@ -59787,7 +70205,7 @@ } }, { - "id": 15644, + "id": 17428, "properties": { "east": "none", "north": "none", @@ -59798,7 +70216,7 @@ } }, { - "id": 15645, + "id": 17429, "properties": { "east": "none", "north": "none", @@ -59809,7 +70227,7 @@ } }, { - "id": 15646, + "id": 17430, "properties": { "east": "none", "north": "none", @@ -59820,7 +70238,7 @@ } }, { - "id": 15647, + "id": 17431, "properties": { "east": "none", "north": "none", @@ -59831,7 +70249,7 @@ } }, { - "id": 15648, + "id": 17432, "properties": { "east": "none", "north": "none", @@ -59842,7 +70260,7 @@ } }, { - "id": 15649, + "id": 17433, "properties": { "east": "none", "north": "none", @@ -59853,7 +70271,7 @@ } }, { - "id": 15650, + "id": 17434, "properties": { "east": "none", "north": "none", @@ -59864,7 +70282,7 @@ } }, { - "id": 15651, + "id": 17435, "properties": { "east": "none", "north": "none", @@ -59875,7 +70293,7 @@ } }, { - "id": 15652, + "id": 17436, "properties": { "east": "none", "north": "none", @@ -59886,7 +70304,7 @@ } }, { - "id": 15653, + "id": 17437, "properties": { "east": "none", "north": "none", @@ -59897,7 +70315,7 @@ } }, { - "id": 15654, + "id": 17438, "properties": { "east": "none", "north": "none", @@ -59908,7 +70326,7 @@ } }, { - "id": 15655, + "id": 17439, "properties": { "east": "none", "north": "none", @@ -59919,7 +70337,7 @@ } }, { - "id": 15656, + "id": 17440, "properties": { "east": "none", "north": "none", @@ -59930,7 +70348,7 @@ } }, { - "id": 15657, + "id": 17441, "properties": { "east": "none", "north": "none", @@ -59941,7 +70359,7 @@ } }, { - "id": 15658, + "id": 17442, "properties": { "east": "none", "north": "none", @@ -59952,7 +70370,7 @@ } }, { - "id": 15659, + "id": 17443, "properties": { "east": "none", "north": "none", @@ -59963,7 +70381,7 @@ } }, { - "id": 15660, + "id": 17444, "properties": { "east": "none", "north": "none", @@ -59974,7 +70392,7 @@ } }, { - "id": 15661, + "id": 17445, "properties": { "east": "none", "north": "none", @@ -59985,7 +70403,7 @@ } }, { - "id": 15662, + "id": 17446, "properties": { "east": "none", "north": "none", @@ -59996,7 +70414,7 @@ } }, { - "id": 15663, + "id": 17447, "properties": { "east": "none", "north": "none", @@ -60007,7 +70425,7 @@ } }, { - "id": 15664, + "id": 17448, "properties": { "east": "none", "north": "none", @@ -60018,7 +70436,7 @@ } }, { - "id": 15665, + "id": 17449, "properties": { "east": "none", "north": "none", @@ -60029,7 +70447,7 @@ } }, { - "id": 15666, + "id": 17450, "properties": { "east": "none", "north": "none", @@ -60040,7 +70458,7 @@ } }, { - "id": 15667, + "id": 17451, "properties": { "east": "none", "north": "none", @@ -60051,7 +70469,7 @@ } }, { - "id": 15668, + "id": 17452, "properties": { "east": "none", "north": "none", @@ -60062,7 +70480,7 @@ } }, { - "id": 15669, + "id": 17453, "properties": { "east": "none", "north": "none", @@ -60073,7 +70491,7 @@ } }, { - "id": 15670, + "id": 17454, "properties": { "east": "none", "north": "none", @@ -60084,7 +70502,7 @@ } }, { - "id": 15671, + "id": 17455, "properties": { "east": "none", "north": "none", @@ -60095,7 +70513,7 @@ } }, { - "id": 15672, + "id": 17456, "properties": { "east": "none", "north": "low", @@ -60106,7 +70524,7 @@ } }, { - "id": 15673, + "id": 17457, "properties": { "east": "none", "north": "low", @@ -60117,7 +70535,7 @@ } }, { - "id": 15674, + "id": 17458, "properties": { "east": "none", "north": "low", @@ -60128,7 +70546,7 @@ } }, { - "id": 15675, + "id": 17459, "properties": { "east": "none", "north": "low", @@ -60139,7 +70557,7 @@ } }, { - "id": 15676, + "id": 17460, "properties": { "east": "none", "north": "low", @@ -60150,7 +70568,7 @@ } }, { - "id": 15677, + "id": 17461, "properties": { "east": "none", "north": "low", @@ -60161,7 +70579,7 @@ } }, { - "id": 15678, + "id": 17462, "properties": { "east": "none", "north": "low", @@ -60172,7 +70590,7 @@ } }, { - "id": 15679, + "id": 17463, "properties": { "east": "none", "north": "low", @@ -60183,7 +70601,7 @@ } }, { - "id": 15680, + "id": 17464, "properties": { "east": "none", "north": "low", @@ -60194,7 +70612,7 @@ } }, { - "id": 15681, + "id": 17465, "properties": { "east": "none", "north": "low", @@ -60205,7 +70623,7 @@ } }, { - "id": 15682, + "id": 17466, "properties": { "east": "none", "north": "low", @@ -60216,7 +70634,7 @@ } }, { - "id": 15683, + "id": 17467, "properties": { "east": "none", "north": "low", @@ -60227,7 +70645,7 @@ } }, { - "id": 15684, + "id": 17468, "properties": { "east": "none", "north": "low", @@ -60238,7 +70656,7 @@ } }, { - "id": 15685, + "id": 17469, "properties": { "east": "none", "north": "low", @@ -60249,7 +70667,7 @@ } }, { - "id": 15686, + "id": 17470, "properties": { "east": "none", "north": "low", @@ -60260,7 +70678,7 @@ } }, { - "id": 15687, + "id": 17471, "properties": { "east": "none", "north": "low", @@ -60271,7 +70689,7 @@ } }, { - "id": 15688, + "id": 17472, "properties": { "east": "none", "north": "low", @@ -60282,7 +70700,7 @@ } }, { - "id": 15689, + "id": 17473, "properties": { "east": "none", "north": "low", @@ -60293,7 +70711,7 @@ } }, { - "id": 15690, + "id": 17474, "properties": { "east": "none", "north": "low", @@ -60304,7 +70722,7 @@ } }, { - "id": 15691, + "id": 17475, "properties": { "east": "none", "north": "low", @@ -60315,7 +70733,7 @@ } }, { - "id": 15692, + "id": 17476, "properties": { "east": "none", "north": "low", @@ -60326,7 +70744,7 @@ } }, { - "id": 15693, + "id": 17477, "properties": { "east": "none", "north": "low", @@ -60337,7 +70755,7 @@ } }, { - "id": 15694, + "id": 17478, "properties": { "east": "none", "north": "low", @@ -60348,7 +70766,7 @@ } }, { - "id": 15695, + "id": 17479, "properties": { "east": "none", "north": "low", @@ -60359,7 +70777,7 @@ } }, { - "id": 15696, + "id": 17480, "properties": { "east": "none", "north": "low", @@ -60370,7 +70788,7 @@ } }, { - "id": 15697, + "id": 17481, "properties": { "east": "none", "north": "low", @@ -60381,7 +70799,7 @@ } }, { - "id": 15698, + "id": 17482, "properties": { "east": "none", "north": "low", @@ -60392,7 +70810,7 @@ } }, { - "id": 15699, + "id": 17483, "properties": { "east": "none", "north": "low", @@ -60403,7 +70821,7 @@ } }, { - "id": 15700, + "id": 17484, "properties": { "east": "none", "north": "low", @@ -60414,7 +70832,7 @@ } }, { - "id": 15701, + "id": 17485, "properties": { "east": "none", "north": "low", @@ -60425,7 +70843,7 @@ } }, { - "id": 15702, + "id": 17486, "properties": { "east": "none", "north": "low", @@ -60436,7 +70854,7 @@ } }, { - "id": 15703, + "id": 17487, "properties": { "east": "none", "north": "low", @@ -60447,7 +70865,7 @@ } }, { - "id": 15704, + "id": 17488, "properties": { "east": "none", "north": "low", @@ -60458,7 +70876,7 @@ } }, { - "id": 15705, + "id": 17489, "properties": { "east": "none", "north": "low", @@ -60469,7 +70887,7 @@ } }, { - "id": 15706, + "id": 17490, "properties": { "east": "none", "north": "low", @@ -60480,7 +70898,7 @@ } }, { - "id": 15707, + "id": 17491, "properties": { "east": "none", "north": "low", @@ -60491,7 +70909,7 @@ } }, { - "id": 15708, + "id": 17492, "properties": { "east": "none", "north": "tall", @@ -60502,7 +70920,7 @@ } }, { - "id": 15709, + "id": 17493, "properties": { "east": "none", "north": "tall", @@ -60513,7 +70931,7 @@ } }, { - "id": 15710, + "id": 17494, "properties": { "east": "none", "north": "tall", @@ -60524,7 +70942,7 @@ } }, { - "id": 15711, + "id": 17495, "properties": { "east": "none", "north": "tall", @@ -60535,7 +70953,7 @@ } }, { - "id": 15712, + "id": 17496, "properties": { "east": "none", "north": "tall", @@ -60546,7 +70964,7 @@ } }, { - "id": 15713, + "id": 17497, "properties": { "east": "none", "north": "tall", @@ -60557,7 +70975,7 @@ } }, { - "id": 15714, + "id": 17498, "properties": { "east": "none", "north": "tall", @@ -60568,7 +70986,7 @@ } }, { - "id": 15715, + "id": 17499, "properties": { "east": "none", "north": "tall", @@ -60579,7 +70997,7 @@ } }, { - "id": 15716, + "id": 17500, "properties": { "east": "none", "north": "tall", @@ -60590,7 +71008,7 @@ } }, { - "id": 15717, + "id": 17501, "properties": { "east": "none", "north": "tall", @@ -60601,7 +71019,7 @@ } }, { - "id": 15718, + "id": 17502, "properties": { "east": "none", "north": "tall", @@ -60612,7 +71030,7 @@ } }, { - "id": 15719, + "id": 17503, "properties": { "east": "none", "north": "tall", @@ -60623,7 +71041,7 @@ } }, { - "id": 15720, + "id": 17504, "properties": { "east": "none", "north": "tall", @@ -60634,7 +71052,7 @@ } }, { - "id": 15721, + "id": 17505, "properties": { "east": "none", "north": "tall", @@ -60645,7 +71063,7 @@ } }, { - "id": 15722, + "id": 17506, "properties": { "east": "none", "north": "tall", @@ -60656,7 +71074,7 @@ } }, { - "id": 15723, + "id": 17507, "properties": { "east": "none", "north": "tall", @@ -60667,7 +71085,7 @@ } }, { - "id": 15724, + "id": 17508, "properties": { "east": "none", "north": "tall", @@ -60678,7 +71096,7 @@ } }, { - "id": 15725, + "id": 17509, "properties": { "east": "none", "north": "tall", @@ -60689,7 +71107,7 @@ } }, { - "id": 15726, + "id": 17510, "properties": { "east": "none", "north": "tall", @@ -60700,7 +71118,7 @@ } }, { - "id": 15727, + "id": 17511, "properties": { "east": "none", "north": "tall", @@ -60711,7 +71129,7 @@ } }, { - "id": 15728, + "id": 17512, "properties": { "east": "none", "north": "tall", @@ -60722,7 +71140,7 @@ } }, { - "id": 15729, + "id": 17513, "properties": { "east": "none", "north": "tall", @@ -60733,7 +71151,7 @@ } }, { - "id": 15730, + "id": 17514, "properties": { "east": "none", "north": "tall", @@ -60744,7 +71162,7 @@ } }, { - "id": 15731, + "id": 17515, "properties": { "east": "none", "north": "tall", @@ -60755,7 +71173,7 @@ } }, { - "id": 15732, + "id": 17516, "properties": { "east": "none", "north": "tall", @@ -60766,7 +71184,7 @@ } }, { - "id": 15733, + "id": 17517, "properties": { "east": "none", "north": "tall", @@ -60777,7 +71195,7 @@ } }, { - "id": 15734, + "id": 17518, "properties": { "east": "none", "north": "tall", @@ -60788,7 +71206,7 @@ } }, { - "id": 15735, + "id": 17519, "properties": { "east": "none", "north": "tall", @@ -60799,7 +71217,7 @@ } }, { - "id": 15736, + "id": 17520, "properties": { "east": "none", "north": "tall", @@ -60810,7 +71228,7 @@ } }, { - "id": 15737, + "id": 17521, "properties": { "east": "none", "north": "tall", @@ -60821,7 +71239,7 @@ } }, { - "id": 15738, + "id": 17522, "properties": { "east": "none", "north": "tall", @@ -60832,7 +71250,7 @@ } }, { - "id": 15739, + "id": 17523, "properties": { "east": "none", "north": "tall", @@ -60843,7 +71261,7 @@ } }, { - "id": 15740, + "id": 17524, "properties": { "east": "none", "north": "tall", @@ -60854,7 +71272,7 @@ } }, { - "id": 15741, + "id": 17525, "properties": { "east": "none", "north": "tall", @@ -60865,7 +71283,7 @@ } }, { - "id": 15742, + "id": 17526, "properties": { "east": "none", "north": "tall", @@ -60876,7 +71294,7 @@ } }, { - "id": 15743, + "id": 17527, "properties": { "east": "none", "north": "tall", @@ -60887,7 +71305,7 @@ } }, { - "id": 15744, + "id": 17528, "properties": { "east": "low", "north": "none", @@ -60898,7 +71316,7 @@ } }, { - "id": 15745, + "id": 17529, "properties": { "east": "low", "north": "none", @@ -60909,7 +71327,7 @@ } }, { - "id": 15746, + "id": 17530, "properties": { "east": "low", "north": "none", @@ -60920,7 +71338,7 @@ } }, { - "id": 15747, + "id": 17531, "properties": { "east": "low", "north": "none", @@ -60931,7 +71349,7 @@ } }, { - "id": 15748, + "id": 17532, "properties": { "east": "low", "north": "none", @@ -60942,7 +71360,7 @@ } }, { - "id": 15749, + "id": 17533, "properties": { "east": "low", "north": "none", @@ -60953,7 +71371,7 @@ } }, { - "id": 15750, + "id": 17534, "properties": { "east": "low", "north": "none", @@ -60964,7 +71382,7 @@ } }, { - "id": 15751, + "id": 17535, "properties": { "east": "low", "north": "none", @@ -60975,7 +71393,7 @@ } }, { - "id": 15752, + "id": 17536, "properties": { "east": "low", "north": "none", @@ -60986,7 +71404,7 @@ } }, { - "id": 15753, + "id": 17537, "properties": { "east": "low", "north": "none", @@ -60997,7 +71415,7 @@ } }, { - "id": 15754, + "id": 17538, "properties": { "east": "low", "north": "none", @@ -61008,7 +71426,7 @@ } }, { - "id": 15755, + "id": 17539, "properties": { "east": "low", "north": "none", @@ -61019,7 +71437,7 @@ } }, { - "id": 15756, + "id": 17540, "properties": { "east": "low", "north": "none", @@ -61030,7 +71448,7 @@ } }, { - "id": 15757, + "id": 17541, "properties": { "east": "low", "north": "none", @@ -61041,7 +71459,7 @@ } }, { - "id": 15758, + "id": 17542, "properties": { "east": "low", "north": "none", @@ -61052,7 +71470,7 @@ } }, { - "id": 15759, + "id": 17543, "properties": { "east": "low", "north": "none", @@ -61063,7 +71481,7 @@ } }, { - "id": 15760, + "id": 17544, "properties": { "east": "low", "north": "none", @@ -61074,7 +71492,7 @@ } }, { - "id": 15761, + "id": 17545, "properties": { "east": "low", "north": "none", @@ -61085,7 +71503,7 @@ } }, { - "id": 15762, + "id": 17546, "properties": { "east": "low", "north": "none", @@ -61096,7 +71514,7 @@ } }, { - "id": 15763, + "id": 17547, "properties": { "east": "low", "north": "none", @@ -61107,7 +71525,7 @@ } }, { - "id": 15764, + "id": 17548, "properties": { "east": "low", "north": "none", @@ -61118,7 +71536,7 @@ } }, { - "id": 15765, + "id": 17549, "properties": { "east": "low", "north": "none", @@ -61129,7 +71547,7 @@ } }, { - "id": 15766, + "id": 17550, "properties": { "east": "low", "north": "none", @@ -61140,7 +71558,7 @@ } }, { - "id": 15767, + "id": 17551, "properties": { "east": "low", "north": "none", @@ -61151,7 +71569,7 @@ } }, { - "id": 15768, + "id": 17552, "properties": { "east": "low", "north": "none", @@ -61162,7 +71580,7 @@ } }, { - "id": 15769, + "id": 17553, "properties": { "east": "low", "north": "none", @@ -61173,7 +71591,7 @@ } }, { - "id": 15770, + "id": 17554, "properties": { "east": "low", "north": "none", @@ -61184,7 +71602,7 @@ } }, { - "id": 15771, + "id": 17555, "properties": { "east": "low", "north": "none", @@ -61195,7 +71613,7 @@ } }, { - "id": 15772, + "id": 17556, "properties": { "east": "low", "north": "none", @@ -61206,7 +71624,7 @@ } }, { - "id": 15773, + "id": 17557, "properties": { "east": "low", "north": "none", @@ -61217,7 +71635,7 @@ } }, { - "id": 15774, + "id": 17558, "properties": { "east": "low", "north": "none", @@ -61228,7 +71646,7 @@ } }, { - "id": 15775, + "id": 17559, "properties": { "east": "low", "north": "none", @@ -61239,7 +71657,7 @@ } }, { - "id": 15776, + "id": 17560, "properties": { "east": "low", "north": "none", @@ -61250,7 +71668,7 @@ } }, { - "id": 15777, + "id": 17561, "properties": { "east": "low", "north": "none", @@ -61261,7 +71679,7 @@ } }, { - "id": 15778, + "id": 17562, "properties": { "east": "low", "north": "none", @@ -61272,7 +71690,7 @@ } }, { - "id": 15779, + "id": 17563, "properties": { "east": "low", "north": "none", @@ -61283,7 +71701,7 @@ } }, { - "id": 15780, + "id": 17564, "properties": { "east": "low", "north": "low", @@ -61294,7 +71712,7 @@ } }, { - "id": 15781, + "id": 17565, "properties": { "east": "low", "north": "low", @@ -61305,7 +71723,7 @@ } }, { - "id": 15782, + "id": 17566, "properties": { "east": "low", "north": "low", @@ -61316,7 +71734,7 @@ } }, { - "id": 15783, + "id": 17567, "properties": { "east": "low", "north": "low", @@ -61327,7 +71745,7 @@ } }, { - "id": 15784, + "id": 17568, "properties": { "east": "low", "north": "low", @@ -61338,7 +71756,7 @@ } }, { - "id": 15785, + "id": 17569, "properties": { "east": "low", "north": "low", @@ -61349,7 +71767,7 @@ } }, { - "id": 15786, + "id": 17570, "properties": { "east": "low", "north": "low", @@ -61360,7 +71778,7 @@ } }, { - "id": 15787, + "id": 17571, "properties": { "east": "low", "north": "low", @@ -61371,7 +71789,7 @@ } }, { - "id": 15788, + "id": 17572, "properties": { "east": "low", "north": "low", @@ -61382,7 +71800,7 @@ } }, { - "id": 15789, + "id": 17573, "properties": { "east": "low", "north": "low", @@ -61393,7 +71811,7 @@ } }, { - "id": 15790, + "id": 17574, "properties": { "east": "low", "north": "low", @@ -61404,7 +71822,7 @@ } }, { - "id": 15791, + "id": 17575, "properties": { "east": "low", "north": "low", @@ -61415,7 +71833,7 @@ } }, { - "id": 15792, + "id": 17576, "properties": { "east": "low", "north": "low", @@ -61426,7 +71844,7 @@ } }, { - "id": 15793, + "id": 17577, "properties": { "east": "low", "north": "low", @@ -61437,7 +71855,7 @@ } }, { - "id": 15794, + "id": 17578, "properties": { "east": "low", "north": "low", @@ -61448,7 +71866,7 @@ } }, { - "id": 15795, + "id": 17579, "properties": { "east": "low", "north": "low", @@ -61459,7 +71877,7 @@ } }, { - "id": 15796, + "id": 17580, "properties": { "east": "low", "north": "low", @@ -61470,7 +71888,7 @@ } }, { - "id": 15797, + "id": 17581, "properties": { "east": "low", "north": "low", @@ -61481,7 +71899,7 @@ } }, { - "id": 15798, + "id": 17582, "properties": { "east": "low", "north": "low", @@ -61492,7 +71910,7 @@ } }, { - "id": 15799, + "id": 17583, "properties": { "east": "low", "north": "low", @@ -61503,7 +71921,7 @@ } }, { - "id": 15800, + "id": 17584, "properties": { "east": "low", "north": "low", @@ -61514,7 +71932,7 @@ } }, { - "id": 15801, + "id": 17585, "properties": { "east": "low", "north": "low", @@ -61525,7 +71943,7 @@ } }, { - "id": 15802, + "id": 17586, "properties": { "east": "low", "north": "low", @@ -61536,7 +71954,7 @@ } }, { - "id": 15803, + "id": 17587, "properties": { "east": "low", "north": "low", @@ -61547,7 +71965,7 @@ } }, { - "id": 15804, + "id": 17588, "properties": { "east": "low", "north": "low", @@ -61558,7 +71976,7 @@ } }, { - "id": 15805, + "id": 17589, "properties": { "east": "low", "north": "low", @@ -61569,7 +71987,7 @@ } }, { - "id": 15806, + "id": 17590, "properties": { "east": "low", "north": "low", @@ -61580,7 +71998,7 @@ } }, { - "id": 15807, + "id": 17591, "properties": { "east": "low", "north": "low", @@ -61591,7 +72009,7 @@ } }, { - "id": 15808, + "id": 17592, "properties": { "east": "low", "north": "low", @@ -61602,7 +72020,7 @@ } }, { - "id": 15809, + "id": 17593, "properties": { "east": "low", "north": "low", @@ -61613,7 +72031,7 @@ } }, { - "id": 15810, + "id": 17594, "properties": { "east": "low", "north": "low", @@ -61624,7 +72042,7 @@ } }, { - "id": 15811, + "id": 17595, "properties": { "east": "low", "north": "low", @@ -61635,7 +72053,7 @@ } }, { - "id": 15812, + "id": 17596, "properties": { "east": "low", "north": "low", @@ -61646,7 +72064,7 @@ } }, { - "id": 15813, + "id": 17597, "properties": { "east": "low", "north": "low", @@ -61657,7 +72075,7 @@ } }, { - "id": 15814, + "id": 17598, "properties": { "east": "low", "north": "low", @@ -61668,7 +72086,7 @@ } }, { - "id": 15815, + "id": 17599, "properties": { "east": "low", "north": "low", @@ -61679,7 +72097,7 @@ } }, { - "id": 15816, + "id": 17600, "properties": { "east": "low", "north": "tall", @@ -61690,7 +72108,7 @@ } }, { - "id": 15817, + "id": 17601, "properties": { "east": "low", "north": "tall", @@ -61701,7 +72119,7 @@ } }, { - "id": 15818, + "id": 17602, "properties": { "east": "low", "north": "tall", @@ -61712,7 +72130,7 @@ } }, { - "id": 15819, + "id": 17603, "properties": { "east": "low", "north": "tall", @@ -61723,7 +72141,7 @@ } }, { - "id": 15820, + "id": 17604, "properties": { "east": "low", "north": "tall", @@ -61734,7 +72152,7 @@ } }, { - "id": 15821, + "id": 17605, "properties": { "east": "low", "north": "tall", @@ -61745,7 +72163,7 @@ } }, { - "id": 15822, + "id": 17606, "properties": { "east": "low", "north": "tall", @@ -61756,7 +72174,7 @@ } }, { - "id": 15823, + "id": 17607, "properties": { "east": "low", "north": "tall", @@ -61767,7 +72185,7 @@ } }, { - "id": 15824, + "id": 17608, "properties": { "east": "low", "north": "tall", @@ -61778,7 +72196,7 @@ } }, { - "id": 15825, + "id": 17609, "properties": { "east": "low", "north": "tall", @@ -61789,7 +72207,7 @@ } }, { - "id": 15826, + "id": 17610, "properties": { "east": "low", "north": "tall", @@ -61800,7 +72218,7 @@ } }, { - "id": 15827, + "id": 17611, "properties": { "east": "low", "north": "tall", @@ -61811,7 +72229,7 @@ } }, { - "id": 15828, + "id": 17612, "properties": { "east": "low", "north": "tall", @@ -61822,7 +72240,7 @@ } }, { - "id": 15829, + "id": 17613, "properties": { "east": "low", "north": "tall", @@ -61833,7 +72251,7 @@ } }, { - "id": 15830, + "id": 17614, "properties": { "east": "low", "north": "tall", @@ -61844,7 +72262,7 @@ } }, { - "id": 15831, + "id": 17615, "properties": { "east": "low", "north": "tall", @@ -61855,7 +72273,7 @@ } }, { - "id": 15832, + "id": 17616, "properties": { "east": "low", "north": "tall", @@ -61866,7 +72284,7 @@ } }, { - "id": 15833, + "id": 17617, "properties": { "east": "low", "north": "tall", @@ -61877,7 +72295,7 @@ } }, { - "id": 15834, + "id": 17618, "properties": { "east": "low", "north": "tall", @@ -61888,7 +72306,7 @@ } }, { - "id": 15835, + "id": 17619, "properties": { "east": "low", "north": "tall", @@ -61899,7 +72317,7 @@ } }, { - "id": 15836, + "id": 17620, "properties": { "east": "low", "north": "tall", @@ -61910,7 +72328,7 @@ } }, { - "id": 15837, + "id": 17621, "properties": { "east": "low", "north": "tall", @@ -61921,7 +72339,7 @@ } }, { - "id": 15838, + "id": 17622, "properties": { "east": "low", "north": "tall", @@ -61932,7 +72350,7 @@ } }, { - "id": 15839, + "id": 17623, "properties": { "east": "low", "north": "tall", @@ -61943,7 +72361,7 @@ } }, { - "id": 15840, + "id": 17624, "properties": { "east": "low", "north": "tall", @@ -61954,7 +72372,7 @@ } }, { - "id": 15841, + "id": 17625, "properties": { "east": "low", "north": "tall", @@ -61965,7 +72383,7 @@ } }, { - "id": 15842, + "id": 17626, "properties": { "east": "low", "north": "tall", @@ -61976,7 +72394,7 @@ } }, { - "id": 15843, + "id": 17627, "properties": { "east": "low", "north": "tall", @@ -61987,7 +72405,7 @@ } }, { - "id": 15844, + "id": 17628, "properties": { "east": "low", "north": "tall", @@ -61998,7 +72416,7 @@ } }, { - "id": 15845, + "id": 17629, "properties": { "east": "low", "north": "tall", @@ -62009,7 +72427,7 @@ } }, { - "id": 15846, + "id": 17630, "properties": { "east": "low", "north": "tall", @@ -62020,7 +72438,7 @@ } }, { - "id": 15847, + "id": 17631, "properties": { "east": "low", "north": "tall", @@ -62031,7 +72449,7 @@ } }, { - "id": 15848, + "id": 17632, "properties": { "east": "low", "north": "tall", @@ -62042,7 +72460,7 @@ } }, { - "id": 15849, + "id": 17633, "properties": { "east": "low", "north": "tall", @@ -62053,7 +72471,7 @@ } }, { - "id": 15850, + "id": 17634, "properties": { "east": "low", "north": "tall", @@ -62064,7 +72482,7 @@ } }, { - "id": 15851, + "id": 17635, "properties": { "east": "low", "north": "tall", @@ -62075,7 +72493,7 @@ } }, { - "id": 15852, + "id": 17636, "properties": { "east": "tall", "north": "none", @@ -62086,7 +72504,7 @@ } }, { - "id": 15853, + "id": 17637, "properties": { "east": "tall", "north": "none", @@ -62097,7 +72515,7 @@ } }, { - "id": 15854, + "id": 17638, "properties": { "east": "tall", "north": "none", @@ -62108,7 +72526,7 @@ } }, { - "id": 15855, + "id": 17639, "properties": { "east": "tall", "north": "none", @@ -62119,7 +72537,7 @@ } }, { - "id": 15856, + "id": 17640, "properties": { "east": "tall", "north": "none", @@ -62130,7 +72548,7 @@ } }, { - "id": 15857, + "id": 17641, "properties": { "east": "tall", "north": "none", @@ -62141,7 +72559,7 @@ } }, { - "id": 15858, + "id": 17642, "properties": { "east": "tall", "north": "none", @@ -62152,7 +72570,7 @@ } }, { - "id": 15859, + "id": 17643, "properties": { "east": "tall", "north": "none", @@ -62163,7 +72581,7 @@ } }, { - "id": 15860, + "id": 17644, "properties": { "east": "tall", "north": "none", @@ -62174,7 +72592,7 @@ } }, { - "id": 15861, + "id": 17645, "properties": { "east": "tall", "north": "none", @@ -62185,7 +72603,7 @@ } }, { - "id": 15862, + "id": 17646, "properties": { "east": "tall", "north": "none", @@ -62196,7 +72614,7 @@ } }, { - "id": 15863, + "id": 17647, "properties": { "east": "tall", "north": "none", @@ -62207,7 +72625,7 @@ } }, { - "id": 15864, + "id": 17648, "properties": { "east": "tall", "north": "none", @@ -62218,7 +72636,7 @@ } }, { - "id": 15865, + "id": 17649, "properties": { "east": "tall", "north": "none", @@ -62229,7 +72647,7 @@ } }, { - "id": 15866, + "id": 17650, "properties": { "east": "tall", "north": "none", @@ -62240,7 +72658,7 @@ } }, { - "id": 15867, + "id": 17651, "properties": { "east": "tall", "north": "none", @@ -62251,7 +72669,7 @@ } }, { - "id": 15868, + "id": 17652, "properties": { "east": "tall", "north": "none", @@ -62262,7 +72680,7 @@ } }, { - "id": 15869, + "id": 17653, "properties": { "east": "tall", "north": "none", @@ -62273,7 +72691,7 @@ } }, { - "id": 15870, + "id": 17654, "properties": { "east": "tall", "north": "none", @@ -62284,7 +72702,7 @@ } }, { - "id": 15871, + "id": 17655, "properties": { "east": "tall", "north": "none", @@ -62295,7 +72713,7 @@ } }, { - "id": 15872, + "id": 17656, "properties": { "east": "tall", "north": "none", @@ -62306,7 +72724,7 @@ } }, { - "id": 15873, + "id": 17657, "properties": { "east": "tall", "north": "none", @@ -62317,7 +72735,7 @@ } }, { - "id": 15874, + "id": 17658, "properties": { "east": "tall", "north": "none", @@ -62328,7 +72746,7 @@ } }, { - "id": 15875, + "id": 17659, "properties": { "east": "tall", "north": "none", @@ -62339,7 +72757,7 @@ } }, { - "id": 15876, + "id": 17660, "properties": { "east": "tall", "north": "none", @@ -62350,7 +72768,7 @@ } }, { - "id": 15877, + "id": 17661, "properties": { "east": "tall", "north": "none", @@ -62361,7 +72779,7 @@ } }, { - "id": 15878, + "id": 17662, "properties": { "east": "tall", "north": "none", @@ -62372,7 +72790,7 @@ } }, { - "id": 15879, + "id": 17663, "properties": { "east": "tall", "north": "none", @@ -62383,7 +72801,7 @@ } }, { - "id": 15880, + "id": 17664, "properties": { "east": "tall", "north": "none", @@ -62394,7 +72812,7 @@ } }, { - "id": 15881, + "id": 17665, "properties": { "east": "tall", "north": "none", @@ -62405,7 +72823,7 @@ } }, { - "id": 15882, + "id": 17666, "properties": { "east": "tall", "north": "none", @@ -62416,7 +72834,7 @@ } }, { - "id": 15883, + "id": 17667, "properties": { "east": "tall", "north": "none", @@ -62427,7 +72845,7 @@ } }, { - "id": 15884, + "id": 17668, "properties": { "east": "tall", "north": "none", @@ -62438,7 +72856,7 @@ } }, { - "id": 15885, + "id": 17669, "properties": { "east": "tall", "north": "none", @@ -62449,7 +72867,7 @@ } }, { - "id": 15886, + "id": 17670, "properties": { "east": "tall", "north": "none", @@ -62460,7 +72878,7 @@ } }, { - "id": 15887, + "id": 17671, "properties": { "east": "tall", "north": "none", @@ -62471,7 +72889,7 @@ } }, { - "id": 15888, + "id": 17672, "properties": { "east": "tall", "north": "low", @@ -62482,7 +72900,7 @@ } }, { - "id": 15889, + "id": 17673, "properties": { "east": "tall", "north": "low", @@ -62493,7 +72911,7 @@ } }, { - "id": 15890, + "id": 17674, "properties": { "east": "tall", "north": "low", @@ -62504,7 +72922,7 @@ } }, { - "id": 15891, + "id": 17675, "properties": { "east": "tall", "north": "low", @@ -62515,7 +72933,7 @@ } }, { - "id": 15892, + "id": 17676, "properties": { "east": "tall", "north": "low", @@ -62526,7 +72944,7 @@ } }, { - "id": 15893, + "id": 17677, "properties": { "east": "tall", "north": "low", @@ -62537,7 +72955,7 @@ } }, { - "id": 15894, + "id": 17678, "properties": { "east": "tall", "north": "low", @@ -62548,7 +72966,7 @@ } }, { - "id": 15895, + "id": 17679, "properties": { "east": "tall", "north": "low", @@ -62559,7 +72977,7 @@ } }, { - "id": 15896, + "id": 17680, "properties": { "east": "tall", "north": "low", @@ -62570,7 +72988,7 @@ } }, { - "id": 15897, + "id": 17681, "properties": { "east": "tall", "north": "low", @@ -62581,7 +72999,7 @@ } }, { - "id": 15898, + "id": 17682, "properties": { "east": "tall", "north": "low", @@ -62592,7 +73010,7 @@ } }, { - "id": 15899, + "id": 17683, "properties": { "east": "tall", "north": "low", @@ -62603,7 +73021,7 @@ } }, { - "id": 15900, + "id": 17684, "properties": { "east": "tall", "north": "low", @@ -62614,7 +73032,7 @@ } }, { - "id": 15901, + "id": 17685, "properties": { "east": "tall", "north": "low", @@ -62625,7 +73043,7 @@ } }, { - "id": 15902, + "id": 17686, "properties": { "east": "tall", "north": "low", @@ -62636,7 +73054,7 @@ } }, { - "id": 15903, + "id": 17687, "properties": { "east": "tall", "north": "low", @@ -62647,7 +73065,7 @@ } }, { - "id": 15904, + "id": 17688, "properties": { "east": "tall", "north": "low", @@ -62658,7 +73076,7 @@ } }, { - "id": 15905, + "id": 17689, "properties": { "east": "tall", "north": "low", @@ -62669,7 +73087,7 @@ } }, { - "id": 15906, + "id": 17690, "properties": { "east": "tall", "north": "low", @@ -62680,7 +73098,7 @@ } }, { - "id": 15907, + "id": 17691, "properties": { "east": "tall", "north": "low", @@ -62691,7 +73109,7 @@ } }, { - "id": 15908, + "id": 17692, "properties": { "east": "tall", "north": "low", @@ -62702,7 +73120,7 @@ } }, { - "id": 15909, + "id": 17693, "properties": { "east": "tall", "north": "low", @@ -62713,7 +73131,7 @@ } }, { - "id": 15910, + "id": 17694, "properties": { "east": "tall", "north": "low", @@ -62724,7 +73142,7 @@ } }, { - "id": 15911, + "id": 17695, "properties": { "east": "tall", "north": "low", @@ -62735,7 +73153,7 @@ } }, { - "id": 15912, + "id": 17696, "properties": { "east": "tall", "north": "low", @@ -62746,7 +73164,7 @@ } }, { - "id": 15913, + "id": 17697, "properties": { "east": "tall", "north": "low", @@ -62757,7 +73175,7 @@ } }, { - "id": 15914, + "id": 17698, "properties": { "east": "tall", "north": "low", @@ -62768,7 +73186,7 @@ } }, { - "id": 15915, + "id": 17699, "properties": { "east": "tall", "north": "low", @@ -62779,7 +73197,7 @@ } }, { - "id": 15916, + "id": 17700, "properties": { "east": "tall", "north": "low", @@ -62790,7 +73208,7 @@ } }, { - "id": 15917, + "id": 17701, "properties": { "east": "tall", "north": "low", @@ -62801,7 +73219,7 @@ } }, { - "id": 15918, + "id": 17702, "properties": { "east": "tall", "north": "low", @@ -62812,7 +73230,7 @@ } }, { - "id": 15919, + "id": 17703, "properties": { "east": "tall", "north": "low", @@ -62823,7 +73241,7 @@ } }, { - "id": 15920, + "id": 17704, "properties": { "east": "tall", "north": "low", @@ -62834,7 +73252,7 @@ } }, { - "id": 15921, + "id": 17705, "properties": { "east": "tall", "north": "low", @@ -62845,7 +73263,7 @@ } }, { - "id": 15922, + "id": 17706, "properties": { "east": "tall", "north": "low", @@ -62856,7 +73274,7 @@ } }, { - "id": 15923, + "id": 17707, "properties": { "east": "tall", "north": "low", @@ -62867,7 +73285,7 @@ } }, { - "id": 15924, + "id": 17708, "properties": { "east": "tall", "north": "tall", @@ -62878,7 +73296,7 @@ } }, { - "id": 15925, + "id": 17709, "properties": { "east": "tall", "north": "tall", @@ -62889,7 +73307,7 @@ } }, { - "id": 15926, + "id": 17710, "properties": { "east": "tall", "north": "tall", @@ -62900,7 +73318,7 @@ } }, { - "id": 15927, + "id": 17711, "properties": { "east": "tall", "north": "tall", @@ -62911,7 +73329,7 @@ } }, { - "id": 15928, + "id": 17712, "properties": { "east": "tall", "north": "tall", @@ -62922,7 +73340,7 @@ } }, { - "id": 15929, + "id": 17713, "properties": { "east": "tall", "north": "tall", @@ -62933,7 +73351,7 @@ } }, { - "id": 15930, + "id": 17714, "properties": { "east": "tall", "north": "tall", @@ -62944,7 +73362,7 @@ } }, { - "id": 15931, + "id": 17715, "properties": { "east": "tall", "north": "tall", @@ -62955,7 +73373,7 @@ } }, { - "id": 15932, + "id": 17716, "properties": { "east": "tall", "north": "tall", @@ -62966,7 +73384,7 @@ } }, { - "id": 15933, + "id": 17717, "properties": { "east": "tall", "north": "tall", @@ -62977,7 +73395,7 @@ } }, { - "id": 15934, + "id": 17718, "properties": { "east": "tall", "north": "tall", @@ -62988,7 +73406,7 @@ } }, { - "id": 15935, + "id": 17719, "properties": { "east": "tall", "north": "tall", @@ -62999,7 +73417,7 @@ } }, { - "id": 15936, + "id": 17720, "properties": { "east": "tall", "north": "tall", @@ -63010,7 +73428,7 @@ } }, { - "id": 15937, + "id": 17721, "properties": { "east": "tall", "north": "tall", @@ -63021,7 +73439,7 @@ } }, { - "id": 15938, + "id": 17722, "properties": { "east": "tall", "north": "tall", @@ -63032,7 +73450,7 @@ } }, { - "id": 15939, + "id": 17723, "properties": { "east": "tall", "north": "tall", @@ -63043,7 +73461,7 @@ } }, { - "id": 15940, + "id": 17724, "properties": { "east": "tall", "north": "tall", @@ -63054,7 +73472,7 @@ } }, { - "id": 15941, + "id": 17725, "properties": { "east": "tall", "north": "tall", @@ -63065,7 +73483,7 @@ } }, { - "id": 15942, + "id": 17726, "properties": { "east": "tall", "north": "tall", @@ -63076,7 +73494,7 @@ } }, { - "id": 15943, + "id": 17727, "properties": { "east": "tall", "north": "tall", @@ -63087,7 +73505,7 @@ } }, { - "id": 15944, + "id": 17728, "properties": { "east": "tall", "north": "tall", @@ -63098,7 +73516,7 @@ } }, { - "id": 15945, + "id": 17729, "properties": { "east": "tall", "north": "tall", @@ -63109,7 +73527,7 @@ } }, { - "id": 15946, + "id": 17730, "properties": { "east": "tall", "north": "tall", @@ -63120,7 +73538,7 @@ } }, { - "id": 15947, + "id": 17731, "properties": { "east": "tall", "north": "tall", @@ -63131,7 +73549,7 @@ } }, { - "id": 15948, + "id": 17732, "properties": { "east": "tall", "north": "tall", @@ -63142,7 +73560,7 @@ } }, { - "id": 15949, + "id": 17733, "properties": { "east": "tall", "north": "tall", @@ -63153,7 +73571,7 @@ } }, { - "id": 15950, + "id": 17734, "properties": { "east": "tall", "north": "tall", @@ -63164,7 +73582,7 @@ } }, { - "id": 15951, + "id": 17735, "properties": { "east": "tall", "north": "tall", @@ -63175,7 +73593,7 @@ } }, { - "id": 15952, + "id": 17736, "properties": { "east": "tall", "north": "tall", @@ -63186,7 +73604,7 @@ } }, { - "id": 15953, + "id": 17737, "properties": { "east": "tall", "north": "tall", @@ -63197,7 +73615,7 @@ } }, { - "id": 15954, + "id": 17738, "properties": { "east": "tall", "north": "tall", @@ -63208,7 +73626,7 @@ } }, { - "id": 15955, + "id": 17739, "properties": { "east": "tall", "north": "tall", @@ -63219,7 +73637,7 @@ } }, { - "id": 15956, + "id": 17740, "properties": { "east": "tall", "north": "tall", @@ -63230,7 +73648,7 @@ } }, { - "id": 15957, + "id": 17741, "properties": { "east": "tall", "north": "tall", @@ -63241,7 +73659,7 @@ } }, { - "id": 15958, + "id": 17742, "properties": { "east": "tall", "north": "tall", @@ -63252,7 +73670,7 @@ } }, { - "id": 15959, + "id": 17743, "properties": { "east": "tall", "north": "tall", @@ -63276,7 +73694,7 @@ "states": [ { "default": true, - "id": 10104 + "id": 11888 } ] }, @@ -63297,7 +73715,7 @@ }, "states": [ { - "id": 464, + "id": 472, "properties": { "facing": "north", "triggered": "true" @@ -63305,77 +73723,77 @@ }, { "default": true, - "id": 465, + "id": 473, "properties": { "facing": "north", "triggered": "false" } }, - { - "id": 466, - "properties": { - "facing": "east", - "triggered": "true" - } - }, - { - "id": 467, - "properties": { - "facing": "east", - "triggered": "false" - } - }, - { - "id": 468, - "properties": { - "facing": "south", - "triggered": "true" - } - }, - { - "id": 469, - "properties": { - "facing": "south", - "triggered": "false" - } - }, - { - "id": 470, - "properties": { - "facing": "west", - "triggered": "true" - } - }, - { - "id": 471, - "properties": { - "facing": "west", - "triggered": "false" - } - }, - { - "id": 472, - "properties": { - "facing": "up", - "triggered": "true" - } - }, - { - "id": 473, - "properties": { - "facing": "up", - "triggered": "false" - } - }, { "id": 474, + "properties": { + "facing": "east", + "triggered": "true" + } + }, + { + "id": 475, + "properties": { + "facing": "east", + "triggered": "false" + } + }, + { + "id": 476, + "properties": { + "facing": "south", + "triggered": "true" + } + }, + { + "id": 477, + "properties": { + "facing": "south", + "triggered": "false" + } + }, + { + "id": 478, + "properties": { + "facing": "west", + "triggered": "true" + } + }, + { + "id": 479, + "properties": { + "facing": "west", + "triggered": "false" + } + }, + { + "id": 480, + "properties": { + "facing": "up", + "triggered": "true" + } + }, + { + "id": 481, + "properties": { + "facing": "up", + "triggered": "false" + } + }, + { + "id": 482, "properties": { "facing": "down", "triggered": "true" } }, { - "id": 475, + "id": 483, "properties": { "facing": "down", "triggered": "false" @@ -63387,7 +73805,7 @@ "states": [ { "default": true, - "id": 5746 + "id": 7186 } ] }, @@ -63415,97 +73833,97 @@ "states": [ { "default": true, - "id": 7207, + "id": 8671, "properties": { "rotation": "0" } }, { - "id": 7208, + "id": 8672, "properties": { "rotation": "1" } }, { - "id": 7209, + "id": 8673, "properties": { "rotation": "2" } }, { - "id": 7210, + "id": 8674, "properties": { "rotation": "3" } }, { - "id": 7211, + "id": 8675, "properties": { "rotation": "4" } }, { - "id": 7212, + "id": 8676, "properties": { "rotation": "5" } }, { - "id": 7213, + "id": 8677, "properties": { "rotation": "6" } }, { - "id": 7214, + "id": 8678, "properties": { "rotation": "7" } }, { - "id": 7215, + "id": 8679, "properties": { "rotation": "8" } }, { - "id": 7216, + "id": 8680, "properties": { "rotation": "9" } }, { - "id": 7217, + "id": 8681, "properties": { "rotation": "10" } }, { - "id": 7218, + "id": 8682, "properties": { "rotation": "11" } }, { - "id": 7219, + "id": 8683, "properties": { "rotation": "12" } }, { - "id": 7220, + "id": 8684, "properties": { "rotation": "13" } }, { - "id": 7221, + "id": 8685, "properties": { "rotation": "14" } }, { - "id": 7222, + "id": 8686, "properties": { "rotation": "15" } @@ -63524,25 +73942,25 @@ "states": [ { "default": true, - "id": 7223, + "id": 8687, "properties": { "facing": "north" } }, { - "id": 7224, + "id": 8688, "properties": { "facing": "south" } }, { - "id": 7225, + "id": 8689, "properties": { "facing": "west" } }, { - "id": 7226, + "id": 8690, "properties": { "facing": "east" } @@ -63553,7 +73971,7 @@ "states": [ { "default": true, - "id": 10378 + "id": 12162 } ] }, @@ -63561,7 +73979,7 @@ "states": [ { "default": true, - "id": 19658 + "id": 21442 } ] }, @@ -63582,7 +74000,7 @@ }, "states": [ { - "id": 7464, + "id": 8948, "properties": { "facing": "north", "triggered": "true" @@ -63590,77 +74008,77 @@ }, { "default": true, - "id": 7465, + "id": 8949, "properties": { "facing": "north", "triggered": "false" } }, { - "id": 7466, + "id": 8950, "properties": { "facing": "east", "triggered": "true" } }, { - "id": 7467, + "id": 8951, "properties": { "facing": "east", "triggered": "false" } }, { - "id": 7468, + "id": 8952, "properties": { "facing": "south", "triggered": "true" } }, { - "id": 7469, + "id": 8953, "properties": { "facing": "south", "triggered": "false" } }, { - "id": 7470, + "id": 8954, "properties": { "facing": "west", "triggered": "true" } }, { - "id": 7471, + "id": 8955, "properties": { "facing": "west", "triggered": "false" } }, { - "id": 7472, + "id": 8956, "properties": { "facing": "up", "triggered": "true" } }, { - "id": 7473, + "id": 8957, "properties": { "facing": "up", "triggered": "false" } }, { - "id": 7474, + "id": 8958, "properties": { "facing": "down", "triggered": "true" } }, { - "id": 7475, + "id": 8959, "properties": { "facing": "down", "triggered": "false" @@ -63672,7 +74090,7 @@ "states": [ { "default": true, - "id": 5995 + "id": 7435 } ] }, @@ -63680,7 +74098,7 @@ "states": [ { "default": true, - "id": 5841 + "id": 7281 } ] }, @@ -63688,7 +74106,7 @@ "states": [ { "default": true, - "id": 5719 + "id": 7159 } ] }, @@ -63696,7 +74114,7 @@ "states": [ { "default": true, - "id": 10105 + "id": 11889 } ] }, @@ -63704,7 +74122,7 @@ "states": [ { "default": true, - "id": 5736 + "id": 7176 } ] }, @@ -63723,28 +74141,28 @@ }, "states": [ { - "id": 5737, + "id": 7177, "properties": { "eye": "true", "facing": "north" } }, { - "id": 5738, + "id": 7178, "properties": { "eye": "true", "facing": "south" } }, { - "id": 5739, + "id": 7179, "properties": { "eye": "true", "facing": "west" } }, { - "id": 5740, + "id": 7180, "properties": { "eye": "true", "facing": "east" @@ -63752,28 +74170,28 @@ }, { "default": true, - "id": 5741, + "id": 7181, "properties": { "eye": "false", "facing": "north" } }, { - "id": 5742, + "id": 7182, "properties": { "eye": "false", "facing": "south" } }, { - "id": 5743, + "id": 7183, "properties": { "eye": "false", "facing": "west" } }, { - "id": 5744, + "id": 7184, "properties": { "eye": "false", "facing": "east" @@ -63794,38 +74212,38 @@ }, "states": [ { - "id": 9939, + "id": 11723, "properties": { "facing": "north" } }, { - "id": 9940, + "id": 11724, "properties": { "facing": "east" } }, { - "id": 9941, + "id": 11725, "properties": { "facing": "south" } }, { - "id": 9942, + "id": 11726, "properties": { "facing": "west" } }, { "default": true, - "id": 9943, + "id": 11727, "properties": { "facing": "up" } }, { - "id": 9944, + "id": 11728, "properties": { "facing": "down" } @@ -63836,7 +74254,7 @@ "states": [ { "default": true, - "id": 5745 + "id": 7185 } ] }, @@ -63854,21 +74272,21 @@ }, "states": [ { - "id": 11700, + "id": 13484, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11701, + "id": 13485, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11702, + "id": 13486, "properties": { "type": "bottom", "waterlogged": "true" @@ -63876,21 +74294,21 @@ }, { "default": true, - "id": 11703, + "id": 13487, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11704, + "id": 13488, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11705, + "id": 13489, "properties": { "type": "double", "waterlogged": "false" @@ -63924,7 +74342,7 @@ }, "states": [ { - "id": 10950, + "id": 12734, "properties": { "facing": "north", "half": "top", @@ -63933,7 +74351,7 @@ } }, { - "id": 10951, + "id": 12735, "properties": { "facing": "north", "half": "top", @@ -63942,7 +74360,7 @@ } }, { - "id": 10952, + "id": 12736, "properties": { "facing": "north", "half": "top", @@ -63951,7 +74369,7 @@ } }, { - "id": 10953, + "id": 12737, "properties": { "facing": "north", "half": "top", @@ -63960,7 +74378,7 @@ } }, { - "id": 10954, + "id": 12738, "properties": { "facing": "north", "half": "top", @@ -63969,7 +74387,7 @@ } }, { - "id": 10955, + "id": 12739, "properties": { "facing": "north", "half": "top", @@ -63978,7 +74396,7 @@ } }, { - "id": 10956, + "id": 12740, "properties": { "facing": "north", "half": "top", @@ -63987,7 +74405,7 @@ } }, { - "id": 10957, + "id": 12741, "properties": { "facing": "north", "half": "top", @@ -63996,7 +74414,7 @@ } }, { - "id": 10958, + "id": 12742, "properties": { "facing": "north", "half": "top", @@ -64005,7 +74423,7 @@ } }, { - "id": 10959, + "id": 12743, "properties": { "facing": "north", "half": "top", @@ -64014,7 +74432,7 @@ } }, { - "id": 10960, + "id": 12744, "properties": { "facing": "north", "half": "bottom", @@ -64024,7 +74442,7 @@ }, { "default": true, - "id": 10961, + "id": 12745, "properties": { "facing": "north", "half": "bottom", @@ -64033,7 +74451,7 @@ } }, { - "id": 10962, + "id": 12746, "properties": { "facing": "north", "half": "bottom", @@ -64042,7 +74460,7 @@ } }, { - "id": 10963, + "id": 12747, "properties": { "facing": "north", "half": "bottom", @@ -64051,7 +74469,7 @@ } }, { - "id": 10964, + "id": 12748, "properties": { "facing": "north", "half": "bottom", @@ -64060,7 +74478,7 @@ } }, { - "id": 10965, + "id": 12749, "properties": { "facing": "north", "half": "bottom", @@ -64069,7 +74487,7 @@ } }, { - "id": 10966, + "id": 12750, "properties": { "facing": "north", "half": "bottom", @@ -64078,7 +74496,7 @@ } }, { - "id": 10967, + "id": 12751, "properties": { "facing": "north", "half": "bottom", @@ -64087,7 +74505,7 @@ } }, { - "id": 10968, + "id": 12752, "properties": { "facing": "north", "half": "bottom", @@ -64096,7 +74514,7 @@ } }, { - "id": 10969, + "id": 12753, "properties": { "facing": "north", "half": "bottom", @@ -64105,7 +74523,7 @@ } }, { - "id": 10970, + "id": 12754, "properties": { "facing": "south", "half": "top", @@ -64114,7 +74532,7 @@ } }, { - "id": 10971, + "id": 12755, "properties": { "facing": "south", "half": "top", @@ -64123,7 +74541,7 @@ } }, { - "id": 10972, + "id": 12756, "properties": { "facing": "south", "half": "top", @@ -64132,7 +74550,7 @@ } }, { - "id": 10973, + "id": 12757, "properties": { "facing": "south", "half": "top", @@ -64141,7 +74559,7 @@ } }, { - "id": 10974, + "id": 12758, "properties": { "facing": "south", "half": "top", @@ -64150,7 +74568,7 @@ } }, { - "id": 10975, + "id": 12759, "properties": { "facing": "south", "half": "top", @@ -64159,7 +74577,7 @@ } }, { - "id": 10976, + "id": 12760, "properties": { "facing": "south", "half": "top", @@ -64168,7 +74586,7 @@ } }, { - "id": 10977, + "id": 12761, "properties": { "facing": "south", "half": "top", @@ -64177,7 +74595,7 @@ } }, { - "id": 10978, + "id": 12762, "properties": { "facing": "south", "half": "top", @@ -64186,7 +74604,7 @@ } }, { - "id": 10979, + "id": 12763, "properties": { "facing": "south", "half": "top", @@ -64195,7 +74613,7 @@ } }, { - "id": 10980, + "id": 12764, "properties": { "facing": "south", "half": "bottom", @@ -64204,7 +74622,7 @@ } }, { - "id": 10981, + "id": 12765, "properties": { "facing": "south", "half": "bottom", @@ -64213,7 +74631,7 @@ } }, { - "id": 10982, + "id": 12766, "properties": { "facing": "south", "half": "bottom", @@ -64222,7 +74640,7 @@ } }, { - "id": 10983, + "id": 12767, "properties": { "facing": "south", "half": "bottom", @@ -64231,7 +74649,7 @@ } }, { - "id": 10984, + "id": 12768, "properties": { "facing": "south", "half": "bottom", @@ -64240,7 +74658,7 @@ } }, { - "id": 10985, + "id": 12769, "properties": { "facing": "south", "half": "bottom", @@ -64249,7 +74667,7 @@ } }, { - "id": 10986, + "id": 12770, "properties": { "facing": "south", "half": "bottom", @@ -64258,7 +74676,7 @@ } }, { - "id": 10987, + "id": 12771, "properties": { "facing": "south", "half": "bottom", @@ -64267,7 +74685,7 @@ } }, { - "id": 10988, + "id": 12772, "properties": { "facing": "south", "half": "bottom", @@ -64276,7 +74694,7 @@ } }, { - "id": 10989, + "id": 12773, "properties": { "facing": "south", "half": "bottom", @@ -64285,7 +74703,7 @@ } }, { - "id": 10990, + "id": 12774, "properties": { "facing": "west", "half": "top", @@ -64294,7 +74712,7 @@ } }, { - "id": 10991, + "id": 12775, "properties": { "facing": "west", "half": "top", @@ -64303,7 +74721,7 @@ } }, { - "id": 10992, + "id": 12776, "properties": { "facing": "west", "half": "top", @@ -64312,7 +74730,7 @@ } }, { - "id": 10993, + "id": 12777, "properties": { "facing": "west", "half": "top", @@ -64321,7 +74739,7 @@ } }, { - "id": 10994, + "id": 12778, "properties": { "facing": "west", "half": "top", @@ -64330,7 +74748,7 @@ } }, { - "id": 10995, + "id": 12779, "properties": { "facing": "west", "half": "top", @@ -64339,7 +74757,7 @@ } }, { - "id": 10996, + "id": 12780, "properties": { "facing": "west", "half": "top", @@ -64348,7 +74766,7 @@ } }, { - "id": 10997, + "id": 12781, "properties": { "facing": "west", "half": "top", @@ -64357,7 +74775,7 @@ } }, { - "id": 10998, + "id": 12782, "properties": { "facing": "west", "half": "top", @@ -64366,7 +74784,7 @@ } }, { - "id": 10999, + "id": 12783, "properties": { "facing": "west", "half": "top", @@ -64375,7 +74793,7 @@ } }, { - "id": 11000, + "id": 12784, "properties": { "facing": "west", "half": "bottom", @@ -64384,7 +74802,7 @@ } }, { - "id": 11001, + "id": 12785, "properties": { "facing": "west", "half": "bottom", @@ -64393,7 +74811,7 @@ } }, { - "id": 11002, + "id": 12786, "properties": { "facing": "west", "half": "bottom", @@ -64402,7 +74820,7 @@ } }, { - "id": 11003, + "id": 12787, "properties": { "facing": "west", "half": "bottom", @@ -64411,7 +74829,7 @@ } }, { - "id": 11004, + "id": 12788, "properties": { "facing": "west", "half": "bottom", @@ -64420,7 +74838,7 @@ } }, { - "id": 11005, + "id": 12789, "properties": { "facing": "west", "half": "bottom", @@ -64429,7 +74847,7 @@ } }, { - "id": 11006, + "id": 12790, "properties": { "facing": "west", "half": "bottom", @@ -64438,7 +74856,7 @@ } }, { - "id": 11007, + "id": 12791, "properties": { "facing": "west", "half": "bottom", @@ -64447,7 +74865,7 @@ } }, { - "id": 11008, + "id": 12792, "properties": { "facing": "west", "half": "bottom", @@ -64456,7 +74874,7 @@ } }, { - "id": 11009, + "id": 12793, "properties": { "facing": "west", "half": "bottom", @@ -64465,7 +74883,7 @@ } }, { - "id": 11010, + "id": 12794, "properties": { "facing": "east", "half": "top", @@ -64474,7 +74892,7 @@ } }, { - "id": 11011, + "id": 12795, "properties": { "facing": "east", "half": "top", @@ -64483,7 +74901,7 @@ } }, { - "id": 11012, + "id": 12796, "properties": { "facing": "east", "half": "top", @@ -64492,7 +74910,7 @@ } }, { - "id": 11013, + "id": 12797, "properties": { "facing": "east", "half": "top", @@ -64501,7 +74919,7 @@ } }, { - "id": 11014, + "id": 12798, "properties": { "facing": "east", "half": "top", @@ -64510,7 +74928,7 @@ } }, { - "id": 11015, + "id": 12799, "properties": { "facing": "east", "half": "top", @@ -64519,7 +74937,7 @@ } }, { - "id": 11016, + "id": 12800, "properties": { "facing": "east", "half": "top", @@ -64528,7 +74946,7 @@ } }, { - "id": 11017, + "id": 12801, "properties": { "facing": "east", "half": "top", @@ -64537,7 +74955,7 @@ } }, { - "id": 11018, + "id": 12802, "properties": { "facing": "east", "half": "top", @@ -64546,7 +74964,7 @@ } }, { - "id": 11019, + "id": 12803, "properties": { "facing": "east", "half": "top", @@ -64555,7 +74973,7 @@ } }, { - "id": 11020, + "id": 12804, "properties": { "facing": "east", "half": "bottom", @@ -64564,7 +74982,7 @@ } }, { - "id": 11021, + "id": 12805, "properties": { "facing": "east", "half": "bottom", @@ -64573,7 +74991,7 @@ } }, { - "id": 11022, + "id": 12806, "properties": { "facing": "east", "half": "bottom", @@ -64582,7 +75000,7 @@ } }, { - "id": 11023, + "id": 12807, "properties": { "facing": "east", "half": "bottom", @@ -64591,7 +75009,7 @@ } }, { - "id": 11024, + "id": 12808, "properties": { "facing": "east", "half": "bottom", @@ -64600,7 +75018,7 @@ } }, { - "id": 11025, + "id": 12809, "properties": { "facing": "east", "half": "bottom", @@ -64609,7 +75027,7 @@ } }, { - "id": 11026, + "id": 12810, "properties": { "facing": "east", "half": "bottom", @@ -64618,7 +75036,7 @@ } }, { - "id": 11027, + "id": 12811, "properties": { "facing": "east", "half": "bottom", @@ -64627,7 +75045,7 @@ } }, { - "id": 11028, + "id": 12812, "properties": { "facing": "east", "half": "bottom", @@ -64636,7 +75054,7 @@ } }, { - "id": 11029, + "id": 12813, "properties": { "facing": "east", "half": "bottom", @@ -64679,7 +75097,7 @@ }, "states": [ { - "id": 15312, + "id": 17096, "properties": { "east": "none", "north": "none", @@ -64690,7 +75108,7 @@ } }, { - "id": 15313, + "id": 17097, "properties": { "east": "none", "north": "none", @@ -64701,7 +75119,7 @@ } }, { - "id": 15314, + "id": 17098, "properties": { "east": "none", "north": "none", @@ -64713,7 +75131,7 @@ }, { "default": true, - "id": 15315, + "id": 17099, "properties": { "east": "none", "north": "none", @@ -64724,7 +75142,7 @@ } }, { - "id": 15316, + "id": 17100, "properties": { "east": "none", "north": "none", @@ -64735,7 +75153,7 @@ } }, { - "id": 15317, + "id": 17101, "properties": { "east": "none", "north": "none", @@ -64746,7 +75164,7 @@ } }, { - "id": 15318, + "id": 17102, "properties": { "east": "none", "north": "none", @@ -64757,7 +75175,7 @@ } }, { - "id": 15319, + "id": 17103, "properties": { "east": "none", "north": "none", @@ -64768,7 +75186,7 @@ } }, { - "id": 15320, + "id": 17104, "properties": { "east": "none", "north": "none", @@ -64779,7 +75197,7 @@ } }, { - "id": 15321, + "id": 17105, "properties": { "east": "none", "north": "none", @@ -64790,7 +75208,7 @@ } }, { - "id": 15322, + "id": 17106, "properties": { "east": "none", "north": "none", @@ -64801,7 +75219,7 @@ } }, { - "id": 15323, + "id": 17107, "properties": { "east": "none", "north": "none", @@ -64812,7 +75230,7 @@ } }, { - "id": 15324, + "id": 17108, "properties": { "east": "none", "north": "none", @@ -64823,7 +75241,7 @@ } }, { - "id": 15325, + "id": 17109, "properties": { "east": "none", "north": "none", @@ -64834,7 +75252,7 @@ } }, { - "id": 15326, + "id": 17110, "properties": { "east": "none", "north": "none", @@ -64845,7 +75263,7 @@ } }, { - "id": 15327, + "id": 17111, "properties": { "east": "none", "north": "none", @@ -64856,7 +75274,7 @@ } }, { - "id": 15328, + "id": 17112, "properties": { "east": "none", "north": "none", @@ -64867,7 +75285,7 @@ } }, { - "id": 15329, + "id": 17113, "properties": { "east": "none", "north": "none", @@ -64878,7 +75296,7 @@ } }, { - "id": 15330, + "id": 17114, "properties": { "east": "none", "north": "none", @@ -64889,7 +75307,7 @@ } }, { - "id": 15331, + "id": 17115, "properties": { "east": "none", "north": "none", @@ -64900,7 +75318,7 @@ } }, { - "id": 15332, + "id": 17116, "properties": { "east": "none", "north": "none", @@ -64911,7 +75329,7 @@ } }, { - "id": 15333, + "id": 17117, "properties": { "east": "none", "north": "none", @@ -64922,7 +75340,7 @@ } }, { - "id": 15334, + "id": 17118, "properties": { "east": "none", "north": "none", @@ -64933,7 +75351,7 @@ } }, { - "id": 15335, + "id": 17119, "properties": { "east": "none", "north": "none", @@ -64944,7 +75362,7 @@ } }, { - "id": 15336, + "id": 17120, "properties": { "east": "none", "north": "none", @@ -64955,7 +75373,7 @@ } }, { - "id": 15337, + "id": 17121, "properties": { "east": "none", "north": "none", @@ -64966,7 +75384,7 @@ } }, { - "id": 15338, + "id": 17122, "properties": { "east": "none", "north": "none", @@ -64977,7 +75395,7 @@ } }, { - "id": 15339, + "id": 17123, "properties": { "east": "none", "north": "none", @@ -64988,7 +75406,7 @@ } }, { - "id": 15340, + "id": 17124, "properties": { "east": "none", "north": "none", @@ -64999,7 +75417,7 @@ } }, { - "id": 15341, + "id": 17125, "properties": { "east": "none", "north": "none", @@ -65010,7 +75428,7 @@ } }, { - "id": 15342, + "id": 17126, "properties": { "east": "none", "north": "none", @@ -65021,7 +75439,7 @@ } }, { - "id": 15343, + "id": 17127, "properties": { "east": "none", "north": "none", @@ -65032,7 +75450,7 @@ } }, { - "id": 15344, + "id": 17128, "properties": { "east": "none", "north": "none", @@ -65043,7 +75461,7 @@ } }, { - "id": 15345, + "id": 17129, "properties": { "east": "none", "north": "none", @@ -65054,7 +75472,7 @@ } }, { - "id": 15346, + "id": 17130, "properties": { "east": "none", "north": "none", @@ -65065,7 +75483,7 @@ } }, { - "id": 15347, + "id": 17131, "properties": { "east": "none", "north": "none", @@ -65076,7 +75494,7 @@ } }, { - "id": 15348, + "id": 17132, "properties": { "east": "none", "north": "low", @@ -65087,7 +75505,7 @@ } }, { - "id": 15349, + "id": 17133, "properties": { "east": "none", "north": "low", @@ -65098,7 +75516,7 @@ } }, { - "id": 15350, + "id": 17134, "properties": { "east": "none", "north": "low", @@ -65109,7 +75527,7 @@ } }, { - "id": 15351, + "id": 17135, "properties": { "east": "none", "north": "low", @@ -65120,7 +75538,7 @@ } }, { - "id": 15352, + "id": 17136, "properties": { "east": "none", "north": "low", @@ -65131,7 +75549,7 @@ } }, { - "id": 15353, + "id": 17137, "properties": { "east": "none", "north": "low", @@ -65142,7 +75560,7 @@ } }, { - "id": 15354, + "id": 17138, "properties": { "east": "none", "north": "low", @@ -65153,7 +75571,7 @@ } }, { - "id": 15355, + "id": 17139, "properties": { "east": "none", "north": "low", @@ -65164,7 +75582,7 @@ } }, { - "id": 15356, + "id": 17140, "properties": { "east": "none", "north": "low", @@ -65175,7 +75593,7 @@ } }, { - "id": 15357, + "id": 17141, "properties": { "east": "none", "north": "low", @@ -65186,7 +75604,7 @@ } }, { - "id": 15358, + "id": 17142, "properties": { "east": "none", "north": "low", @@ -65197,7 +75615,7 @@ } }, { - "id": 15359, + "id": 17143, "properties": { "east": "none", "north": "low", @@ -65208,7 +75626,7 @@ } }, { - "id": 15360, + "id": 17144, "properties": { "east": "none", "north": "low", @@ -65219,7 +75637,7 @@ } }, { - "id": 15361, + "id": 17145, "properties": { "east": "none", "north": "low", @@ -65230,7 +75648,7 @@ } }, { - "id": 15362, + "id": 17146, "properties": { "east": "none", "north": "low", @@ -65241,7 +75659,7 @@ } }, { - "id": 15363, + "id": 17147, "properties": { "east": "none", "north": "low", @@ -65252,7 +75670,7 @@ } }, { - "id": 15364, + "id": 17148, "properties": { "east": "none", "north": "low", @@ -65263,7 +75681,7 @@ } }, { - "id": 15365, + "id": 17149, "properties": { "east": "none", "north": "low", @@ -65274,7 +75692,7 @@ } }, { - "id": 15366, + "id": 17150, "properties": { "east": "none", "north": "low", @@ -65285,7 +75703,7 @@ } }, { - "id": 15367, + "id": 17151, "properties": { "east": "none", "north": "low", @@ -65296,7 +75714,7 @@ } }, { - "id": 15368, + "id": 17152, "properties": { "east": "none", "north": "low", @@ -65307,7 +75725,7 @@ } }, { - "id": 15369, + "id": 17153, "properties": { "east": "none", "north": "low", @@ -65318,7 +75736,7 @@ } }, { - "id": 15370, + "id": 17154, "properties": { "east": "none", "north": "low", @@ -65329,7 +75747,7 @@ } }, { - "id": 15371, + "id": 17155, "properties": { "east": "none", "north": "low", @@ -65340,7 +75758,7 @@ } }, { - "id": 15372, + "id": 17156, "properties": { "east": "none", "north": "low", @@ -65351,7 +75769,7 @@ } }, { - "id": 15373, + "id": 17157, "properties": { "east": "none", "north": "low", @@ -65362,7 +75780,7 @@ } }, { - "id": 15374, + "id": 17158, "properties": { "east": "none", "north": "low", @@ -65373,7 +75791,7 @@ } }, { - "id": 15375, + "id": 17159, "properties": { "east": "none", "north": "low", @@ -65384,7 +75802,7 @@ } }, { - "id": 15376, + "id": 17160, "properties": { "east": "none", "north": "low", @@ -65395,7 +75813,7 @@ } }, { - "id": 15377, + "id": 17161, "properties": { "east": "none", "north": "low", @@ -65406,7 +75824,7 @@ } }, { - "id": 15378, + "id": 17162, "properties": { "east": "none", "north": "low", @@ -65417,7 +75835,7 @@ } }, { - "id": 15379, + "id": 17163, "properties": { "east": "none", "north": "low", @@ -65428,7 +75846,7 @@ } }, { - "id": 15380, + "id": 17164, "properties": { "east": "none", "north": "low", @@ -65439,7 +75857,7 @@ } }, { - "id": 15381, + "id": 17165, "properties": { "east": "none", "north": "low", @@ -65450,7 +75868,7 @@ } }, { - "id": 15382, + "id": 17166, "properties": { "east": "none", "north": "low", @@ -65461,7 +75879,7 @@ } }, { - "id": 15383, + "id": 17167, "properties": { "east": "none", "north": "low", @@ -65472,7 +75890,7 @@ } }, { - "id": 15384, + "id": 17168, "properties": { "east": "none", "north": "tall", @@ -65483,7 +75901,7 @@ } }, { - "id": 15385, + "id": 17169, "properties": { "east": "none", "north": "tall", @@ -65494,7 +75912,7 @@ } }, { - "id": 15386, + "id": 17170, "properties": { "east": "none", "north": "tall", @@ -65505,7 +75923,7 @@ } }, { - "id": 15387, + "id": 17171, "properties": { "east": "none", "north": "tall", @@ -65516,7 +75934,7 @@ } }, { - "id": 15388, + "id": 17172, "properties": { "east": "none", "north": "tall", @@ -65527,7 +75945,7 @@ } }, { - "id": 15389, + "id": 17173, "properties": { "east": "none", "north": "tall", @@ -65538,7 +75956,7 @@ } }, { - "id": 15390, + "id": 17174, "properties": { "east": "none", "north": "tall", @@ -65549,7 +75967,7 @@ } }, { - "id": 15391, + "id": 17175, "properties": { "east": "none", "north": "tall", @@ -65560,7 +75978,7 @@ } }, { - "id": 15392, + "id": 17176, "properties": { "east": "none", "north": "tall", @@ -65571,7 +75989,7 @@ } }, { - "id": 15393, + "id": 17177, "properties": { "east": "none", "north": "tall", @@ -65582,7 +76000,7 @@ } }, { - "id": 15394, + "id": 17178, "properties": { "east": "none", "north": "tall", @@ -65593,7 +76011,7 @@ } }, { - "id": 15395, + "id": 17179, "properties": { "east": "none", "north": "tall", @@ -65604,7 +76022,7 @@ } }, { - "id": 15396, + "id": 17180, "properties": { "east": "none", "north": "tall", @@ -65615,7 +76033,7 @@ } }, { - "id": 15397, + "id": 17181, "properties": { "east": "none", "north": "tall", @@ -65626,7 +76044,7 @@ } }, { - "id": 15398, + "id": 17182, "properties": { "east": "none", "north": "tall", @@ -65637,7 +76055,7 @@ } }, { - "id": 15399, + "id": 17183, "properties": { "east": "none", "north": "tall", @@ -65648,7 +76066,7 @@ } }, { - "id": 15400, + "id": 17184, "properties": { "east": "none", "north": "tall", @@ -65659,7 +76077,7 @@ } }, { - "id": 15401, + "id": 17185, "properties": { "east": "none", "north": "tall", @@ -65670,7 +76088,7 @@ } }, { - "id": 15402, + "id": 17186, "properties": { "east": "none", "north": "tall", @@ -65681,7 +76099,7 @@ } }, { - "id": 15403, + "id": 17187, "properties": { "east": "none", "north": "tall", @@ -65692,7 +76110,7 @@ } }, { - "id": 15404, + "id": 17188, "properties": { "east": "none", "north": "tall", @@ -65703,7 +76121,7 @@ } }, { - "id": 15405, + "id": 17189, "properties": { "east": "none", "north": "tall", @@ -65714,7 +76132,7 @@ } }, { - "id": 15406, + "id": 17190, "properties": { "east": "none", "north": "tall", @@ -65725,7 +76143,7 @@ } }, { - "id": 15407, + "id": 17191, "properties": { "east": "none", "north": "tall", @@ -65736,7 +76154,7 @@ } }, { - "id": 15408, + "id": 17192, "properties": { "east": "none", "north": "tall", @@ -65747,7 +76165,7 @@ } }, { - "id": 15409, + "id": 17193, "properties": { "east": "none", "north": "tall", @@ -65758,7 +76176,7 @@ } }, { - "id": 15410, + "id": 17194, "properties": { "east": "none", "north": "tall", @@ -65769,7 +76187,7 @@ } }, { - "id": 15411, + "id": 17195, "properties": { "east": "none", "north": "tall", @@ -65780,7 +76198,7 @@ } }, { - "id": 15412, + "id": 17196, "properties": { "east": "none", "north": "tall", @@ -65791,7 +76209,7 @@ } }, { - "id": 15413, + "id": 17197, "properties": { "east": "none", "north": "tall", @@ -65802,7 +76220,7 @@ } }, { - "id": 15414, + "id": 17198, "properties": { "east": "none", "north": "tall", @@ -65813,7 +76231,7 @@ } }, { - "id": 15415, + "id": 17199, "properties": { "east": "none", "north": "tall", @@ -65824,7 +76242,7 @@ } }, { - "id": 15416, + "id": 17200, "properties": { "east": "none", "north": "tall", @@ -65835,7 +76253,7 @@ } }, { - "id": 15417, + "id": 17201, "properties": { "east": "none", "north": "tall", @@ -65846,7 +76264,7 @@ } }, { - "id": 15418, + "id": 17202, "properties": { "east": "none", "north": "tall", @@ -65857,7 +76275,7 @@ } }, { - "id": 15419, + "id": 17203, "properties": { "east": "none", "north": "tall", @@ -65868,7 +76286,7 @@ } }, { - "id": 15420, + "id": 17204, "properties": { "east": "low", "north": "none", @@ -65879,7 +76297,7 @@ } }, { - "id": 15421, + "id": 17205, "properties": { "east": "low", "north": "none", @@ -65890,7 +76308,7 @@ } }, { - "id": 15422, + "id": 17206, "properties": { "east": "low", "north": "none", @@ -65901,7 +76319,7 @@ } }, { - "id": 15423, + "id": 17207, "properties": { "east": "low", "north": "none", @@ -65912,7 +76330,7 @@ } }, { - "id": 15424, + "id": 17208, "properties": { "east": "low", "north": "none", @@ -65923,7 +76341,7 @@ } }, { - "id": 15425, + "id": 17209, "properties": { "east": "low", "north": "none", @@ -65934,7 +76352,7 @@ } }, { - "id": 15426, + "id": 17210, "properties": { "east": "low", "north": "none", @@ -65945,7 +76363,7 @@ } }, { - "id": 15427, + "id": 17211, "properties": { "east": "low", "north": "none", @@ -65956,7 +76374,7 @@ } }, { - "id": 15428, + "id": 17212, "properties": { "east": "low", "north": "none", @@ -65967,7 +76385,7 @@ } }, { - "id": 15429, + "id": 17213, "properties": { "east": "low", "north": "none", @@ -65978,7 +76396,7 @@ } }, { - "id": 15430, + "id": 17214, "properties": { "east": "low", "north": "none", @@ -65989,7 +76407,7 @@ } }, { - "id": 15431, + "id": 17215, "properties": { "east": "low", "north": "none", @@ -66000,7 +76418,7 @@ } }, { - "id": 15432, + "id": 17216, "properties": { "east": "low", "north": "none", @@ -66011,7 +76429,7 @@ } }, { - "id": 15433, + "id": 17217, "properties": { "east": "low", "north": "none", @@ -66022,7 +76440,7 @@ } }, { - "id": 15434, + "id": 17218, "properties": { "east": "low", "north": "none", @@ -66033,7 +76451,7 @@ } }, { - "id": 15435, + "id": 17219, "properties": { "east": "low", "north": "none", @@ -66044,7 +76462,7 @@ } }, { - "id": 15436, + "id": 17220, "properties": { "east": "low", "north": "none", @@ -66055,7 +76473,7 @@ } }, { - "id": 15437, + "id": 17221, "properties": { "east": "low", "north": "none", @@ -66066,7 +76484,7 @@ } }, { - "id": 15438, + "id": 17222, "properties": { "east": "low", "north": "none", @@ -66077,7 +76495,7 @@ } }, { - "id": 15439, + "id": 17223, "properties": { "east": "low", "north": "none", @@ -66088,7 +76506,7 @@ } }, { - "id": 15440, + "id": 17224, "properties": { "east": "low", "north": "none", @@ -66099,7 +76517,7 @@ } }, { - "id": 15441, + "id": 17225, "properties": { "east": "low", "north": "none", @@ -66110,7 +76528,7 @@ } }, { - "id": 15442, + "id": 17226, "properties": { "east": "low", "north": "none", @@ -66121,7 +76539,7 @@ } }, { - "id": 15443, + "id": 17227, "properties": { "east": "low", "north": "none", @@ -66132,7 +76550,7 @@ } }, { - "id": 15444, + "id": 17228, "properties": { "east": "low", "north": "none", @@ -66143,7 +76561,7 @@ } }, { - "id": 15445, + "id": 17229, "properties": { "east": "low", "north": "none", @@ -66154,7 +76572,7 @@ } }, { - "id": 15446, + "id": 17230, "properties": { "east": "low", "north": "none", @@ -66165,7 +76583,7 @@ } }, { - "id": 15447, + "id": 17231, "properties": { "east": "low", "north": "none", @@ -66176,7 +76594,7 @@ } }, { - "id": 15448, + "id": 17232, "properties": { "east": "low", "north": "none", @@ -66187,7 +76605,7 @@ } }, { - "id": 15449, + "id": 17233, "properties": { "east": "low", "north": "none", @@ -66198,7 +76616,7 @@ } }, { - "id": 15450, + "id": 17234, "properties": { "east": "low", "north": "none", @@ -66209,7 +76627,7 @@ } }, { - "id": 15451, + "id": 17235, "properties": { "east": "low", "north": "none", @@ -66220,7 +76638,7 @@ } }, { - "id": 15452, + "id": 17236, "properties": { "east": "low", "north": "none", @@ -66231,7 +76649,7 @@ } }, { - "id": 15453, + "id": 17237, "properties": { "east": "low", "north": "none", @@ -66242,7 +76660,7 @@ } }, { - "id": 15454, + "id": 17238, "properties": { "east": "low", "north": "none", @@ -66253,7 +76671,7 @@ } }, { - "id": 15455, + "id": 17239, "properties": { "east": "low", "north": "none", @@ -66264,7 +76682,7 @@ } }, { - "id": 15456, + "id": 17240, "properties": { "east": "low", "north": "low", @@ -66275,7 +76693,7 @@ } }, { - "id": 15457, + "id": 17241, "properties": { "east": "low", "north": "low", @@ -66286,7 +76704,7 @@ } }, { - "id": 15458, + "id": 17242, "properties": { "east": "low", "north": "low", @@ -66297,7 +76715,7 @@ } }, { - "id": 15459, + "id": 17243, "properties": { "east": "low", "north": "low", @@ -66308,7 +76726,7 @@ } }, { - "id": 15460, + "id": 17244, "properties": { "east": "low", "north": "low", @@ -66319,7 +76737,7 @@ } }, { - "id": 15461, + "id": 17245, "properties": { "east": "low", "north": "low", @@ -66330,7 +76748,7 @@ } }, { - "id": 15462, + "id": 17246, "properties": { "east": "low", "north": "low", @@ -66341,7 +76759,7 @@ } }, { - "id": 15463, + "id": 17247, "properties": { "east": "low", "north": "low", @@ -66352,7 +76770,7 @@ } }, { - "id": 15464, + "id": 17248, "properties": { "east": "low", "north": "low", @@ -66363,7 +76781,7 @@ } }, { - "id": 15465, + "id": 17249, "properties": { "east": "low", "north": "low", @@ -66374,7 +76792,7 @@ } }, { - "id": 15466, + "id": 17250, "properties": { "east": "low", "north": "low", @@ -66385,7 +76803,7 @@ } }, { - "id": 15467, + "id": 17251, "properties": { "east": "low", "north": "low", @@ -66396,7 +76814,7 @@ } }, { - "id": 15468, + "id": 17252, "properties": { "east": "low", "north": "low", @@ -66407,7 +76825,7 @@ } }, { - "id": 15469, + "id": 17253, "properties": { "east": "low", "north": "low", @@ -66418,7 +76836,7 @@ } }, { - "id": 15470, + "id": 17254, "properties": { "east": "low", "north": "low", @@ -66429,7 +76847,7 @@ } }, { - "id": 15471, + "id": 17255, "properties": { "east": "low", "north": "low", @@ -66440,7 +76858,7 @@ } }, { - "id": 15472, + "id": 17256, "properties": { "east": "low", "north": "low", @@ -66451,7 +76869,7 @@ } }, { - "id": 15473, + "id": 17257, "properties": { "east": "low", "north": "low", @@ -66462,7 +76880,7 @@ } }, { - "id": 15474, + "id": 17258, "properties": { "east": "low", "north": "low", @@ -66473,7 +76891,7 @@ } }, { - "id": 15475, + "id": 17259, "properties": { "east": "low", "north": "low", @@ -66484,7 +76902,7 @@ } }, { - "id": 15476, + "id": 17260, "properties": { "east": "low", "north": "low", @@ -66495,7 +76913,7 @@ } }, { - "id": 15477, + "id": 17261, "properties": { "east": "low", "north": "low", @@ -66506,7 +76924,7 @@ } }, { - "id": 15478, + "id": 17262, "properties": { "east": "low", "north": "low", @@ -66517,7 +76935,7 @@ } }, { - "id": 15479, + "id": 17263, "properties": { "east": "low", "north": "low", @@ -66528,7 +76946,7 @@ } }, { - "id": 15480, + "id": 17264, "properties": { "east": "low", "north": "low", @@ -66539,7 +76957,7 @@ } }, { - "id": 15481, + "id": 17265, "properties": { "east": "low", "north": "low", @@ -66550,7 +76968,7 @@ } }, { - "id": 15482, + "id": 17266, "properties": { "east": "low", "north": "low", @@ -66561,7 +76979,7 @@ } }, { - "id": 15483, + "id": 17267, "properties": { "east": "low", "north": "low", @@ -66572,7 +76990,7 @@ } }, { - "id": 15484, + "id": 17268, "properties": { "east": "low", "north": "low", @@ -66583,7 +77001,7 @@ } }, { - "id": 15485, + "id": 17269, "properties": { "east": "low", "north": "low", @@ -66594,7 +77012,7 @@ } }, { - "id": 15486, + "id": 17270, "properties": { "east": "low", "north": "low", @@ -66605,7 +77023,7 @@ } }, { - "id": 15487, + "id": 17271, "properties": { "east": "low", "north": "low", @@ -66616,7 +77034,7 @@ } }, { - "id": 15488, + "id": 17272, "properties": { "east": "low", "north": "low", @@ -66627,7 +77045,7 @@ } }, { - "id": 15489, + "id": 17273, "properties": { "east": "low", "north": "low", @@ -66638,7 +77056,7 @@ } }, { - "id": 15490, + "id": 17274, "properties": { "east": "low", "north": "low", @@ -66649,7 +77067,7 @@ } }, { - "id": 15491, + "id": 17275, "properties": { "east": "low", "north": "low", @@ -66660,7 +77078,7 @@ } }, { - "id": 15492, + "id": 17276, "properties": { "east": "low", "north": "tall", @@ -66671,7 +77089,7 @@ } }, { - "id": 15493, + "id": 17277, "properties": { "east": "low", "north": "tall", @@ -66682,7 +77100,7 @@ } }, { - "id": 15494, + "id": 17278, "properties": { "east": "low", "north": "tall", @@ -66693,7 +77111,7 @@ } }, { - "id": 15495, + "id": 17279, "properties": { "east": "low", "north": "tall", @@ -66704,7 +77122,7 @@ } }, { - "id": 15496, + "id": 17280, "properties": { "east": "low", "north": "tall", @@ -66715,7 +77133,7 @@ } }, { - "id": 15497, + "id": 17281, "properties": { "east": "low", "north": "tall", @@ -66726,7 +77144,7 @@ } }, { - "id": 15498, + "id": 17282, "properties": { "east": "low", "north": "tall", @@ -66737,7 +77155,7 @@ } }, { - "id": 15499, + "id": 17283, "properties": { "east": "low", "north": "tall", @@ -66748,7 +77166,7 @@ } }, { - "id": 15500, + "id": 17284, "properties": { "east": "low", "north": "tall", @@ -66759,7 +77177,7 @@ } }, { - "id": 15501, + "id": 17285, "properties": { "east": "low", "north": "tall", @@ -66770,7 +77188,7 @@ } }, { - "id": 15502, + "id": 17286, "properties": { "east": "low", "north": "tall", @@ -66781,7 +77199,7 @@ } }, { - "id": 15503, + "id": 17287, "properties": { "east": "low", "north": "tall", @@ -66792,7 +77210,7 @@ } }, { - "id": 15504, + "id": 17288, "properties": { "east": "low", "north": "tall", @@ -66803,7 +77221,7 @@ } }, { - "id": 15505, + "id": 17289, "properties": { "east": "low", "north": "tall", @@ -66814,7 +77232,7 @@ } }, { - "id": 15506, + "id": 17290, "properties": { "east": "low", "north": "tall", @@ -66825,7 +77243,7 @@ } }, { - "id": 15507, + "id": 17291, "properties": { "east": "low", "north": "tall", @@ -66836,7 +77254,7 @@ } }, { - "id": 15508, + "id": 17292, "properties": { "east": "low", "north": "tall", @@ -66847,7 +77265,7 @@ } }, { - "id": 15509, + "id": 17293, "properties": { "east": "low", "north": "tall", @@ -66858,7 +77276,7 @@ } }, { - "id": 15510, + "id": 17294, "properties": { "east": "low", "north": "tall", @@ -66869,7 +77287,7 @@ } }, { - "id": 15511, + "id": 17295, "properties": { "east": "low", "north": "tall", @@ -66880,7 +77298,7 @@ } }, { - "id": 15512, + "id": 17296, "properties": { "east": "low", "north": "tall", @@ -66891,7 +77309,7 @@ } }, { - "id": 15513, + "id": 17297, "properties": { "east": "low", "north": "tall", @@ -66902,7 +77320,7 @@ } }, { - "id": 15514, + "id": 17298, "properties": { "east": "low", "north": "tall", @@ -66913,7 +77331,7 @@ } }, { - "id": 15515, + "id": 17299, "properties": { "east": "low", "north": "tall", @@ -66924,7 +77342,7 @@ } }, { - "id": 15516, + "id": 17300, "properties": { "east": "low", "north": "tall", @@ -66935,7 +77353,7 @@ } }, { - "id": 15517, + "id": 17301, "properties": { "east": "low", "north": "tall", @@ -66946,7 +77364,7 @@ } }, { - "id": 15518, + "id": 17302, "properties": { "east": "low", "north": "tall", @@ -66957,7 +77375,7 @@ } }, { - "id": 15519, + "id": 17303, "properties": { "east": "low", "north": "tall", @@ -66968,7 +77386,7 @@ } }, { - "id": 15520, + "id": 17304, "properties": { "east": "low", "north": "tall", @@ -66979,7 +77397,7 @@ } }, { - "id": 15521, + "id": 17305, "properties": { "east": "low", "north": "tall", @@ -66990,7 +77408,7 @@ } }, { - "id": 15522, + "id": 17306, "properties": { "east": "low", "north": "tall", @@ -67001,7 +77419,7 @@ } }, { - "id": 15523, + "id": 17307, "properties": { "east": "low", "north": "tall", @@ -67012,7 +77430,7 @@ } }, { - "id": 15524, + "id": 17308, "properties": { "east": "low", "north": "tall", @@ -67023,7 +77441,7 @@ } }, { - "id": 15525, + "id": 17309, "properties": { "east": "low", "north": "tall", @@ -67034,7 +77452,7 @@ } }, { - "id": 15526, + "id": 17310, "properties": { "east": "low", "north": "tall", @@ -67045,7 +77463,7 @@ } }, { - "id": 15527, + "id": 17311, "properties": { "east": "low", "north": "tall", @@ -67056,7 +77474,7 @@ } }, { - "id": 15528, + "id": 17312, "properties": { "east": "tall", "north": "none", @@ -67067,7 +77485,7 @@ } }, { - "id": 15529, + "id": 17313, "properties": { "east": "tall", "north": "none", @@ -67078,7 +77496,7 @@ } }, { - "id": 15530, + "id": 17314, "properties": { "east": "tall", "north": "none", @@ -67089,7 +77507,7 @@ } }, { - "id": 15531, + "id": 17315, "properties": { "east": "tall", "north": "none", @@ -67100,7 +77518,7 @@ } }, { - "id": 15532, + "id": 17316, "properties": { "east": "tall", "north": "none", @@ -67111,7 +77529,7 @@ } }, { - "id": 15533, + "id": 17317, "properties": { "east": "tall", "north": "none", @@ -67122,7 +77540,7 @@ } }, { - "id": 15534, + "id": 17318, "properties": { "east": "tall", "north": "none", @@ -67133,7 +77551,7 @@ } }, { - "id": 15535, + "id": 17319, "properties": { "east": "tall", "north": "none", @@ -67144,7 +77562,7 @@ } }, { - "id": 15536, + "id": 17320, "properties": { "east": "tall", "north": "none", @@ -67155,7 +77573,7 @@ } }, { - "id": 15537, + "id": 17321, "properties": { "east": "tall", "north": "none", @@ -67166,7 +77584,7 @@ } }, { - "id": 15538, + "id": 17322, "properties": { "east": "tall", "north": "none", @@ -67177,7 +77595,7 @@ } }, { - "id": 15539, + "id": 17323, "properties": { "east": "tall", "north": "none", @@ -67188,7 +77606,7 @@ } }, { - "id": 15540, + "id": 17324, "properties": { "east": "tall", "north": "none", @@ -67199,7 +77617,7 @@ } }, { - "id": 15541, + "id": 17325, "properties": { "east": "tall", "north": "none", @@ -67210,7 +77628,7 @@ } }, { - "id": 15542, + "id": 17326, "properties": { "east": "tall", "north": "none", @@ -67221,7 +77639,7 @@ } }, { - "id": 15543, + "id": 17327, "properties": { "east": "tall", "north": "none", @@ -67232,7 +77650,7 @@ } }, { - "id": 15544, + "id": 17328, "properties": { "east": "tall", "north": "none", @@ -67243,7 +77661,7 @@ } }, { - "id": 15545, + "id": 17329, "properties": { "east": "tall", "north": "none", @@ -67254,7 +77672,7 @@ } }, { - "id": 15546, + "id": 17330, "properties": { "east": "tall", "north": "none", @@ -67265,7 +77683,7 @@ } }, { - "id": 15547, + "id": 17331, "properties": { "east": "tall", "north": "none", @@ -67276,7 +77694,7 @@ } }, { - "id": 15548, + "id": 17332, "properties": { "east": "tall", "north": "none", @@ -67287,7 +77705,7 @@ } }, { - "id": 15549, + "id": 17333, "properties": { "east": "tall", "north": "none", @@ -67298,7 +77716,7 @@ } }, { - "id": 15550, + "id": 17334, "properties": { "east": "tall", "north": "none", @@ -67309,7 +77727,7 @@ } }, { - "id": 15551, + "id": 17335, "properties": { "east": "tall", "north": "none", @@ -67320,7 +77738,7 @@ } }, { - "id": 15552, + "id": 17336, "properties": { "east": "tall", "north": "none", @@ -67331,7 +77749,7 @@ } }, { - "id": 15553, + "id": 17337, "properties": { "east": "tall", "north": "none", @@ -67342,7 +77760,7 @@ } }, { - "id": 15554, + "id": 17338, "properties": { "east": "tall", "north": "none", @@ -67353,7 +77771,7 @@ } }, { - "id": 15555, + "id": 17339, "properties": { "east": "tall", "north": "none", @@ -67364,7 +77782,7 @@ } }, { - "id": 15556, + "id": 17340, "properties": { "east": "tall", "north": "none", @@ -67375,7 +77793,7 @@ } }, { - "id": 15557, + "id": 17341, "properties": { "east": "tall", "north": "none", @@ -67386,7 +77804,7 @@ } }, { - "id": 15558, + "id": 17342, "properties": { "east": "tall", "north": "none", @@ -67397,7 +77815,7 @@ } }, { - "id": 15559, + "id": 17343, "properties": { "east": "tall", "north": "none", @@ -67408,7 +77826,7 @@ } }, { - "id": 15560, + "id": 17344, "properties": { "east": "tall", "north": "none", @@ -67419,7 +77837,7 @@ } }, { - "id": 15561, + "id": 17345, "properties": { "east": "tall", "north": "none", @@ -67430,7 +77848,7 @@ } }, { - "id": 15562, + "id": 17346, "properties": { "east": "tall", "north": "none", @@ -67441,7 +77859,7 @@ } }, { - "id": 15563, + "id": 17347, "properties": { "east": "tall", "north": "none", @@ -67452,7 +77870,7 @@ } }, { - "id": 15564, + "id": 17348, "properties": { "east": "tall", "north": "low", @@ -67463,7 +77881,7 @@ } }, { - "id": 15565, + "id": 17349, "properties": { "east": "tall", "north": "low", @@ -67474,7 +77892,7 @@ } }, { - "id": 15566, + "id": 17350, "properties": { "east": "tall", "north": "low", @@ -67485,7 +77903,7 @@ } }, { - "id": 15567, + "id": 17351, "properties": { "east": "tall", "north": "low", @@ -67496,7 +77914,7 @@ } }, { - "id": 15568, + "id": 17352, "properties": { "east": "tall", "north": "low", @@ -67507,7 +77925,7 @@ } }, { - "id": 15569, + "id": 17353, "properties": { "east": "tall", "north": "low", @@ -67518,7 +77936,7 @@ } }, { - "id": 15570, + "id": 17354, "properties": { "east": "tall", "north": "low", @@ -67529,7 +77947,7 @@ } }, { - "id": 15571, + "id": 17355, "properties": { "east": "tall", "north": "low", @@ -67540,7 +77958,7 @@ } }, { - "id": 15572, + "id": 17356, "properties": { "east": "tall", "north": "low", @@ -67551,7 +77969,7 @@ } }, { - "id": 15573, + "id": 17357, "properties": { "east": "tall", "north": "low", @@ -67562,7 +77980,7 @@ } }, { - "id": 15574, + "id": 17358, "properties": { "east": "tall", "north": "low", @@ -67573,7 +77991,7 @@ } }, { - "id": 15575, + "id": 17359, "properties": { "east": "tall", "north": "low", @@ -67584,7 +78002,7 @@ } }, { - "id": 15576, + "id": 17360, "properties": { "east": "tall", "north": "low", @@ -67595,7 +78013,7 @@ } }, { - "id": 15577, + "id": 17361, "properties": { "east": "tall", "north": "low", @@ -67606,7 +78024,7 @@ } }, { - "id": 15578, + "id": 17362, "properties": { "east": "tall", "north": "low", @@ -67617,7 +78035,7 @@ } }, { - "id": 15579, + "id": 17363, "properties": { "east": "tall", "north": "low", @@ -67628,7 +78046,7 @@ } }, { - "id": 15580, + "id": 17364, "properties": { "east": "tall", "north": "low", @@ -67639,7 +78057,7 @@ } }, { - "id": 15581, + "id": 17365, "properties": { "east": "tall", "north": "low", @@ -67650,7 +78068,7 @@ } }, { - "id": 15582, + "id": 17366, "properties": { "east": "tall", "north": "low", @@ -67661,7 +78079,7 @@ } }, { - "id": 15583, + "id": 17367, "properties": { "east": "tall", "north": "low", @@ -67672,7 +78090,7 @@ } }, { - "id": 15584, + "id": 17368, "properties": { "east": "tall", "north": "low", @@ -67683,7 +78101,7 @@ } }, { - "id": 15585, + "id": 17369, "properties": { "east": "tall", "north": "low", @@ -67694,7 +78112,7 @@ } }, { - "id": 15586, + "id": 17370, "properties": { "east": "tall", "north": "low", @@ -67705,7 +78123,7 @@ } }, { - "id": 15587, + "id": 17371, "properties": { "east": "tall", "north": "low", @@ -67716,7 +78134,7 @@ } }, { - "id": 15588, + "id": 17372, "properties": { "east": "tall", "north": "low", @@ -67727,7 +78145,7 @@ } }, { - "id": 15589, + "id": 17373, "properties": { "east": "tall", "north": "low", @@ -67738,7 +78156,7 @@ } }, { - "id": 15590, + "id": 17374, "properties": { "east": "tall", "north": "low", @@ -67749,7 +78167,7 @@ } }, { - "id": 15591, + "id": 17375, "properties": { "east": "tall", "north": "low", @@ -67760,7 +78178,7 @@ } }, { - "id": 15592, + "id": 17376, "properties": { "east": "tall", "north": "low", @@ -67771,7 +78189,7 @@ } }, { - "id": 15593, + "id": 17377, "properties": { "east": "tall", "north": "low", @@ -67782,7 +78200,7 @@ } }, { - "id": 15594, + "id": 17378, "properties": { "east": "tall", "north": "low", @@ -67793,7 +78211,7 @@ } }, { - "id": 15595, + "id": 17379, "properties": { "east": "tall", "north": "low", @@ -67804,7 +78222,7 @@ } }, { - "id": 15596, + "id": 17380, "properties": { "east": "tall", "north": "low", @@ -67815,7 +78233,7 @@ } }, { - "id": 15597, + "id": 17381, "properties": { "east": "tall", "north": "low", @@ -67826,7 +78244,7 @@ } }, { - "id": 15598, + "id": 17382, "properties": { "east": "tall", "north": "low", @@ -67837,7 +78255,7 @@ } }, { - "id": 15599, + "id": 17383, "properties": { "east": "tall", "north": "low", @@ -67848,7 +78266,7 @@ } }, { - "id": 15600, + "id": 17384, "properties": { "east": "tall", "north": "tall", @@ -67859,7 +78277,7 @@ } }, { - "id": 15601, + "id": 17385, "properties": { "east": "tall", "north": "tall", @@ -67870,7 +78288,7 @@ } }, { - "id": 15602, + "id": 17386, "properties": { "east": "tall", "north": "tall", @@ -67881,7 +78299,7 @@ } }, { - "id": 15603, + "id": 17387, "properties": { "east": "tall", "north": "tall", @@ -67892,7 +78310,7 @@ } }, { - "id": 15604, + "id": 17388, "properties": { "east": "tall", "north": "tall", @@ -67903,7 +78321,7 @@ } }, { - "id": 15605, + "id": 17389, "properties": { "east": "tall", "north": "tall", @@ -67914,7 +78332,7 @@ } }, { - "id": 15606, + "id": 17390, "properties": { "east": "tall", "north": "tall", @@ -67925,7 +78343,7 @@ } }, { - "id": 15607, + "id": 17391, "properties": { "east": "tall", "north": "tall", @@ -67936,7 +78354,7 @@ } }, { - "id": 15608, + "id": 17392, "properties": { "east": "tall", "north": "tall", @@ -67947,7 +78365,7 @@ } }, { - "id": 15609, + "id": 17393, "properties": { "east": "tall", "north": "tall", @@ -67958,7 +78376,7 @@ } }, { - "id": 15610, + "id": 17394, "properties": { "east": "tall", "north": "tall", @@ -67969,7 +78387,7 @@ } }, { - "id": 15611, + "id": 17395, "properties": { "east": "tall", "north": "tall", @@ -67980,7 +78398,7 @@ } }, { - "id": 15612, + "id": 17396, "properties": { "east": "tall", "north": "tall", @@ -67991,7 +78409,7 @@ } }, { - "id": 15613, + "id": 17397, "properties": { "east": "tall", "north": "tall", @@ -68002,7 +78420,7 @@ } }, { - "id": 15614, + "id": 17398, "properties": { "east": "tall", "north": "tall", @@ -68013,7 +78431,7 @@ } }, { - "id": 15615, + "id": 17399, "properties": { "east": "tall", "north": "tall", @@ -68024,7 +78442,7 @@ } }, { - "id": 15616, + "id": 17400, "properties": { "east": "tall", "north": "tall", @@ -68035,7 +78453,7 @@ } }, { - "id": 15617, + "id": 17401, "properties": { "east": "tall", "north": "tall", @@ -68046,7 +78464,7 @@ } }, { - "id": 15618, + "id": 17402, "properties": { "east": "tall", "north": "tall", @@ -68057,7 +78475,7 @@ } }, { - "id": 15619, + "id": 17403, "properties": { "east": "tall", "north": "tall", @@ -68068,7 +78486,7 @@ } }, { - "id": 15620, + "id": 17404, "properties": { "east": "tall", "north": "tall", @@ -68079,7 +78497,7 @@ } }, { - "id": 15621, + "id": 17405, "properties": { "east": "tall", "north": "tall", @@ -68090,7 +78508,7 @@ } }, { - "id": 15622, + "id": 17406, "properties": { "east": "tall", "north": "tall", @@ -68101,7 +78519,7 @@ } }, { - "id": 15623, + "id": 17407, "properties": { "east": "tall", "north": "tall", @@ -68112,7 +78530,7 @@ } }, { - "id": 15624, + "id": 17408, "properties": { "east": "tall", "north": "tall", @@ -68123,7 +78541,7 @@ } }, { - "id": 15625, + "id": 17409, "properties": { "east": "tall", "north": "tall", @@ -68134,7 +78552,7 @@ } }, { - "id": 15626, + "id": 17410, "properties": { "east": "tall", "north": "tall", @@ -68145,7 +78563,7 @@ } }, { - "id": 15627, + "id": 17411, "properties": { "east": "tall", "north": "tall", @@ -68156,7 +78574,7 @@ } }, { - "id": 15628, + "id": 17412, "properties": { "east": "tall", "north": "tall", @@ -68167,7 +78585,7 @@ } }, { - "id": 15629, + "id": 17413, "properties": { "east": "tall", "north": "tall", @@ -68178,7 +78596,7 @@ } }, { - "id": 15630, + "id": 17414, "properties": { "east": "tall", "north": "tall", @@ -68189,7 +78607,7 @@ } }, { - "id": 15631, + "id": 17415, "properties": { "east": "tall", "north": "tall", @@ -68200,7 +78618,7 @@ } }, { - "id": 15632, + "id": 17416, "properties": { "east": "tall", "north": "tall", @@ -68211,7 +78629,7 @@ } }, { - "id": 15633, + "id": 17417, "properties": { "east": "tall", "north": "tall", @@ -68222,7 +78640,7 @@ } }, { - "id": 15634, + "id": 17418, "properties": { "east": "tall", "north": "tall", @@ -68233,7 +78651,7 @@ } }, { - "id": 15635, + "id": 17419, "properties": { "east": "tall", "north": "tall", @@ -68249,7 +78667,7 @@ "states": [ { "default": true, - "id": 10099 + "id": 11883 } ] }, @@ -68268,7 +78686,7 @@ }, "states": [ { - "id": 5843, + "id": 7283, "properties": { "facing": "north", "waterlogged": "true" @@ -68276,49 +78694,49 @@ }, { "default": true, - "id": 5844, + "id": 7284, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5845, + "id": 7285, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5846, + "id": 7286, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5847, + "id": 7287, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5848, + "id": 7288, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5849, + "id": 7289, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5850, + "id": 7290, "properties": { "facing": "east", "waterlogged": "false" @@ -68330,7 +78748,7 @@ "states": [ { "default": true, - "id": 18910 + "id": 20694 } ] }, @@ -68338,7 +78756,7 @@ "states": [ { "default": true, - "id": 18916 + "id": 20700 } ] }, @@ -68356,21 +78774,21 @@ }, "states": [ { - "id": 19250, + "id": 21034, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 19251, + "id": 21035, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 19252, + "id": 21036, "properties": { "type": "bottom", "waterlogged": "true" @@ -68378,21 +78796,21 @@ }, { "default": true, - "id": 19253, + "id": 21037, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 19254, + "id": 21038, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 19255, + "id": 21039, "properties": { "type": "double", "waterlogged": "false" @@ -68426,7 +78844,7 @@ }, "states": [ { - "id": 19078, + "id": 20862, "properties": { "facing": "north", "half": "top", @@ -68435,7 +78853,7 @@ } }, { - "id": 19079, + "id": 20863, "properties": { "facing": "north", "half": "top", @@ -68444,7 +78862,7 @@ } }, { - "id": 19080, + "id": 20864, "properties": { "facing": "north", "half": "top", @@ -68453,7 +78871,7 @@ } }, { - "id": 19081, + "id": 20865, "properties": { "facing": "north", "half": "top", @@ -68462,7 +78880,7 @@ } }, { - "id": 19082, + "id": 20866, "properties": { "facing": "north", "half": "top", @@ -68471,7 +78889,7 @@ } }, { - "id": 19083, + "id": 20867, "properties": { "facing": "north", "half": "top", @@ -68480,7 +78898,7 @@ } }, { - "id": 19084, + "id": 20868, "properties": { "facing": "north", "half": "top", @@ -68489,7 +78907,7 @@ } }, { - "id": 19085, + "id": 20869, "properties": { "facing": "north", "half": "top", @@ -68498,7 +78916,7 @@ } }, { - "id": 19086, + "id": 20870, "properties": { "facing": "north", "half": "top", @@ -68507,7 +78925,7 @@ } }, { - "id": 19087, + "id": 20871, "properties": { "facing": "north", "half": "top", @@ -68516,7 +78934,7 @@ } }, { - "id": 19088, + "id": 20872, "properties": { "facing": "north", "half": "bottom", @@ -68526,7 +78944,7 @@ }, { "default": true, - "id": 19089, + "id": 20873, "properties": { "facing": "north", "half": "bottom", @@ -68535,7 +78953,7 @@ } }, { - "id": 19090, + "id": 20874, "properties": { "facing": "north", "half": "bottom", @@ -68544,7 +78962,7 @@ } }, { - "id": 19091, + "id": 20875, "properties": { "facing": "north", "half": "bottom", @@ -68553,7 +78971,7 @@ } }, { - "id": 19092, + "id": 20876, "properties": { "facing": "north", "half": "bottom", @@ -68562,7 +78980,7 @@ } }, { - "id": 19093, + "id": 20877, "properties": { "facing": "north", "half": "bottom", @@ -68571,7 +78989,7 @@ } }, { - "id": 19094, + "id": 20878, "properties": { "facing": "north", "half": "bottom", @@ -68580,7 +78998,7 @@ } }, { - "id": 19095, + "id": 20879, "properties": { "facing": "north", "half": "bottom", @@ -68589,7 +79007,7 @@ } }, { - "id": 19096, + "id": 20880, "properties": { "facing": "north", "half": "bottom", @@ -68598,7 +79016,7 @@ } }, { - "id": 19097, + "id": 20881, "properties": { "facing": "north", "half": "bottom", @@ -68607,7 +79025,7 @@ } }, { - "id": 19098, + "id": 20882, "properties": { "facing": "south", "half": "top", @@ -68616,7 +79034,7 @@ } }, { - "id": 19099, + "id": 20883, "properties": { "facing": "south", "half": "top", @@ -68625,7 +79043,7 @@ } }, { - "id": 19100, + "id": 20884, "properties": { "facing": "south", "half": "top", @@ -68634,7 +79052,7 @@ } }, { - "id": 19101, + "id": 20885, "properties": { "facing": "south", "half": "top", @@ -68643,7 +79061,7 @@ } }, { - "id": 19102, + "id": 20886, "properties": { "facing": "south", "half": "top", @@ -68652,7 +79070,7 @@ } }, { - "id": 19103, + "id": 20887, "properties": { "facing": "south", "half": "top", @@ -68661,7 +79079,7 @@ } }, { - "id": 19104, + "id": 20888, "properties": { "facing": "south", "half": "top", @@ -68670,7 +79088,7 @@ } }, { - "id": 19105, + "id": 20889, "properties": { "facing": "south", "half": "top", @@ -68679,7 +79097,7 @@ } }, { - "id": 19106, + "id": 20890, "properties": { "facing": "south", "half": "top", @@ -68688,7 +79106,7 @@ } }, { - "id": 19107, + "id": 20891, "properties": { "facing": "south", "half": "top", @@ -68697,7 +79115,7 @@ } }, { - "id": 19108, + "id": 20892, "properties": { "facing": "south", "half": "bottom", @@ -68706,7 +79124,7 @@ } }, { - "id": 19109, + "id": 20893, "properties": { "facing": "south", "half": "bottom", @@ -68715,7 +79133,7 @@ } }, { - "id": 19110, + "id": 20894, "properties": { "facing": "south", "half": "bottom", @@ -68724,7 +79142,7 @@ } }, { - "id": 19111, + "id": 20895, "properties": { "facing": "south", "half": "bottom", @@ -68733,7 +79151,7 @@ } }, { - "id": 19112, + "id": 20896, "properties": { "facing": "south", "half": "bottom", @@ -68742,7 +79160,7 @@ } }, { - "id": 19113, + "id": 20897, "properties": { "facing": "south", "half": "bottom", @@ -68751,7 +79169,7 @@ } }, { - "id": 19114, + "id": 20898, "properties": { "facing": "south", "half": "bottom", @@ -68760,7 +79178,7 @@ } }, { - "id": 19115, + "id": 20899, "properties": { "facing": "south", "half": "bottom", @@ -68769,7 +79187,7 @@ } }, { - "id": 19116, + "id": 20900, "properties": { "facing": "south", "half": "bottom", @@ -68778,7 +79196,7 @@ } }, { - "id": 19117, + "id": 20901, "properties": { "facing": "south", "half": "bottom", @@ -68787,7 +79205,7 @@ } }, { - "id": 19118, + "id": 20902, "properties": { "facing": "west", "half": "top", @@ -68796,7 +79214,7 @@ } }, { - "id": 19119, + "id": 20903, "properties": { "facing": "west", "half": "top", @@ -68805,7 +79223,7 @@ } }, { - "id": 19120, + "id": 20904, "properties": { "facing": "west", "half": "top", @@ -68814,7 +79232,7 @@ } }, { - "id": 19121, + "id": 20905, "properties": { "facing": "west", "half": "top", @@ -68823,7 +79241,7 @@ } }, { - "id": 19122, + "id": 20906, "properties": { "facing": "west", "half": "top", @@ -68832,7 +79250,7 @@ } }, { - "id": 19123, + "id": 20907, "properties": { "facing": "west", "half": "top", @@ -68841,7 +79259,7 @@ } }, { - "id": 19124, + "id": 20908, "properties": { "facing": "west", "half": "top", @@ -68850,7 +79268,7 @@ } }, { - "id": 19125, + "id": 20909, "properties": { "facing": "west", "half": "top", @@ -68859,7 +79277,7 @@ } }, { - "id": 19126, + "id": 20910, "properties": { "facing": "west", "half": "top", @@ -68868,7 +79286,7 @@ } }, { - "id": 19127, + "id": 20911, "properties": { "facing": "west", "half": "top", @@ -68877,7 +79295,7 @@ } }, { - "id": 19128, + "id": 20912, "properties": { "facing": "west", "half": "bottom", @@ -68886,7 +79304,7 @@ } }, { - "id": 19129, + "id": 20913, "properties": { "facing": "west", "half": "bottom", @@ -68895,7 +79313,7 @@ } }, { - "id": 19130, + "id": 20914, "properties": { "facing": "west", "half": "bottom", @@ -68904,7 +79322,7 @@ } }, { - "id": 19131, + "id": 20915, "properties": { "facing": "west", "half": "bottom", @@ -68913,7 +79331,7 @@ } }, { - "id": 19132, + "id": 20916, "properties": { "facing": "west", "half": "bottom", @@ -68922,7 +79340,7 @@ } }, { - "id": 19133, + "id": 20917, "properties": { "facing": "west", "half": "bottom", @@ -68931,7 +79349,7 @@ } }, { - "id": 19134, + "id": 20918, "properties": { "facing": "west", "half": "bottom", @@ -68940,7 +79358,7 @@ } }, { - "id": 19135, + "id": 20919, "properties": { "facing": "west", "half": "bottom", @@ -68949,7 +79367,7 @@ } }, { - "id": 19136, + "id": 20920, "properties": { "facing": "west", "half": "bottom", @@ -68958,7 +79376,7 @@ } }, { - "id": 19137, + "id": 20921, "properties": { "facing": "west", "half": "bottom", @@ -68967,7 +79385,7 @@ } }, { - "id": 19138, + "id": 20922, "properties": { "facing": "east", "half": "top", @@ -68976,7 +79394,7 @@ } }, { - "id": 19139, + "id": 20923, "properties": { "facing": "east", "half": "top", @@ -68985,7 +79403,7 @@ } }, { - "id": 19140, + "id": 20924, "properties": { "facing": "east", "half": "top", @@ -68994,7 +79412,7 @@ } }, { - "id": 19141, + "id": 20925, "properties": { "facing": "east", "half": "top", @@ -69003,7 +79421,7 @@ } }, { - "id": 19142, + "id": 20926, "properties": { "facing": "east", "half": "top", @@ -69012,7 +79430,7 @@ } }, { - "id": 19143, + "id": 20927, "properties": { "facing": "east", "half": "top", @@ -69021,7 +79439,7 @@ } }, { - "id": 19144, + "id": 20928, "properties": { "facing": "east", "half": "top", @@ -69030,7 +79448,7 @@ } }, { - "id": 19145, + "id": 20929, "properties": { "facing": "east", "half": "top", @@ -69039,7 +79457,7 @@ } }, { - "id": 19146, + "id": 20930, "properties": { "facing": "east", "half": "top", @@ -69048,7 +79466,7 @@ } }, { - "id": 19147, + "id": 20931, "properties": { "facing": "east", "half": "top", @@ -69057,7 +79475,7 @@ } }, { - "id": 19148, + "id": 20932, "properties": { "facing": "east", "half": "bottom", @@ -69066,7 +79484,7 @@ } }, { - "id": 19149, + "id": 20933, "properties": { "facing": "east", "half": "bottom", @@ -69075,7 +79493,7 @@ } }, { - "id": 19150, + "id": 20934, "properties": { "facing": "east", "half": "bottom", @@ -69084,7 +79502,7 @@ } }, { - "id": 19151, + "id": 20935, "properties": { "facing": "east", "half": "bottom", @@ -69093,7 +79511,7 @@ } }, { - "id": 19152, + "id": 20936, "properties": { "facing": "east", "half": "bottom", @@ -69102,7 +79520,7 @@ } }, { - "id": 19153, + "id": 20937, "properties": { "facing": "east", "half": "bottom", @@ -69111,7 +79529,7 @@ } }, { - "id": 19154, + "id": 20938, "properties": { "facing": "east", "half": "bottom", @@ -69120,7 +79538,7 @@ } }, { - "id": 19155, + "id": 20939, "properties": { "facing": "east", "half": "bottom", @@ -69129,7 +79547,7 @@ } }, { - "id": 19156, + "id": 20940, "properties": { "facing": "east", "half": "bottom", @@ -69138,7 +79556,7 @@ } }, { - "id": 19157, + "id": 20941, "properties": { "facing": "east", "half": "bottom", @@ -69164,49 +79582,49 @@ "states": [ { "default": true, - "id": 3620, + "id": 4234, "properties": { "moisture": "0" } }, { - "id": 3621, + "id": 4235, "properties": { "moisture": "1" } }, { - "id": 3622, + "id": 4236, "properties": { "moisture": "2" } }, { - "id": 3623, + "id": 4237, "properties": { "moisture": "3" } }, { - "id": 3624, + "id": 4238, "properties": { "moisture": "4" } }, { - "id": 3625, + "id": 4239, "properties": { "moisture": "5" } }, { - "id": 3626, + "id": 4240, "properties": { "moisture": "6" } }, { - "id": 3627, + "id": 4241, "properties": { "moisture": "7" } @@ -69217,7 +79635,7 @@ "states": [ { "default": true, - "id": 1597 + "id": 1955 } ] }, @@ -69264,7 +79682,7 @@ }, "states": [ { - "id": 1694, + "id": 2308, "properties": { "age": "0", "east": "true", @@ -69275,7 +79693,7 @@ } }, { - "id": 1695, + "id": 2309, "properties": { "age": "0", "east": "true", @@ -69286,7 +79704,7 @@ } }, { - "id": 1696, + "id": 2310, "properties": { "age": "0", "east": "true", @@ -69297,7 +79715,7 @@ } }, { - "id": 1697, + "id": 2311, "properties": { "age": "0", "east": "true", @@ -69308,7 +79726,7 @@ } }, { - "id": 1698, + "id": 2312, "properties": { "age": "0", "east": "true", @@ -69319,7 +79737,7 @@ } }, { - "id": 1699, + "id": 2313, "properties": { "age": "0", "east": "true", @@ -69330,7 +79748,7 @@ } }, { - "id": 1700, + "id": 2314, "properties": { "age": "0", "east": "true", @@ -69341,7 +79759,7 @@ } }, { - "id": 1701, + "id": 2315, "properties": { "age": "0", "east": "true", @@ -69352,7 +79770,7 @@ } }, { - "id": 1702, + "id": 2316, "properties": { "age": "0", "east": "true", @@ -69363,7 +79781,7 @@ } }, { - "id": 1703, + "id": 2317, "properties": { "age": "0", "east": "true", @@ -69374,7 +79792,7 @@ } }, { - "id": 1704, + "id": 2318, "properties": { "age": "0", "east": "true", @@ -69385,7 +79803,7 @@ } }, { - "id": 1705, + "id": 2319, "properties": { "age": "0", "east": "true", @@ -69396,7 +79814,7 @@ } }, { - "id": 1706, + "id": 2320, "properties": { "age": "0", "east": "true", @@ -69407,7 +79825,7 @@ } }, { - "id": 1707, + "id": 2321, "properties": { "age": "0", "east": "true", @@ -69418,7 +79836,7 @@ } }, { - "id": 1708, + "id": 2322, "properties": { "age": "0", "east": "true", @@ -69429,7 +79847,7 @@ } }, { - "id": 1709, + "id": 2323, "properties": { "age": "0", "east": "true", @@ -69440,7 +79858,7 @@ } }, { - "id": 1710, + "id": 2324, "properties": { "age": "0", "east": "false", @@ -69451,7 +79869,7 @@ } }, { - "id": 1711, + "id": 2325, "properties": { "age": "0", "east": "false", @@ -69462,7 +79880,7 @@ } }, { - "id": 1712, + "id": 2326, "properties": { "age": "0", "east": "false", @@ -69473,7 +79891,7 @@ } }, { - "id": 1713, + "id": 2327, "properties": { "age": "0", "east": "false", @@ -69484,7 +79902,7 @@ } }, { - "id": 1714, + "id": 2328, "properties": { "age": "0", "east": "false", @@ -69495,7 +79913,7 @@ } }, { - "id": 1715, + "id": 2329, "properties": { "age": "0", "east": "false", @@ -69506,7 +79924,7 @@ } }, { - "id": 1716, + "id": 2330, "properties": { "age": "0", "east": "false", @@ -69517,7 +79935,7 @@ } }, { - "id": 1717, + "id": 2331, "properties": { "age": "0", "east": "false", @@ -69528,7 +79946,7 @@ } }, { - "id": 1718, + "id": 2332, "properties": { "age": "0", "east": "false", @@ -69539,7 +79957,7 @@ } }, { - "id": 1719, + "id": 2333, "properties": { "age": "0", "east": "false", @@ -69550,7 +79968,7 @@ } }, { - "id": 1720, + "id": 2334, "properties": { "age": "0", "east": "false", @@ -69561,7 +79979,7 @@ } }, { - "id": 1721, + "id": 2335, "properties": { "age": "0", "east": "false", @@ -69572,7 +79990,7 @@ } }, { - "id": 1722, + "id": 2336, "properties": { "age": "0", "east": "false", @@ -69583,7 +80001,7 @@ } }, { - "id": 1723, + "id": 2337, "properties": { "age": "0", "east": "false", @@ -69594,7 +80012,7 @@ } }, { - "id": 1724, + "id": 2338, "properties": { "age": "0", "east": "false", @@ -69606,7 +80024,7 @@ }, { "default": true, - "id": 1725, + "id": 2339, "properties": { "age": "0", "east": "false", @@ -69617,7 +80035,7 @@ } }, { - "id": 1726, + "id": 2340, "properties": { "age": "1", "east": "true", @@ -69628,7 +80046,7 @@ } }, { - "id": 1727, + "id": 2341, "properties": { "age": "1", "east": "true", @@ -69639,7 +80057,7 @@ } }, { - "id": 1728, + "id": 2342, "properties": { "age": "1", "east": "true", @@ -69650,7 +80068,7 @@ } }, { - "id": 1729, + "id": 2343, "properties": { "age": "1", "east": "true", @@ -69661,7 +80079,7 @@ } }, { - "id": 1730, + "id": 2344, "properties": { "age": "1", "east": "true", @@ -69672,7 +80090,7 @@ } }, { - "id": 1731, + "id": 2345, "properties": { "age": "1", "east": "true", @@ -69683,7 +80101,7 @@ } }, { - "id": 1732, + "id": 2346, "properties": { "age": "1", "east": "true", @@ -69694,7 +80112,7 @@ } }, { - "id": 1733, + "id": 2347, "properties": { "age": "1", "east": "true", @@ -69705,7 +80123,7 @@ } }, { - "id": 1734, + "id": 2348, "properties": { "age": "1", "east": "true", @@ -69716,7 +80134,7 @@ } }, { - "id": 1735, + "id": 2349, "properties": { "age": "1", "east": "true", @@ -69727,7 +80145,7 @@ } }, { - "id": 1736, + "id": 2350, "properties": { "age": "1", "east": "true", @@ -69738,7 +80156,7 @@ } }, { - "id": 1737, + "id": 2351, "properties": { "age": "1", "east": "true", @@ -69749,7 +80167,7 @@ } }, { - "id": 1738, + "id": 2352, "properties": { "age": "1", "east": "true", @@ -69760,7 +80178,7 @@ } }, { - "id": 1739, + "id": 2353, "properties": { "age": "1", "east": "true", @@ -69771,7 +80189,7 @@ } }, { - "id": 1740, + "id": 2354, "properties": { "age": "1", "east": "true", @@ -69782,7 +80200,7 @@ } }, { - "id": 1741, + "id": 2355, "properties": { "age": "1", "east": "true", @@ -69793,7 +80211,7 @@ } }, { - "id": 1742, + "id": 2356, "properties": { "age": "1", "east": "false", @@ -69804,7 +80222,7 @@ } }, { - "id": 1743, + "id": 2357, "properties": { "age": "1", "east": "false", @@ -69815,7 +80233,7 @@ } }, { - "id": 1744, + "id": 2358, "properties": { "age": "1", "east": "false", @@ -69826,7 +80244,7 @@ } }, { - "id": 1745, + "id": 2359, "properties": { "age": "1", "east": "false", @@ -69837,7 +80255,7 @@ } }, { - "id": 1746, + "id": 2360, "properties": { "age": "1", "east": "false", @@ -69848,7 +80266,7 @@ } }, { - "id": 1747, + "id": 2361, "properties": { "age": "1", "east": "false", @@ -69859,7 +80277,7 @@ } }, { - "id": 1748, + "id": 2362, "properties": { "age": "1", "east": "false", @@ -69870,7 +80288,7 @@ } }, { - "id": 1749, + "id": 2363, "properties": { "age": "1", "east": "false", @@ -69881,7 +80299,7 @@ } }, { - "id": 1750, + "id": 2364, "properties": { "age": "1", "east": "false", @@ -69892,7 +80310,7 @@ } }, { - "id": 1751, + "id": 2365, "properties": { "age": "1", "east": "false", @@ -69903,7 +80321,7 @@ } }, { - "id": 1752, + "id": 2366, "properties": { "age": "1", "east": "false", @@ -69914,7 +80332,7 @@ } }, { - "id": 1753, + "id": 2367, "properties": { "age": "1", "east": "false", @@ -69925,7 +80343,7 @@ } }, { - "id": 1754, + "id": 2368, "properties": { "age": "1", "east": "false", @@ -69936,7 +80354,7 @@ } }, { - "id": 1755, + "id": 2369, "properties": { "age": "1", "east": "false", @@ -69947,7 +80365,7 @@ } }, { - "id": 1756, + "id": 2370, "properties": { "age": "1", "east": "false", @@ -69958,7 +80376,7 @@ } }, { - "id": 1757, + "id": 2371, "properties": { "age": "1", "east": "false", @@ -69969,7 +80387,7 @@ } }, { - "id": 1758, + "id": 2372, "properties": { "age": "2", "east": "true", @@ -69980,7 +80398,7 @@ } }, { - "id": 1759, + "id": 2373, "properties": { "age": "2", "east": "true", @@ -69991,7 +80409,7 @@ } }, { - "id": 1760, + "id": 2374, "properties": { "age": "2", "east": "true", @@ -70002,7 +80420,7 @@ } }, { - "id": 1761, + "id": 2375, "properties": { "age": "2", "east": "true", @@ -70013,7 +80431,7 @@ } }, { - "id": 1762, + "id": 2376, "properties": { "age": "2", "east": "true", @@ -70024,7 +80442,7 @@ } }, { - "id": 1763, + "id": 2377, "properties": { "age": "2", "east": "true", @@ -70035,7 +80453,7 @@ } }, { - "id": 1764, + "id": 2378, "properties": { "age": "2", "east": "true", @@ -70046,7 +80464,7 @@ } }, { - "id": 1765, + "id": 2379, "properties": { "age": "2", "east": "true", @@ -70057,7 +80475,7 @@ } }, { - "id": 1766, + "id": 2380, "properties": { "age": "2", "east": "true", @@ -70068,7 +80486,7 @@ } }, { - "id": 1767, + "id": 2381, "properties": { "age": "2", "east": "true", @@ -70079,7 +80497,7 @@ } }, { - "id": 1768, + "id": 2382, "properties": { "age": "2", "east": "true", @@ -70090,7 +80508,7 @@ } }, { - "id": 1769, + "id": 2383, "properties": { "age": "2", "east": "true", @@ -70101,7 +80519,7 @@ } }, { - "id": 1770, + "id": 2384, "properties": { "age": "2", "east": "true", @@ -70112,7 +80530,7 @@ } }, { - "id": 1771, + "id": 2385, "properties": { "age": "2", "east": "true", @@ -70123,7 +80541,7 @@ } }, { - "id": 1772, + "id": 2386, "properties": { "age": "2", "east": "true", @@ -70134,7 +80552,7 @@ } }, { - "id": 1773, + "id": 2387, "properties": { "age": "2", "east": "true", @@ -70145,7 +80563,7 @@ } }, { - "id": 1774, + "id": 2388, "properties": { "age": "2", "east": "false", @@ -70156,7 +80574,7 @@ } }, { - "id": 1775, + "id": 2389, "properties": { "age": "2", "east": "false", @@ -70167,7 +80585,7 @@ } }, { - "id": 1776, + "id": 2390, "properties": { "age": "2", "east": "false", @@ -70178,7 +80596,7 @@ } }, { - "id": 1777, + "id": 2391, "properties": { "age": "2", "east": "false", @@ -70189,7 +80607,7 @@ } }, { - "id": 1778, + "id": 2392, "properties": { "age": "2", "east": "false", @@ -70200,7 +80618,7 @@ } }, { - "id": 1779, + "id": 2393, "properties": { "age": "2", "east": "false", @@ -70211,7 +80629,7 @@ } }, { - "id": 1780, + "id": 2394, "properties": { "age": "2", "east": "false", @@ -70222,7 +80640,7 @@ } }, { - "id": 1781, + "id": 2395, "properties": { "age": "2", "east": "false", @@ -70233,7 +80651,7 @@ } }, { - "id": 1782, + "id": 2396, "properties": { "age": "2", "east": "false", @@ -70244,7 +80662,7 @@ } }, { - "id": 1783, + "id": 2397, "properties": { "age": "2", "east": "false", @@ -70255,7 +80673,7 @@ } }, { - "id": 1784, + "id": 2398, "properties": { "age": "2", "east": "false", @@ -70266,7 +80684,7 @@ } }, { - "id": 1785, + "id": 2399, "properties": { "age": "2", "east": "false", @@ -70277,7 +80695,7 @@ } }, { - "id": 1786, + "id": 2400, "properties": { "age": "2", "east": "false", @@ -70288,7 +80706,7 @@ } }, { - "id": 1787, + "id": 2401, "properties": { "age": "2", "east": "false", @@ -70299,7 +80717,7 @@ } }, { - "id": 1788, + "id": 2402, "properties": { "age": "2", "east": "false", @@ -70310,7 +80728,7 @@ } }, { - "id": 1789, + "id": 2403, "properties": { "age": "2", "east": "false", @@ -70321,7 +80739,7 @@ } }, { - "id": 1790, + "id": 2404, "properties": { "age": "3", "east": "true", @@ -70332,7 +80750,7 @@ } }, { - "id": 1791, + "id": 2405, "properties": { "age": "3", "east": "true", @@ -70343,7 +80761,7 @@ } }, { - "id": 1792, + "id": 2406, "properties": { "age": "3", "east": "true", @@ -70354,7 +80772,7 @@ } }, { - "id": 1793, + "id": 2407, "properties": { "age": "3", "east": "true", @@ -70365,7 +80783,7 @@ } }, { - "id": 1794, + "id": 2408, "properties": { "age": "3", "east": "true", @@ -70376,7 +80794,7 @@ } }, { - "id": 1795, + "id": 2409, "properties": { "age": "3", "east": "true", @@ -70387,7 +80805,7 @@ } }, { - "id": 1796, + "id": 2410, "properties": { "age": "3", "east": "true", @@ -70398,7 +80816,7 @@ } }, { - "id": 1797, + "id": 2411, "properties": { "age": "3", "east": "true", @@ -70409,7 +80827,7 @@ } }, { - "id": 1798, + "id": 2412, "properties": { "age": "3", "east": "true", @@ -70420,7 +80838,7 @@ } }, { - "id": 1799, + "id": 2413, "properties": { "age": "3", "east": "true", @@ -70431,7 +80849,7 @@ } }, { - "id": 1800, + "id": 2414, "properties": { "age": "3", "east": "true", @@ -70442,7 +80860,7 @@ } }, { - "id": 1801, + "id": 2415, "properties": { "age": "3", "east": "true", @@ -70453,7 +80871,7 @@ } }, { - "id": 1802, + "id": 2416, "properties": { "age": "3", "east": "true", @@ -70464,7 +80882,7 @@ } }, { - "id": 1803, + "id": 2417, "properties": { "age": "3", "east": "true", @@ -70475,7 +80893,7 @@ } }, { - "id": 1804, + "id": 2418, "properties": { "age": "3", "east": "true", @@ -70486,7 +80904,7 @@ } }, { - "id": 1805, + "id": 2419, "properties": { "age": "3", "east": "true", @@ -70497,7 +80915,7 @@ } }, { - "id": 1806, + "id": 2420, "properties": { "age": "3", "east": "false", @@ -70508,7 +80926,7 @@ } }, { - "id": 1807, + "id": 2421, "properties": { "age": "3", "east": "false", @@ -70519,7 +80937,7 @@ } }, { - "id": 1808, + "id": 2422, "properties": { "age": "3", "east": "false", @@ -70530,7 +80948,7 @@ } }, { - "id": 1809, + "id": 2423, "properties": { "age": "3", "east": "false", @@ -70541,7 +80959,7 @@ } }, { - "id": 1810, + "id": 2424, "properties": { "age": "3", "east": "false", @@ -70552,7 +80970,7 @@ } }, { - "id": 1811, + "id": 2425, "properties": { "age": "3", "east": "false", @@ -70563,7 +80981,7 @@ } }, { - "id": 1812, + "id": 2426, "properties": { "age": "3", "east": "false", @@ -70574,7 +80992,7 @@ } }, { - "id": 1813, + "id": 2427, "properties": { "age": "3", "east": "false", @@ -70585,7 +81003,7 @@ } }, { - "id": 1814, + "id": 2428, "properties": { "age": "3", "east": "false", @@ -70596,7 +81014,7 @@ } }, { - "id": 1815, + "id": 2429, "properties": { "age": "3", "east": "false", @@ -70607,7 +81025,7 @@ } }, { - "id": 1816, + "id": 2430, "properties": { "age": "3", "east": "false", @@ -70618,7 +81036,7 @@ } }, { - "id": 1817, + "id": 2431, "properties": { "age": "3", "east": "false", @@ -70629,7 +81047,7 @@ } }, { - "id": 1818, + "id": 2432, "properties": { "age": "3", "east": "false", @@ -70640,7 +81058,7 @@ } }, { - "id": 1819, + "id": 2433, "properties": { "age": "3", "east": "false", @@ -70651,7 +81069,7 @@ } }, { - "id": 1820, + "id": 2434, "properties": { "age": "3", "east": "false", @@ -70662,7 +81080,7 @@ } }, { - "id": 1821, + "id": 2435, "properties": { "age": "3", "east": "false", @@ -70673,7 +81091,7 @@ } }, { - "id": 1822, + "id": 2436, "properties": { "age": "4", "east": "true", @@ -70684,7 +81102,7 @@ } }, { - "id": 1823, + "id": 2437, "properties": { "age": "4", "east": "true", @@ -70695,7 +81113,7 @@ } }, { - "id": 1824, + "id": 2438, "properties": { "age": "4", "east": "true", @@ -70706,7 +81124,7 @@ } }, { - "id": 1825, + "id": 2439, "properties": { "age": "4", "east": "true", @@ -70717,7 +81135,7 @@ } }, { - "id": 1826, + "id": 2440, "properties": { "age": "4", "east": "true", @@ -70728,7 +81146,7 @@ } }, { - "id": 1827, + "id": 2441, "properties": { "age": "4", "east": "true", @@ -70739,7 +81157,7 @@ } }, { - "id": 1828, + "id": 2442, "properties": { "age": "4", "east": "true", @@ -70750,7 +81168,7 @@ } }, { - "id": 1829, + "id": 2443, "properties": { "age": "4", "east": "true", @@ -70761,7 +81179,7 @@ } }, { - "id": 1830, + "id": 2444, "properties": { "age": "4", "east": "true", @@ -70772,7 +81190,7 @@ } }, { - "id": 1831, + "id": 2445, "properties": { "age": "4", "east": "true", @@ -70783,7 +81201,7 @@ } }, { - "id": 1832, + "id": 2446, "properties": { "age": "4", "east": "true", @@ -70794,7 +81212,7 @@ } }, { - "id": 1833, + "id": 2447, "properties": { "age": "4", "east": "true", @@ -70805,7 +81223,7 @@ } }, { - "id": 1834, + "id": 2448, "properties": { "age": "4", "east": "true", @@ -70816,7 +81234,7 @@ } }, { - "id": 1835, + "id": 2449, "properties": { "age": "4", "east": "true", @@ -70827,7 +81245,7 @@ } }, { - "id": 1836, + "id": 2450, "properties": { "age": "4", "east": "true", @@ -70838,7 +81256,7 @@ } }, { - "id": 1837, + "id": 2451, "properties": { "age": "4", "east": "true", @@ -70849,7 +81267,7 @@ } }, { - "id": 1838, + "id": 2452, "properties": { "age": "4", "east": "false", @@ -70860,7 +81278,7 @@ } }, { - "id": 1839, + "id": 2453, "properties": { "age": "4", "east": "false", @@ -70871,7 +81289,7 @@ } }, { - "id": 1840, + "id": 2454, "properties": { "age": "4", "east": "false", @@ -70882,7 +81300,7 @@ } }, { - "id": 1841, + "id": 2455, "properties": { "age": "4", "east": "false", @@ -70893,7 +81311,7 @@ } }, { - "id": 1842, + "id": 2456, "properties": { "age": "4", "east": "false", @@ -70904,7 +81322,7 @@ } }, { - "id": 1843, + "id": 2457, "properties": { "age": "4", "east": "false", @@ -70915,7 +81333,7 @@ } }, { - "id": 1844, + "id": 2458, "properties": { "age": "4", "east": "false", @@ -70926,7 +81344,7 @@ } }, { - "id": 1845, + "id": 2459, "properties": { "age": "4", "east": "false", @@ -70937,7 +81355,7 @@ } }, { - "id": 1846, + "id": 2460, "properties": { "age": "4", "east": "false", @@ -70948,7 +81366,7 @@ } }, { - "id": 1847, + "id": 2461, "properties": { "age": "4", "east": "false", @@ -70959,7 +81377,7 @@ } }, { - "id": 1848, + "id": 2462, "properties": { "age": "4", "east": "false", @@ -70970,7 +81388,7 @@ } }, { - "id": 1849, + "id": 2463, "properties": { "age": "4", "east": "false", @@ -70981,7 +81399,7 @@ } }, { - "id": 1850, + "id": 2464, "properties": { "age": "4", "east": "false", @@ -70992,7 +81410,7 @@ } }, { - "id": 1851, + "id": 2465, "properties": { "age": "4", "east": "false", @@ -71003,7 +81421,7 @@ } }, { - "id": 1852, + "id": 2466, "properties": { "age": "4", "east": "false", @@ -71014,7 +81432,7 @@ } }, { - "id": 1853, + "id": 2467, "properties": { "age": "4", "east": "false", @@ -71025,7 +81443,7 @@ } }, { - "id": 1854, + "id": 2468, "properties": { "age": "5", "east": "true", @@ -71036,7 +81454,7 @@ } }, { - "id": 1855, + "id": 2469, "properties": { "age": "5", "east": "true", @@ -71047,7 +81465,7 @@ } }, { - "id": 1856, + "id": 2470, "properties": { "age": "5", "east": "true", @@ -71058,7 +81476,7 @@ } }, { - "id": 1857, + "id": 2471, "properties": { "age": "5", "east": "true", @@ -71069,7 +81487,7 @@ } }, { - "id": 1858, + "id": 2472, "properties": { "age": "5", "east": "true", @@ -71080,7 +81498,7 @@ } }, { - "id": 1859, + "id": 2473, "properties": { "age": "5", "east": "true", @@ -71091,7 +81509,7 @@ } }, { - "id": 1860, + "id": 2474, "properties": { "age": "5", "east": "true", @@ -71102,7 +81520,7 @@ } }, { - "id": 1861, + "id": 2475, "properties": { "age": "5", "east": "true", @@ -71113,7 +81531,7 @@ } }, { - "id": 1862, + "id": 2476, "properties": { "age": "5", "east": "true", @@ -71124,7 +81542,7 @@ } }, { - "id": 1863, + "id": 2477, "properties": { "age": "5", "east": "true", @@ -71135,7 +81553,7 @@ } }, { - "id": 1864, + "id": 2478, "properties": { "age": "5", "east": "true", @@ -71146,7 +81564,7 @@ } }, { - "id": 1865, + "id": 2479, "properties": { "age": "5", "east": "true", @@ -71157,7 +81575,7 @@ } }, { - "id": 1866, + "id": 2480, "properties": { "age": "5", "east": "true", @@ -71168,7 +81586,7 @@ } }, { - "id": 1867, + "id": 2481, "properties": { "age": "5", "east": "true", @@ -71179,7 +81597,7 @@ } }, { - "id": 1868, + "id": 2482, "properties": { "age": "5", "east": "true", @@ -71190,7 +81608,7 @@ } }, { - "id": 1869, + "id": 2483, "properties": { "age": "5", "east": "true", @@ -71201,7 +81619,7 @@ } }, { - "id": 1870, + "id": 2484, "properties": { "age": "5", "east": "false", @@ -71212,7 +81630,7 @@ } }, { - "id": 1871, + "id": 2485, "properties": { "age": "5", "east": "false", @@ -71223,7 +81641,7 @@ } }, { - "id": 1872, + "id": 2486, "properties": { "age": "5", "east": "false", @@ -71234,7 +81652,7 @@ } }, { - "id": 1873, + "id": 2487, "properties": { "age": "5", "east": "false", @@ -71245,7 +81663,7 @@ } }, { - "id": 1874, + "id": 2488, "properties": { "age": "5", "east": "false", @@ -71256,7 +81674,7 @@ } }, { - "id": 1875, + "id": 2489, "properties": { "age": "5", "east": "false", @@ -71267,7 +81685,7 @@ } }, { - "id": 1876, + "id": 2490, "properties": { "age": "5", "east": "false", @@ -71278,7 +81696,7 @@ } }, { - "id": 1877, + "id": 2491, "properties": { "age": "5", "east": "false", @@ -71289,7 +81707,7 @@ } }, { - "id": 1878, + "id": 2492, "properties": { "age": "5", "east": "false", @@ -71300,7 +81718,7 @@ } }, { - "id": 1879, + "id": 2493, "properties": { "age": "5", "east": "false", @@ -71311,7 +81729,7 @@ } }, { - "id": 1880, + "id": 2494, "properties": { "age": "5", "east": "false", @@ -71322,7 +81740,7 @@ } }, { - "id": 1881, + "id": 2495, "properties": { "age": "5", "east": "false", @@ -71333,7 +81751,7 @@ } }, { - "id": 1882, + "id": 2496, "properties": { "age": "5", "east": "false", @@ -71344,7 +81762,7 @@ } }, { - "id": 1883, + "id": 2497, "properties": { "age": "5", "east": "false", @@ -71355,7 +81773,7 @@ } }, { - "id": 1884, + "id": 2498, "properties": { "age": "5", "east": "false", @@ -71366,7 +81784,7 @@ } }, { - "id": 1885, + "id": 2499, "properties": { "age": "5", "east": "false", @@ -71377,7 +81795,7 @@ } }, { - "id": 1886, + "id": 2500, "properties": { "age": "6", "east": "true", @@ -71388,7 +81806,7 @@ } }, { - "id": 1887, + "id": 2501, "properties": { "age": "6", "east": "true", @@ -71399,7 +81817,7 @@ } }, { - "id": 1888, + "id": 2502, "properties": { "age": "6", "east": "true", @@ -71410,7 +81828,7 @@ } }, { - "id": 1889, + "id": 2503, "properties": { "age": "6", "east": "true", @@ -71421,7 +81839,7 @@ } }, { - "id": 1890, + "id": 2504, "properties": { "age": "6", "east": "true", @@ -71432,7 +81850,7 @@ } }, { - "id": 1891, + "id": 2505, "properties": { "age": "6", "east": "true", @@ -71443,7 +81861,7 @@ } }, { - "id": 1892, + "id": 2506, "properties": { "age": "6", "east": "true", @@ -71454,7 +81872,7 @@ } }, { - "id": 1893, + "id": 2507, "properties": { "age": "6", "east": "true", @@ -71465,7 +81883,7 @@ } }, { - "id": 1894, + "id": 2508, "properties": { "age": "6", "east": "true", @@ -71476,7 +81894,7 @@ } }, { - "id": 1895, + "id": 2509, "properties": { "age": "6", "east": "true", @@ -71487,7 +81905,7 @@ } }, { - "id": 1896, + "id": 2510, "properties": { "age": "6", "east": "true", @@ -71498,7 +81916,7 @@ } }, { - "id": 1897, + "id": 2511, "properties": { "age": "6", "east": "true", @@ -71509,7 +81927,7 @@ } }, { - "id": 1898, + "id": 2512, "properties": { "age": "6", "east": "true", @@ -71520,7 +81938,7 @@ } }, { - "id": 1899, + "id": 2513, "properties": { "age": "6", "east": "true", @@ -71531,7 +81949,7 @@ } }, { - "id": 1900, + "id": 2514, "properties": { "age": "6", "east": "true", @@ -71542,7 +81960,7 @@ } }, { - "id": 1901, + "id": 2515, "properties": { "age": "6", "east": "true", @@ -71553,7 +81971,7 @@ } }, { - "id": 1902, + "id": 2516, "properties": { "age": "6", "east": "false", @@ -71564,7 +81982,7 @@ } }, { - "id": 1903, + "id": 2517, "properties": { "age": "6", "east": "false", @@ -71575,7 +81993,7 @@ } }, { - "id": 1904, + "id": 2518, "properties": { "age": "6", "east": "false", @@ -71586,7 +82004,7 @@ } }, { - "id": 1905, + "id": 2519, "properties": { "age": "6", "east": "false", @@ -71597,7 +82015,7 @@ } }, { - "id": 1906, + "id": 2520, "properties": { "age": "6", "east": "false", @@ -71608,7 +82026,7 @@ } }, { - "id": 1907, + "id": 2521, "properties": { "age": "6", "east": "false", @@ -71619,7 +82037,7 @@ } }, { - "id": 1908, + "id": 2522, "properties": { "age": "6", "east": "false", @@ -71630,7 +82048,7 @@ } }, { - "id": 1909, + "id": 2523, "properties": { "age": "6", "east": "false", @@ -71641,7 +82059,7 @@ } }, { - "id": 1910, + "id": 2524, "properties": { "age": "6", "east": "false", @@ -71652,7 +82070,7 @@ } }, { - "id": 1911, + "id": 2525, "properties": { "age": "6", "east": "false", @@ -71663,7 +82081,7 @@ } }, { - "id": 1912, + "id": 2526, "properties": { "age": "6", "east": "false", @@ -71674,7 +82092,7 @@ } }, { - "id": 1913, + "id": 2527, "properties": { "age": "6", "east": "false", @@ -71685,7 +82103,7 @@ } }, { - "id": 1914, + "id": 2528, "properties": { "age": "6", "east": "false", @@ -71696,7 +82114,7 @@ } }, { - "id": 1915, + "id": 2529, "properties": { "age": "6", "east": "false", @@ -71707,7 +82125,7 @@ } }, { - "id": 1916, + "id": 2530, "properties": { "age": "6", "east": "false", @@ -71718,7 +82136,7 @@ } }, { - "id": 1917, + "id": 2531, "properties": { "age": "6", "east": "false", @@ -71729,7 +82147,7 @@ } }, { - "id": 1918, + "id": 2532, "properties": { "age": "7", "east": "true", @@ -71740,7 +82158,7 @@ } }, { - "id": 1919, + "id": 2533, "properties": { "age": "7", "east": "true", @@ -71751,7 +82169,7 @@ } }, { - "id": 1920, + "id": 2534, "properties": { "age": "7", "east": "true", @@ -71762,7 +82180,7 @@ } }, { - "id": 1921, + "id": 2535, "properties": { "age": "7", "east": "true", @@ -71773,7 +82191,7 @@ } }, { - "id": 1922, + "id": 2536, "properties": { "age": "7", "east": "true", @@ -71784,7 +82202,7 @@ } }, { - "id": 1923, + "id": 2537, "properties": { "age": "7", "east": "true", @@ -71795,7 +82213,7 @@ } }, { - "id": 1924, + "id": 2538, "properties": { "age": "7", "east": "true", @@ -71806,7 +82224,7 @@ } }, { - "id": 1925, + "id": 2539, "properties": { "age": "7", "east": "true", @@ -71817,7 +82235,7 @@ } }, { - "id": 1926, + "id": 2540, "properties": { "age": "7", "east": "true", @@ -71828,7 +82246,7 @@ } }, { - "id": 1927, + "id": 2541, "properties": { "age": "7", "east": "true", @@ -71839,7 +82257,7 @@ } }, { - "id": 1928, + "id": 2542, "properties": { "age": "7", "east": "true", @@ -71850,7 +82268,7 @@ } }, { - "id": 1929, + "id": 2543, "properties": { "age": "7", "east": "true", @@ -71861,7 +82279,7 @@ } }, { - "id": 1930, + "id": 2544, "properties": { "age": "7", "east": "true", @@ -71872,7 +82290,7 @@ } }, { - "id": 1931, + "id": 2545, "properties": { "age": "7", "east": "true", @@ -71883,7 +82301,7 @@ } }, { - "id": 1932, + "id": 2546, "properties": { "age": "7", "east": "true", @@ -71894,7 +82312,7 @@ } }, { - "id": 1933, + "id": 2547, "properties": { "age": "7", "east": "true", @@ -71905,7 +82323,7 @@ } }, { - "id": 1934, + "id": 2548, "properties": { "age": "7", "east": "false", @@ -71916,7 +82334,7 @@ } }, { - "id": 1935, + "id": 2549, "properties": { "age": "7", "east": "false", @@ -71927,7 +82345,7 @@ } }, { - "id": 1936, + "id": 2550, "properties": { "age": "7", "east": "false", @@ -71938,7 +82356,7 @@ } }, { - "id": 1937, + "id": 2551, "properties": { "age": "7", "east": "false", @@ -71949,7 +82367,7 @@ } }, { - "id": 1938, + "id": 2552, "properties": { "age": "7", "east": "false", @@ -71960,7 +82378,7 @@ } }, { - "id": 1939, + "id": 2553, "properties": { "age": "7", "east": "false", @@ -71971,7 +82389,7 @@ } }, { - "id": 1940, + "id": 2554, "properties": { "age": "7", "east": "false", @@ -71982,7 +82400,7 @@ } }, { - "id": 1941, + "id": 2555, "properties": { "age": "7", "east": "false", @@ -71993,7 +82411,7 @@ } }, { - "id": 1942, + "id": 2556, "properties": { "age": "7", "east": "false", @@ -72004,7 +82422,7 @@ } }, { - "id": 1943, + "id": 2557, "properties": { "age": "7", "east": "false", @@ -72015,7 +82433,7 @@ } }, { - "id": 1944, + "id": 2558, "properties": { "age": "7", "east": "false", @@ -72026,7 +82444,7 @@ } }, { - "id": 1945, + "id": 2559, "properties": { "age": "7", "east": "false", @@ -72037,7 +82455,7 @@ } }, { - "id": 1946, + "id": 2560, "properties": { "age": "7", "east": "false", @@ -72048,7 +82466,7 @@ } }, { - "id": 1947, + "id": 2561, "properties": { "age": "7", "east": "false", @@ -72059,7 +82477,7 @@ } }, { - "id": 1948, + "id": 2562, "properties": { "age": "7", "east": "false", @@ -72070,7 +82488,7 @@ } }, { - "id": 1949, + "id": 2563, "properties": { "age": "7", "east": "false", @@ -72081,7 +82499,7 @@ } }, { - "id": 1950, + "id": 2564, "properties": { "age": "8", "east": "true", @@ -72092,7 +82510,7 @@ } }, { - "id": 1951, + "id": 2565, "properties": { "age": "8", "east": "true", @@ -72103,7 +82521,7 @@ } }, { - "id": 1952, + "id": 2566, "properties": { "age": "8", "east": "true", @@ -72114,7 +82532,7 @@ } }, { - "id": 1953, + "id": 2567, "properties": { "age": "8", "east": "true", @@ -72125,7 +82543,7 @@ } }, { - "id": 1954, + "id": 2568, "properties": { "age": "8", "east": "true", @@ -72136,7 +82554,7 @@ } }, { - "id": 1955, + "id": 2569, "properties": { "age": "8", "east": "true", @@ -72147,7 +82565,7 @@ } }, { - "id": 1956, + "id": 2570, "properties": { "age": "8", "east": "true", @@ -72158,7 +82576,7 @@ } }, { - "id": 1957, + "id": 2571, "properties": { "age": "8", "east": "true", @@ -72169,7 +82587,7 @@ } }, { - "id": 1958, + "id": 2572, "properties": { "age": "8", "east": "true", @@ -72180,7 +82598,7 @@ } }, { - "id": 1959, + "id": 2573, "properties": { "age": "8", "east": "true", @@ -72191,7 +82609,7 @@ } }, { - "id": 1960, + "id": 2574, "properties": { "age": "8", "east": "true", @@ -72202,7 +82620,7 @@ } }, { - "id": 1961, + "id": 2575, "properties": { "age": "8", "east": "true", @@ -72213,7 +82631,7 @@ } }, { - "id": 1962, + "id": 2576, "properties": { "age": "8", "east": "true", @@ -72224,7 +82642,7 @@ } }, { - "id": 1963, + "id": 2577, "properties": { "age": "8", "east": "true", @@ -72235,7 +82653,7 @@ } }, { - "id": 1964, + "id": 2578, "properties": { "age": "8", "east": "true", @@ -72246,7 +82664,7 @@ } }, { - "id": 1965, + "id": 2579, "properties": { "age": "8", "east": "true", @@ -72257,7 +82675,7 @@ } }, { - "id": 1966, + "id": 2580, "properties": { "age": "8", "east": "false", @@ -72268,7 +82686,7 @@ } }, { - "id": 1967, + "id": 2581, "properties": { "age": "8", "east": "false", @@ -72279,7 +82697,7 @@ } }, { - "id": 1968, + "id": 2582, "properties": { "age": "8", "east": "false", @@ -72290,7 +82708,7 @@ } }, { - "id": 1969, + "id": 2583, "properties": { "age": "8", "east": "false", @@ -72301,7 +82719,7 @@ } }, { - "id": 1970, + "id": 2584, "properties": { "age": "8", "east": "false", @@ -72312,7 +82730,7 @@ } }, { - "id": 1971, + "id": 2585, "properties": { "age": "8", "east": "false", @@ -72323,7 +82741,7 @@ } }, { - "id": 1972, + "id": 2586, "properties": { "age": "8", "east": "false", @@ -72334,7 +82752,7 @@ } }, { - "id": 1973, + "id": 2587, "properties": { "age": "8", "east": "false", @@ -72345,7 +82763,7 @@ } }, { - "id": 1974, + "id": 2588, "properties": { "age": "8", "east": "false", @@ -72356,7 +82774,7 @@ } }, { - "id": 1975, + "id": 2589, "properties": { "age": "8", "east": "false", @@ -72367,7 +82785,7 @@ } }, { - "id": 1976, + "id": 2590, "properties": { "age": "8", "east": "false", @@ -72378,7 +82796,7 @@ } }, { - "id": 1977, + "id": 2591, "properties": { "age": "8", "east": "false", @@ -72389,7 +82807,7 @@ } }, { - "id": 1978, + "id": 2592, "properties": { "age": "8", "east": "false", @@ -72400,7 +82818,7 @@ } }, { - "id": 1979, + "id": 2593, "properties": { "age": "8", "east": "false", @@ -72411,7 +82829,7 @@ } }, { - "id": 1980, + "id": 2594, "properties": { "age": "8", "east": "false", @@ -72422,7 +82840,7 @@ } }, { - "id": 1981, + "id": 2595, "properties": { "age": "8", "east": "false", @@ -72433,7 +82851,7 @@ } }, { - "id": 1982, + "id": 2596, "properties": { "age": "9", "east": "true", @@ -72444,7 +82862,7 @@ } }, { - "id": 1983, + "id": 2597, "properties": { "age": "9", "east": "true", @@ -72455,7 +82873,7 @@ } }, { - "id": 1984, + "id": 2598, "properties": { "age": "9", "east": "true", @@ -72466,7 +82884,7 @@ } }, { - "id": 1985, + "id": 2599, "properties": { "age": "9", "east": "true", @@ -72477,7 +82895,7 @@ } }, { - "id": 1986, + "id": 2600, "properties": { "age": "9", "east": "true", @@ -72488,7 +82906,7 @@ } }, { - "id": 1987, + "id": 2601, "properties": { "age": "9", "east": "true", @@ -72499,7 +82917,7 @@ } }, { - "id": 1988, + "id": 2602, "properties": { "age": "9", "east": "true", @@ -72510,7 +82928,7 @@ } }, { - "id": 1989, + "id": 2603, "properties": { "age": "9", "east": "true", @@ -72521,7 +82939,7 @@ } }, { - "id": 1990, + "id": 2604, "properties": { "age": "9", "east": "true", @@ -72532,7 +82950,7 @@ } }, { - "id": 1991, + "id": 2605, "properties": { "age": "9", "east": "true", @@ -72543,7 +82961,7 @@ } }, { - "id": 1992, + "id": 2606, "properties": { "age": "9", "east": "true", @@ -72554,7 +82972,7 @@ } }, { - "id": 1993, + "id": 2607, "properties": { "age": "9", "east": "true", @@ -72565,7 +82983,7 @@ } }, { - "id": 1994, + "id": 2608, "properties": { "age": "9", "east": "true", @@ -72576,7 +82994,7 @@ } }, { - "id": 1995, + "id": 2609, "properties": { "age": "9", "east": "true", @@ -72587,7 +83005,7 @@ } }, { - "id": 1996, + "id": 2610, "properties": { "age": "9", "east": "true", @@ -72598,7 +83016,7 @@ } }, { - "id": 1997, + "id": 2611, "properties": { "age": "9", "east": "true", @@ -72609,7 +83027,7 @@ } }, { - "id": 1998, + "id": 2612, "properties": { "age": "9", "east": "false", @@ -72620,7 +83038,7 @@ } }, { - "id": 1999, + "id": 2613, "properties": { "age": "9", "east": "false", @@ -72631,7 +83049,7 @@ } }, { - "id": 2000, + "id": 2614, "properties": { "age": "9", "east": "false", @@ -72642,7 +83060,7 @@ } }, { - "id": 2001, + "id": 2615, "properties": { "age": "9", "east": "false", @@ -72653,7 +83071,7 @@ } }, { - "id": 2002, + "id": 2616, "properties": { "age": "9", "east": "false", @@ -72664,7 +83082,7 @@ } }, { - "id": 2003, + "id": 2617, "properties": { "age": "9", "east": "false", @@ -72675,7 +83093,7 @@ } }, { - "id": 2004, + "id": 2618, "properties": { "age": "9", "east": "false", @@ -72686,7 +83104,7 @@ } }, { - "id": 2005, + "id": 2619, "properties": { "age": "9", "east": "false", @@ -72697,7 +83115,7 @@ } }, { - "id": 2006, + "id": 2620, "properties": { "age": "9", "east": "false", @@ -72708,7 +83126,7 @@ } }, { - "id": 2007, + "id": 2621, "properties": { "age": "9", "east": "false", @@ -72719,7 +83137,7 @@ } }, { - "id": 2008, + "id": 2622, "properties": { "age": "9", "east": "false", @@ -72730,7 +83148,7 @@ } }, { - "id": 2009, + "id": 2623, "properties": { "age": "9", "east": "false", @@ -72741,7 +83159,7 @@ } }, { - "id": 2010, + "id": 2624, "properties": { "age": "9", "east": "false", @@ -72752,7 +83170,7 @@ } }, { - "id": 2011, + "id": 2625, "properties": { "age": "9", "east": "false", @@ -72763,7 +83181,7 @@ } }, { - "id": 2012, + "id": 2626, "properties": { "age": "9", "east": "false", @@ -72774,7 +83192,7 @@ } }, { - "id": 2013, + "id": 2627, "properties": { "age": "9", "east": "false", @@ -72785,7 +83203,7 @@ } }, { - "id": 2014, + "id": 2628, "properties": { "age": "10", "east": "true", @@ -72796,7 +83214,7 @@ } }, { - "id": 2015, + "id": 2629, "properties": { "age": "10", "east": "true", @@ -72807,7 +83225,7 @@ } }, { - "id": 2016, + "id": 2630, "properties": { "age": "10", "east": "true", @@ -72818,7 +83236,7 @@ } }, { - "id": 2017, + "id": 2631, "properties": { "age": "10", "east": "true", @@ -72829,7 +83247,7 @@ } }, { - "id": 2018, + "id": 2632, "properties": { "age": "10", "east": "true", @@ -72840,7 +83258,7 @@ } }, { - "id": 2019, + "id": 2633, "properties": { "age": "10", "east": "true", @@ -72851,7 +83269,7 @@ } }, { - "id": 2020, + "id": 2634, "properties": { "age": "10", "east": "true", @@ -72862,7 +83280,7 @@ } }, { - "id": 2021, + "id": 2635, "properties": { "age": "10", "east": "true", @@ -72873,7 +83291,7 @@ } }, { - "id": 2022, + "id": 2636, "properties": { "age": "10", "east": "true", @@ -72884,7 +83302,7 @@ } }, { - "id": 2023, + "id": 2637, "properties": { "age": "10", "east": "true", @@ -72895,7 +83313,7 @@ } }, { - "id": 2024, + "id": 2638, "properties": { "age": "10", "east": "true", @@ -72906,7 +83324,7 @@ } }, { - "id": 2025, + "id": 2639, "properties": { "age": "10", "east": "true", @@ -72917,7 +83335,7 @@ } }, { - "id": 2026, + "id": 2640, "properties": { "age": "10", "east": "true", @@ -72928,7 +83346,7 @@ } }, { - "id": 2027, + "id": 2641, "properties": { "age": "10", "east": "true", @@ -72939,7 +83357,7 @@ } }, { - "id": 2028, + "id": 2642, "properties": { "age": "10", "east": "true", @@ -72950,7 +83368,7 @@ } }, { - "id": 2029, + "id": 2643, "properties": { "age": "10", "east": "true", @@ -72961,7 +83379,7 @@ } }, { - "id": 2030, + "id": 2644, "properties": { "age": "10", "east": "false", @@ -72972,7 +83390,7 @@ } }, { - "id": 2031, + "id": 2645, "properties": { "age": "10", "east": "false", @@ -72983,7 +83401,7 @@ } }, { - "id": 2032, + "id": 2646, "properties": { "age": "10", "east": "false", @@ -72994,7 +83412,7 @@ } }, { - "id": 2033, + "id": 2647, "properties": { "age": "10", "east": "false", @@ -73005,7 +83423,7 @@ } }, { - "id": 2034, + "id": 2648, "properties": { "age": "10", "east": "false", @@ -73016,7 +83434,7 @@ } }, { - "id": 2035, + "id": 2649, "properties": { "age": "10", "east": "false", @@ -73027,7 +83445,7 @@ } }, { - "id": 2036, + "id": 2650, "properties": { "age": "10", "east": "false", @@ -73038,7 +83456,7 @@ } }, { - "id": 2037, + "id": 2651, "properties": { "age": "10", "east": "false", @@ -73049,7 +83467,7 @@ } }, { - "id": 2038, + "id": 2652, "properties": { "age": "10", "east": "false", @@ -73060,7 +83478,7 @@ } }, { - "id": 2039, + "id": 2653, "properties": { "age": "10", "east": "false", @@ -73071,7 +83489,7 @@ } }, { - "id": 2040, + "id": 2654, "properties": { "age": "10", "east": "false", @@ -73082,7 +83500,7 @@ } }, { - "id": 2041, + "id": 2655, "properties": { "age": "10", "east": "false", @@ -73093,7 +83511,7 @@ } }, { - "id": 2042, + "id": 2656, "properties": { "age": "10", "east": "false", @@ -73104,7 +83522,7 @@ } }, { - "id": 2043, + "id": 2657, "properties": { "age": "10", "east": "false", @@ -73115,7 +83533,7 @@ } }, { - "id": 2044, + "id": 2658, "properties": { "age": "10", "east": "false", @@ -73126,7 +83544,7 @@ } }, { - "id": 2045, + "id": 2659, "properties": { "age": "10", "east": "false", @@ -73137,7 +83555,7 @@ } }, { - "id": 2046, + "id": 2660, "properties": { "age": "11", "east": "true", @@ -73148,7 +83566,7 @@ } }, { - "id": 2047, + "id": 2661, "properties": { "age": "11", "east": "true", @@ -73159,7 +83577,7 @@ } }, { - "id": 2048, + "id": 2662, "properties": { "age": "11", "east": "true", @@ -73170,7 +83588,7 @@ } }, { - "id": 2049, + "id": 2663, "properties": { "age": "11", "east": "true", @@ -73181,7 +83599,7 @@ } }, { - "id": 2050, + "id": 2664, "properties": { "age": "11", "east": "true", @@ -73192,7 +83610,7 @@ } }, { - "id": 2051, + "id": 2665, "properties": { "age": "11", "east": "true", @@ -73203,7 +83621,7 @@ } }, { - "id": 2052, + "id": 2666, "properties": { "age": "11", "east": "true", @@ -73214,7 +83632,7 @@ } }, { - "id": 2053, + "id": 2667, "properties": { "age": "11", "east": "true", @@ -73225,7 +83643,7 @@ } }, { - "id": 2054, + "id": 2668, "properties": { "age": "11", "east": "true", @@ -73236,7 +83654,7 @@ } }, { - "id": 2055, + "id": 2669, "properties": { "age": "11", "east": "true", @@ -73247,7 +83665,7 @@ } }, { - "id": 2056, + "id": 2670, "properties": { "age": "11", "east": "true", @@ -73258,7 +83676,7 @@ } }, { - "id": 2057, + "id": 2671, "properties": { "age": "11", "east": "true", @@ -73269,7 +83687,7 @@ } }, { - "id": 2058, + "id": 2672, "properties": { "age": "11", "east": "true", @@ -73280,7 +83698,7 @@ } }, { - "id": 2059, + "id": 2673, "properties": { "age": "11", "east": "true", @@ -73291,7 +83709,7 @@ } }, { - "id": 2060, + "id": 2674, "properties": { "age": "11", "east": "true", @@ -73302,7 +83720,7 @@ } }, { - "id": 2061, + "id": 2675, "properties": { "age": "11", "east": "true", @@ -73313,7 +83731,7 @@ } }, { - "id": 2062, + "id": 2676, "properties": { "age": "11", "east": "false", @@ -73324,7 +83742,7 @@ } }, { - "id": 2063, + "id": 2677, "properties": { "age": "11", "east": "false", @@ -73335,7 +83753,7 @@ } }, { - "id": 2064, + "id": 2678, "properties": { "age": "11", "east": "false", @@ -73346,7 +83764,7 @@ } }, { - "id": 2065, + "id": 2679, "properties": { "age": "11", "east": "false", @@ -73357,7 +83775,7 @@ } }, { - "id": 2066, + "id": 2680, "properties": { "age": "11", "east": "false", @@ -73368,7 +83786,7 @@ } }, { - "id": 2067, + "id": 2681, "properties": { "age": "11", "east": "false", @@ -73379,7 +83797,7 @@ } }, { - "id": 2068, + "id": 2682, "properties": { "age": "11", "east": "false", @@ -73390,7 +83808,7 @@ } }, { - "id": 2069, + "id": 2683, "properties": { "age": "11", "east": "false", @@ -73401,7 +83819,7 @@ } }, { - "id": 2070, + "id": 2684, "properties": { "age": "11", "east": "false", @@ -73412,7 +83830,7 @@ } }, { - "id": 2071, + "id": 2685, "properties": { "age": "11", "east": "false", @@ -73423,7 +83841,7 @@ } }, { - "id": 2072, + "id": 2686, "properties": { "age": "11", "east": "false", @@ -73434,7 +83852,7 @@ } }, { - "id": 2073, + "id": 2687, "properties": { "age": "11", "east": "false", @@ -73445,7 +83863,7 @@ } }, { - "id": 2074, + "id": 2688, "properties": { "age": "11", "east": "false", @@ -73456,7 +83874,7 @@ } }, { - "id": 2075, + "id": 2689, "properties": { "age": "11", "east": "false", @@ -73467,7 +83885,7 @@ } }, { - "id": 2076, + "id": 2690, "properties": { "age": "11", "east": "false", @@ -73478,7 +83896,7 @@ } }, { - "id": 2077, + "id": 2691, "properties": { "age": "11", "east": "false", @@ -73489,7 +83907,7 @@ } }, { - "id": 2078, + "id": 2692, "properties": { "age": "12", "east": "true", @@ -73500,7 +83918,7 @@ } }, { - "id": 2079, + "id": 2693, "properties": { "age": "12", "east": "true", @@ -73511,7 +83929,7 @@ } }, { - "id": 2080, + "id": 2694, "properties": { "age": "12", "east": "true", @@ -73522,7 +83940,7 @@ } }, { - "id": 2081, + "id": 2695, "properties": { "age": "12", "east": "true", @@ -73533,7 +83951,7 @@ } }, { - "id": 2082, + "id": 2696, "properties": { "age": "12", "east": "true", @@ -73544,7 +83962,7 @@ } }, { - "id": 2083, + "id": 2697, "properties": { "age": "12", "east": "true", @@ -73555,7 +83973,7 @@ } }, { - "id": 2084, + "id": 2698, "properties": { "age": "12", "east": "true", @@ -73566,7 +83984,7 @@ } }, { - "id": 2085, + "id": 2699, "properties": { "age": "12", "east": "true", @@ -73577,7 +83995,7 @@ } }, { - "id": 2086, + "id": 2700, "properties": { "age": "12", "east": "true", @@ -73588,7 +84006,7 @@ } }, { - "id": 2087, + "id": 2701, "properties": { "age": "12", "east": "true", @@ -73599,7 +84017,7 @@ } }, { - "id": 2088, + "id": 2702, "properties": { "age": "12", "east": "true", @@ -73610,7 +84028,7 @@ } }, { - "id": 2089, + "id": 2703, "properties": { "age": "12", "east": "true", @@ -73621,7 +84039,7 @@ } }, { - "id": 2090, + "id": 2704, "properties": { "age": "12", "east": "true", @@ -73632,7 +84050,7 @@ } }, { - "id": 2091, + "id": 2705, "properties": { "age": "12", "east": "true", @@ -73643,7 +84061,7 @@ } }, { - "id": 2092, + "id": 2706, "properties": { "age": "12", "east": "true", @@ -73654,7 +84072,7 @@ } }, { - "id": 2093, + "id": 2707, "properties": { "age": "12", "east": "true", @@ -73665,7 +84083,7 @@ } }, { - "id": 2094, + "id": 2708, "properties": { "age": "12", "east": "false", @@ -73676,7 +84094,7 @@ } }, { - "id": 2095, + "id": 2709, "properties": { "age": "12", "east": "false", @@ -73687,7 +84105,7 @@ } }, { - "id": 2096, + "id": 2710, "properties": { "age": "12", "east": "false", @@ -73698,7 +84116,7 @@ } }, { - "id": 2097, + "id": 2711, "properties": { "age": "12", "east": "false", @@ -73709,7 +84127,7 @@ } }, { - "id": 2098, + "id": 2712, "properties": { "age": "12", "east": "false", @@ -73720,7 +84138,7 @@ } }, { - "id": 2099, + "id": 2713, "properties": { "age": "12", "east": "false", @@ -73731,7 +84149,7 @@ } }, { - "id": 2100, + "id": 2714, "properties": { "age": "12", "east": "false", @@ -73742,7 +84160,7 @@ } }, { - "id": 2101, + "id": 2715, "properties": { "age": "12", "east": "false", @@ -73753,7 +84171,7 @@ } }, { - "id": 2102, + "id": 2716, "properties": { "age": "12", "east": "false", @@ -73764,7 +84182,7 @@ } }, { - "id": 2103, + "id": 2717, "properties": { "age": "12", "east": "false", @@ -73775,7 +84193,7 @@ } }, { - "id": 2104, + "id": 2718, "properties": { "age": "12", "east": "false", @@ -73786,7 +84204,7 @@ } }, { - "id": 2105, + "id": 2719, "properties": { "age": "12", "east": "false", @@ -73797,7 +84215,7 @@ } }, { - "id": 2106, + "id": 2720, "properties": { "age": "12", "east": "false", @@ -73808,7 +84226,7 @@ } }, { - "id": 2107, + "id": 2721, "properties": { "age": "12", "east": "false", @@ -73819,7 +84237,7 @@ } }, { - "id": 2108, + "id": 2722, "properties": { "age": "12", "east": "false", @@ -73830,7 +84248,7 @@ } }, { - "id": 2109, + "id": 2723, "properties": { "age": "12", "east": "false", @@ -73841,7 +84259,7 @@ } }, { - "id": 2110, + "id": 2724, "properties": { "age": "13", "east": "true", @@ -73852,7 +84270,7 @@ } }, { - "id": 2111, + "id": 2725, "properties": { "age": "13", "east": "true", @@ -73863,7 +84281,7 @@ } }, { - "id": 2112, + "id": 2726, "properties": { "age": "13", "east": "true", @@ -73874,7 +84292,7 @@ } }, { - "id": 2113, + "id": 2727, "properties": { "age": "13", "east": "true", @@ -73885,7 +84303,7 @@ } }, { - "id": 2114, + "id": 2728, "properties": { "age": "13", "east": "true", @@ -73896,7 +84314,7 @@ } }, { - "id": 2115, + "id": 2729, "properties": { "age": "13", "east": "true", @@ -73907,7 +84325,7 @@ } }, { - "id": 2116, + "id": 2730, "properties": { "age": "13", "east": "true", @@ -73918,7 +84336,7 @@ } }, { - "id": 2117, + "id": 2731, "properties": { "age": "13", "east": "true", @@ -73929,7 +84347,7 @@ } }, { - "id": 2118, + "id": 2732, "properties": { "age": "13", "east": "true", @@ -73940,7 +84358,7 @@ } }, { - "id": 2119, + "id": 2733, "properties": { "age": "13", "east": "true", @@ -73951,7 +84369,7 @@ } }, { - "id": 2120, + "id": 2734, "properties": { "age": "13", "east": "true", @@ -73962,7 +84380,7 @@ } }, { - "id": 2121, + "id": 2735, "properties": { "age": "13", "east": "true", @@ -73973,7 +84391,7 @@ } }, { - "id": 2122, + "id": 2736, "properties": { "age": "13", "east": "true", @@ -73984,7 +84402,7 @@ } }, { - "id": 2123, + "id": 2737, "properties": { "age": "13", "east": "true", @@ -73995,7 +84413,7 @@ } }, { - "id": 2124, + "id": 2738, "properties": { "age": "13", "east": "true", @@ -74006,7 +84424,7 @@ } }, { - "id": 2125, + "id": 2739, "properties": { "age": "13", "east": "true", @@ -74017,7 +84435,7 @@ } }, { - "id": 2126, + "id": 2740, "properties": { "age": "13", "east": "false", @@ -74028,7 +84446,7 @@ } }, { - "id": 2127, + "id": 2741, "properties": { "age": "13", "east": "false", @@ -74039,7 +84457,7 @@ } }, { - "id": 2128, + "id": 2742, "properties": { "age": "13", "east": "false", @@ -74050,7 +84468,7 @@ } }, { - "id": 2129, + "id": 2743, "properties": { "age": "13", "east": "false", @@ -74061,7 +84479,7 @@ } }, { - "id": 2130, + "id": 2744, "properties": { "age": "13", "east": "false", @@ -74072,7 +84490,7 @@ } }, { - "id": 2131, + "id": 2745, "properties": { "age": "13", "east": "false", @@ -74083,7 +84501,7 @@ } }, { - "id": 2132, + "id": 2746, "properties": { "age": "13", "east": "false", @@ -74094,7 +84512,7 @@ } }, { - "id": 2133, + "id": 2747, "properties": { "age": "13", "east": "false", @@ -74105,7 +84523,7 @@ } }, { - "id": 2134, + "id": 2748, "properties": { "age": "13", "east": "false", @@ -74116,7 +84534,7 @@ } }, { - "id": 2135, + "id": 2749, "properties": { "age": "13", "east": "false", @@ -74127,7 +84545,7 @@ } }, { - "id": 2136, + "id": 2750, "properties": { "age": "13", "east": "false", @@ -74138,7 +84556,7 @@ } }, { - "id": 2137, + "id": 2751, "properties": { "age": "13", "east": "false", @@ -74149,7 +84567,7 @@ } }, { - "id": 2138, + "id": 2752, "properties": { "age": "13", "east": "false", @@ -74160,7 +84578,7 @@ } }, { - "id": 2139, + "id": 2753, "properties": { "age": "13", "east": "false", @@ -74171,7 +84589,7 @@ } }, { - "id": 2140, + "id": 2754, "properties": { "age": "13", "east": "false", @@ -74182,7 +84600,7 @@ } }, { - "id": 2141, + "id": 2755, "properties": { "age": "13", "east": "false", @@ -74193,7 +84611,7 @@ } }, { - "id": 2142, + "id": 2756, "properties": { "age": "14", "east": "true", @@ -74204,7 +84622,7 @@ } }, { - "id": 2143, + "id": 2757, "properties": { "age": "14", "east": "true", @@ -74215,7 +84633,7 @@ } }, { - "id": 2144, + "id": 2758, "properties": { "age": "14", "east": "true", @@ -74226,7 +84644,7 @@ } }, { - "id": 2145, + "id": 2759, "properties": { "age": "14", "east": "true", @@ -74237,7 +84655,7 @@ } }, { - "id": 2146, + "id": 2760, "properties": { "age": "14", "east": "true", @@ -74248,7 +84666,7 @@ } }, { - "id": 2147, + "id": 2761, "properties": { "age": "14", "east": "true", @@ -74259,7 +84677,7 @@ } }, { - "id": 2148, + "id": 2762, "properties": { "age": "14", "east": "true", @@ -74270,7 +84688,7 @@ } }, { - "id": 2149, + "id": 2763, "properties": { "age": "14", "east": "true", @@ -74281,7 +84699,7 @@ } }, { - "id": 2150, + "id": 2764, "properties": { "age": "14", "east": "true", @@ -74292,7 +84710,7 @@ } }, { - "id": 2151, + "id": 2765, "properties": { "age": "14", "east": "true", @@ -74303,7 +84721,7 @@ } }, { - "id": 2152, + "id": 2766, "properties": { "age": "14", "east": "true", @@ -74314,7 +84732,7 @@ } }, { - "id": 2153, + "id": 2767, "properties": { "age": "14", "east": "true", @@ -74325,7 +84743,7 @@ } }, { - "id": 2154, + "id": 2768, "properties": { "age": "14", "east": "true", @@ -74336,7 +84754,7 @@ } }, { - "id": 2155, + "id": 2769, "properties": { "age": "14", "east": "true", @@ -74347,7 +84765,7 @@ } }, { - "id": 2156, + "id": 2770, "properties": { "age": "14", "east": "true", @@ -74358,7 +84776,7 @@ } }, { - "id": 2157, + "id": 2771, "properties": { "age": "14", "east": "true", @@ -74369,7 +84787,7 @@ } }, { - "id": 2158, + "id": 2772, "properties": { "age": "14", "east": "false", @@ -74380,7 +84798,7 @@ } }, { - "id": 2159, + "id": 2773, "properties": { "age": "14", "east": "false", @@ -74391,7 +84809,7 @@ } }, { - "id": 2160, + "id": 2774, "properties": { "age": "14", "east": "false", @@ -74402,7 +84820,7 @@ } }, { - "id": 2161, + "id": 2775, "properties": { "age": "14", "east": "false", @@ -74413,7 +84831,7 @@ } }, { - "id": 2162, + "id": 2776, "properties": { "age": "14", "east": "false", @@ -74424,7 +84842,7 @@ } }, { - "id": 2163, + "id": 2777, "properties": { "age": "14", "east": "false", @@ -74435,7 +84853,7 @@ } }, { - "id": 2164, + "id": 2778, "properties": { "age": "14", "east": "false", @@ -74446,7 +84864,7 @@ } }, { - "id": 2165, + "id": 2779, "properties": { "age": "14", "east": "false", @@ -74457,7 +84875,7 @@ } }, { - "id": 2166, + "id": 2780, "properties": { "age": "14", "east": "false", @@ -74468,7 +84886,7 @@ } }, { - "id": 2167, + "id": 2781, "properties": { "age": "14", "east": "false", @@ -74479,7 +84897,7 @@ } }, { - "id": 2168, + "id": 2782, "properties": { "age": "14", "east": "false", @@ -74490,7 +84908,7 @@ } }, { - "id": 2169, + "id": 2783, "properties": { "age": "14", "east": "false", @@ -74501,7 +84919,7 @@ } }, { - "id": 2170, + "id": 2784, "properties": { "age": "14", "east": "false", @@ -74512,7 +84930,7 @@ } }, { - "id": 2171, + "id": 2785, "properties": { "age": "14", "east": "false", @@ -74523,7 +84941,7 @@ } }, { - "id": 2172, + "id": 2786, "properties": { "age": "14", "east": "false", @@ -74534,7 +84952,7 @@ } }, { - "id": 2173, + "id": 2787, "properties": { "age": "14", "east": "false", @@ -74545,7 +84963,7 @@ } }, { - "id": 2174, + "id": 2788, "properties": { "age": "15", "east": "true", @@ -74556,7 +84974,7 @@ } }, { - "id": 2175, + "id": 2789, "properties": { "age": "15", "east": "true", @@ -74567,7 +84985,7 @@ } }, { - "id": 2176, + "id": 2790, "properties": { "age": "15", "east": "true", @@ -74578,7 +84996,7 @@ } }, { - "id": 2177, + "id": 2791, "properties": { "age": "15", "east": "true", @@ -74589,7 +85007,7 @@ } }, { - "id": 2178, + "id": 2792, "properties": { "age": "15", "east": "true", @@ -74600,7 +85018,7 @@ } }, { - "id": 2179, + "id": 2793, "properties": { "age": "15", "east": "true", @@ -74611,7 +85029,7 @@ } }, { - "id": 2180, + "id": 2794, "properties": { "age": "15", "east": "true", @@ -74622,7 +85040,7 @@ } }, { - "id": 2181, + "id": 2795, "properties": { "age": "15", "east": "true", @@ -74633,7 +85051,7 @@ } }, { - "id": 2182, + "id": 2796, "properties": { "age": "15", "east": "true", @@ -74644,7 +85062,7 @@ } }, { - "id": 2183, + "id": 2797, "properties": { "age": "15", "east": "true", @@ -74655,7 +85073,7 @@ } }, { - "id": 2184, + "id": 2798, "properties": { "age": "15", "east": "true", @@ -74666,7 +85084,7 @@ } }, { - "id": 2185, + "id": 2799, "properties": { "age": "15", "east": "true", @@ -74677,7 +85095,7 @@ } }, { - "id": 2186, + "id": 2800, "properties": { "age": "15", "east": "true", @@ -74688,7 +85106,7 @@ } }, { - "id": 2187, + "id": 2801, "properties": { "age": "15", "east": "true", @@ -74699,7 +85117,7 @@ } }, { - "id": 2188, + "id": 2802, "properties": { "age": "15", "east": "true", @@ -74710,7 +85128,7 @@ } }, { - "id": 2189, + "id": 2803, "properties": { "age": "15", "east": "true", @@ -74721,7 +85139,7 @@ } }, { - "id": 2190, + "id": 2804, "properties": { "age": "15", "east": "false", @@ -74732,7 +85150,7 @@ } }, { - "id": 2191, + "id": 2805, "properties": { "age": "15", "east": "false", @@ -74743,7 +85161,7 @@ } }, { - "id": 2192, + "id": 2806, "properties": { "age": "15", "east": "false", @@ -74754,7 +85172,7 @@ } }, { - "id": 2193, + "id": 2807, "properties": { "age": "15", "east": "false", @@ -74765,7 +85183,7 @@ } }, { - "id": 2194, + "id": 2808, "properties": { "age": "15", "east": "false", @@ -74776,7 +85194,7 @@ } }, { - "id": 2195, + "id": 2809, "properties": { "age": "15", "east": "false", @@ -74787,7 +85205,7 @@ } }, { - "id": 2196, + "id": 2810, "properties": { "age": "15", "east": "false", @@ -74798,7 +85216,7 @@ } }, { - "id": 2197, + "id": 2811, "properties": { "age": "15", "east": "false", @@ -74809,7 +85227,7 @@ } }, { - "id": 2198, + "id": 2812, "properties": { "age": "15", "east": "false", @@ -74820,7 +85238,7 @@ } }, { - "id": 2199, + "id": 2813, "properties": { "age": "15", "east": "false", @@ -74831,7 +85249,7 @@ } }, { - "id": 2200, + "id": 2814, "properties": { "age": "15", "east": "false", @@ -74842,7 +85260,7 @@ } }, { - "id": 2201, + "id": 2815, "properties": { "age": "15", "east": "false", @@ -74853,7 +85271,7 @@ } }, { - "id": 2202, + "id": 2816, "properties": { "age": "15", "east": "false", @@ -74864,7 +85282,7 @@ } }, { - "id": 2203, + "id": 2817, "properties": { "age": "15", "east": "false", @@ -74875,7 +85293,7 @@ } }, { - "id": 2204, + "id": 2818, "properties": { "age": "15", "east": "false", @@ -74886,7 +85304,7 @@ } }, { - "id": 2205, + "id": 2819, "properties": { "age": "15", "east": "false", @@ -74908,13 +85326,13 @@ "states": [ { "default": true, - "id": 10417, + "id": 12201, "properties": { "waterlogged": "true" } }, { - "id": 10418, + "id": 12202, "properties": { "waterlogged": "false" } @@ -74925,7 +85343,7 @@ "states": [ { "default": true, - "id": 10399 + "id": 12183 } ] }, @@ -74939,13 +85357,13 @@ "states": [ { "default": true, - "id": 10437, + "id": 12221, "properties": { "waterlogged": "true" } }, { - "id": 10438, + "id": 12222, "properties": { "waterlogged": "false" } @@ -74968,56 +85386,56 @@ "states": [ { "default": true, - "id": 10505, + "id": 12289, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 10506, + "id": 12290, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 10507, + "id": 12291, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 10508, + "id": 12292, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 10509, + "id": 12293, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 10510, + "id": 12294, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 10511, + "id": 12295, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 10512, + "id": 12296, "properties": { "facing": "east", "waterlogged": "false" @@ -75029,7 +85447,7 @@ "states": [ { "default": true, - "id": 16025 + "id": 17809 } ] }, @@ -75037,7 +85455,7 @@ "states": [ { "default": true, - "id": 6897 + "id": 8337 } ] }, @@ -75045,7 +85463,7 @@ "states": [ { "default": true, - "id": 19715 + "id": 21499 } ] }, @@ -75070,74 +85488,10 @@ ] }, "states": [ - { - "id": 430, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 431, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 432, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 433, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 434, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 435, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 436, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 437, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, { "id": 438, "properties": { - "distance": "3", + "distance": "1", "persistent": "true", "waterlogged": "true" } @@ -75145,7 +85499,7 @@ { "id": 439, "properties": { - "distance": "3", + "distance": "1", "persistent": "true", "waterlogged": "false" } @@ -75153,7 +85507,7 @@ { "id": 440, "properties": { - "distance": "3", + "distance": "1", "persistent": "false", "waterlogged": "true" } @@ -75161,7 +85515,7 @@ { "id": 441, "properties": { - "distance": "3", + "distance": "1", "persistent": "false", "waterlogged": "false" } @@ -75169,7 +85523,7 @@ { "id": 442, "properties": { - "distance": "4", + "distance": "2", "persistent": "true", "waterlogged": "true" } @@ -75177,7 +85531,7 @@ { "id": 443, "properties": { - "distance": "4", + "distance": "2", "persistent": "true", "waterlogged": "false" } @@ -75185,7 +85539,7 @@ { "id": 444, "properties": { - "distance": "4", + "distance": "2", "persistent": "false", "waterlogged": "true" } @@ -75193,7 +85547,7 @@ { "id": 445, "properties": { - "distance": "4", + "distance": "2", "persistent": "false", "waterlogged": "false" } @@ -75201,7 +85555,7 @@ { "id": 446, "properties": { - "distance": "5", + "distance": "3", "persistent": "true", "waterlogged": "true" } @@ -75209,7 +85563,7 @@ { "id": 447, "properties": { - "distance": "5", + "distance": "3", "persistent": "true", "waterlogged": "false" } @@ -75217,7 +85571,7 @@ { "id": 448, "properties": { - "distance": "5", + "distance": "3", "persistent": "false", "waterlogged": "true" } @@ -75225,7 +85579,7 @@ { "id": 449, "properties": { - "distance": "5", + "distance": "3", "persistent": "false", "waterlogged": "false" } @@ -75233,7 +85587,7 @@ { "id": 450, "properties": { - "distance": "6", + "distance": "4", "persistent": "true", "waterlogged": "true" } @@ -75241,7 +85595,7 @@ { "id": 451, "properties": { - "distance": "6", + "distance": "4", "persistent": "true", "waterlogged": "false" } @@ -75249,7 +85603,7 @@ { "id": 452, "properties": { - "distance": "6", + "distance": "4", "persistent": "false", "waterlogged": "true" } @@ -75257,7 +85611,7 @@ { "id": 453, "properties": { - "distance": "6", + "distance": "4", "persistent": "false", "waterlogged": "false" } @@ -75265,7 +85619,7 @@ { "id": 454, "properties": { - "distance": "7", + "distance": "5", "persistent": "true", "waterlogged": "true" } @@ -75273,13 +85627,77 @@ { "id": 455, "properties": { - "distance": "7", + "distance": "5", "persistent": "true", "waterlogged": "false" } }, { "id": 456, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 457, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 458, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 459, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 460, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 461, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 462, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 463, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 464, "properties": { "distance": "7", "persistent": "false", @@ -75288,7 +85706,7 @@ }, { "default": true, - "id": 457, + "id": 465, "properties": { "distance": "7", "persistent": "false", @@ -75301,7 +85719,7 @@ "states": [ { "default": true, - "id": 21446 + "id": 23230 } ] }, @@ -75317,25 +85735,25 @@ "states": [ { "default": true, - "id": 10130, + "id": 11914, "properties": { "age": "0" } }, { - "id": 10131, + "id": 11915, "properties": { "age": "1" } }, { - "id": 10132, + "id": 11916, "properties": { "age": "2" } }, { - "id": 10133, + "id": 11917, "properties": { "age": "3" } @@ -75357,7 +85775,7 @@ }, "states": [ { - "id": 3628, + "id": 4242, "properties": { "facing": "north", "lit": "true" @@ -75365,49 +85783,49 @@ }, { "default": true, - "id": 3629, + "id": 4243, "properties": { "facing": "north", "lit": "false" } }, { - "id": 3630, + "id": 4244, "properties": { "facing": "south", "lit": "true" } }, { - "id": 3631, + "id": 4245, "properties": { "facing": "south", "lit": "false" } }, { - "id": 3632, + "id": 4246, "properties": { "facing": "west", "lit": "true" } }, { - "id": 3633, + "id": 4247, "properties": { "facing": "west", "lit": "false" } }, { - "id": 3634, + "id": 4248, "properties": { "facing": "east", "lit": "true" } }, { - "id": 3635, + "id": 4249, "properties": { "facing": "east", "lit": "false" @@ -75419,7 +85837,7 @@ "states": [ { "default": true, - "id": 17873 + "id": 19657 } ] }, @@ -75427,7 +85845,7 @@ "states": [ { "default": true, - "id": 460 + "id": 468 } ] }, @@ -75456,7 +85874,7 @@ }, "states": [ { - "id": 5110, + "id": 6550, "properties": { "east": "true", "north": "true", @@ -75466,7 +85884,7 @@ } }, { - "id": 5111, + "id": 6551, "properties": { "east": "true", "north": "true", @@ -75476,7 +85894,7 @@ } }, { - "id": 5112, + "id": 6552, "properties": { "east": "true", "north": "true", @@ -75486,7 +85904,7 @@ } }, { - "id": 5113, + "id": 6553, "properties": { "east": "true", "north": "true", @@ -75496,7 +85914,7 @@ } }, { - "id": 5114, + "id": 6554, "properties": { "east": "true", "north": "true", @@ -75506,7 +85924,7 @@ } }, { - "id": 5115, + "id": 6555, "properties": { "east": "true", "north": "true", @@ -75516,7 +85934,7 @@ } }, { - "id": 5116, + "id": 6556, "properties": { "east": "true", "north": "true", @@ -75526,7 +85944,7 @@ } }, { - "id": 5117, + "id": 6557, "properties": { "east": "true", "north": "true", @@ -75536,7 +85954,7 @@ } }, { - "id": 5118, + "id": 6558, "properties": { "east": "true", "north": "false", @@ -75546,7 +85964,7 @@ } }, { - "id": 5119, + "id": 6559, "properties": { "east": "true", "north": "false", @@ -75556,7 +85974,7 @@ } }, { - "id": 5120, + "id": 6560, "properties": { "east": "true", "north": "false", @@ -75566,7 +85984,7 @@ } }, { - "id": 5121, + "id": 6561, "properties": { "east": "true", "north": "false", @@ -75576,7 +85994,7 @@ } }, { - "id": 5122, + "id": 6562, "properties": { "east": "true", "north": "false", @@ -75586,7 +86004,7 @@ } }, { - "id": 5123, + "id": 6563, "properties": { "east": "true", "north": "false", @@ -75596,7 +86014,7 @@ } }, { - "id": 5124, + "id": 6564, "properties": { "east": "true", "north": "false", @@ -75606,7 +86024,7 @@ } }, { - "id": 5125, + "id": 6565, "properties": { "east": "true", "north": "false", @@ -75616,7 +86034,7 @@ } }, { - "id": 5126, + "id": 6566, "properties": { "east": "false", "north": "true", @@ -75626,7 +86044,7 @@ } }, { - "id": 5127, + "id": 6567, "properties": { "east": "false", "north": "true", @@ -75636,7 +86054,7 @@ } }, { - "id": 5128, + "id": 6568, "properties": { "east": "false", "north": "true", @@ -75646,7 +86064,7 @@ } }, { - "id": 5129, + "id": 6569, "properties": { "east": "false", "north": "true", @@ -75656,7 +86074,7 @@ } }, { - "id": 5130, + "id": 6570, "properties": { "east": "false", "north": "true", @@ -75666,7 +86084,7 @@ } }, { - "id": 5131, + "id": 6571, "properties": { "east": "false", "north": "true", @@ -75676,7 +86094,7 @@ } }, { - "id": 5132, + "id": 6572, "properties": { "east": "false", "north": "true", @@ -75686,7 +86104,7 @@ } }, { - "id": 5133, + "id": 6573, "properties": { "east": "false", "north": "true", @@ -75696,7 +86114,7 @@ } }, { - "id": 5134, + "id": 6574, "properties": { "east": "false", "north": "false", @@ -75706,7 +86124,7 @@ } }, { - "id": 5135, + "id": 6575, "properties": { "east": "false", "north": "false", @@ -75716,7 +86134,7 @@ } }, { - "id": 5136, + "id": 6576, "properties": { "east": "false", "north": "false", @@ -75726,7 +86144,7 @@ } }, { - "id": 5137, + "id": 6577, "properties": { "east": "false", "north": "false", @@ -75736,7 +86154,7 @@ } }, { - "id": 5138, + "id": 6578, "properties": { "east": "false", "north": "false", @@ -75746,7 +86164,7 @@ } }, { - "id": 5139, + "id": 6579, "properties": { "east": "false", "north": "false", @@ -75756,7 +86174,7 @@ } }, { - "id": 5140, + "id": 6580, "properties": { "east": "false", "north": "false", @@ -75767,7 +86185,7 @@ }, { "default": true, - "id": 5141, + "id": 6581, "properties": { "east": "false", "north": "false", @@ -75811,7 +86229,7 @@ }, "states": [ { - "id": 5199, + "id": 6639, "properties": { "down": "true", "east": "true", @@ -75823,7 +86241,7 @@ } }, { - "id": 5200, + "id": 6640, "properties": { "down": "true", "east": "true", @@ -75835,7 +86253,7 @@ } }, { - "id": 5201, + "id": 6641, "properties": { "down": "true", "east": "true", @@ -75847,7 +86265,7 @@ } }, { - "id": 5202, + "id": 6642, "properties": { "down": "true", "east": "true", @@ -75859,7 +86277,7 @@ } }, { - "id": 5203, + "id": 6643, "properties": { "down": "true", "east": "true", @@ -75871,7 +86289,7 @@ } }, { - "id": 5204, + "id": 6644, "properties": { "down": "true", "east": "true", @@ -75883,7 +86301,7 @@ } }, { - "id": 5205, + "id": 6645, "properties": { "down": "true", "east": "true", @@ -75895,7 +86313,7 @@ } }, { - "id": 5206, + "id": 6646, "properties": { "down": "true", "east": "true", @@ -75907,7 +86325,7 @@ } }, { - "id": 5207, + "id": 6647, "properties": { "down": "true", "east": "true", @@ -75919,7 +86337,7 @@ } }, { - "id": 5208, + "id": 6648, "properties": { "down": "true", "east": "true", @@ -75931,7 +86349,7 @@ } }, { - "id": 5209, + "id": 6649, "properties": { "down": "true", "east": "true", @@ -75943,7 +86361,7 @@ } }, { - "id": 5210, + "id": 6650, "properties": { "down": "true", "east": "true", @@ -75955,7 +86373,7 @@ } }, { - "id": 5211, + "id": 6651, "properties": { "down": "true", "east": "true", @@ -75967,7 +86385,7 @@ } }, { - "id": 5212, + "id": 6652, "properties": { "down": "true", "east": "true", @@ -75979,7 +86397,7 @@ } }, { - "id": 5213, + "id": 6653, "properties": { "down": "true", "east": "true", @@ -75991,7 +86409,7 @@ } }, { - "id": 5214, + "id": 6654, "properties": { "down": "true", "east": "true", @@ -76003,7 +86421,7 @@ } }, { - "id": 5215, + "id": 6655, "properties": { "down": "true", "east": "true", @@ -76015,7 +86433,7 @@ } }, { - "id": 5216, + "id": 6656, "properties": { "down": "true", "east": "true", @@ -76027,7 +86445,7 @@ } }, { - "id": 5217, + "id": 6657, "properties": { "down": "true", "east": "true", @@ -76039,7 +86457,7 @@ } }, { - "id": 5218, + "id": 6658, "properties": { "down": "true", "east": "true", @@ -76051,7 +86469,7 @@ } }, { - "id": 5219, + "id": 6659, "properties": { "down": "true", "east": "true", @@ -76063,7 +86481,7 @@ } }, { - "id": 5220, + "id": 6660, "properties": { "down": "true", "east": "true", @@ -76075,7 +86493,7 @@ } }, { - "id": 5221, + "id": 6661, "properties": { "down": "true", "east": "true", @@ -76087,7 +86505,7 @@ } }, { - "id": 5222, + "id": 6662, "properties": { "down": "true", "east": "true", @@ -76099,7 +86517,7 @@ } }, { - "id": 5223, + "id": 6663, "properties": { "down": "true", "east": "true", @@ -76111,7 +86529,7 @@ } }, { - "id": 5224, + "id": 6664, "properties": { "down": "true", "east": "true", @@ -76123,7 +86541,7 @@ } }, { - "id": 5225, + "id": 6665, "properties": { "down": "true", "east": "true", @@ -76135,7 +86553,7 @@ } }, { - "id": 5226, + "id": 6666, "properties": { "down": "true", "east": "true", @@ -76147,7 +86565,7 @@ } }, { - "id": 5227, + "id": 6667, "properties": { "down": "true", "east": "true", @@ -76159,7 +86577,7 @@ } }, { - "id": 5228, + "id": 6668, "properties": { "down": "true", "east": "true", @@ -76171,7 +86589,7 @@ } }, { - "id": 5229, + "id": 6669, "properties": { "down": "true", "east": "true", @@ -76183,7 +86601,7 @@ } }, { - "id": 5230, + "id": 6670, "properties": { "down": "true", "east": "true", @@ -76195,7 +86613,7 @@ } }, { - "id": 5231, + "id": 6671, "properties": { "down": "true", "east": "false", @@ -76207,7 +86625,7 @@ } }, { - "id": 5232, + "id": 6672, "properties": { "down": "true", "east": "false", @@ -76219,7 +86637,7 @@ } }, { - "id": 5233, + "id": 6673, "properties": { "down": "true", "east": "false", @@ -76231,7 +86649,7 @@ } }, { - "id": 5234, + "id": 6674, "properties": { "down": "true", "east": "false", @@ -76243,7 +86661,7 @@ } }, { - "id": 5235, + "id": 6675, "properties": { "down": "true", "east": "false", @@ -76255,7 +86673,7 @@ } }, { - "id": 5236, + "id": 6676, "properties": { "down": "true", "east": "false", @@ -76267,7 +86685,7 @@ } }, { - "id": 5237, + "id": 6677, "properties": { "down": "true", "east": "false", @@ -76279,7 +86697,7 @@ } }, { - "id": 5238, + "id": 6678, "properties": { "down": "true", "east": "false", @@ -76291,7 +86709,7 @@ } }, { - "id": 5239, + "id": 6679, "properties": { "down": "true", "east": "false", @@ -76303,7 +86721,7 @@ } }, { - "id": 5240, + "id": 6680, "properties": { "down": "true", "east": "false", @@ -76315,7 +86733,7 @@ } }, { - "id": 5241, + "id": 6681, "properties": { "down": "true", "east": "false", @@ -76327,7 +86745,7 @@ } }, { - "id": 5242, + "id": 6682, "properties": { "down": "true", "east": "false", @@ -76339,7 +86757,7 @@ } }, { - "id": 5243, + "id": 6683, "properties": { "down": "true", "east": "false", @@ -76351,7 +86769,7 @@ } }, { - "id": 5244, + "id": 6684, "properties": { "down": "true", "east": "false", @@ -76363,7 +86781,7 @@ } }, { - "id": 5245, + "id": 6685, "properties": { "down": "true", "east": "false", @@ -76375,7 +86793,7 @@ } }, { - "id": 5246, + "id": 6686, "properties": { "down": "true", "east": "false", @@ -76387,7 +86805,7 @@ } }, { - "id": 5247, + "id": 6687, "properties": { "down": "true", "east": "false", @@ -76399,7 +86817,7 @@ } }, { - "id": 5248, + "id": 6688, "properties": { "down": "true", "east": "false", @@ -76411,7 +86829,7 @@ } }, { - "id": 5249, + "id": 6689, "properties": { "down": "true", "east": "false", @@ -76423,7 +86841,7 @@ } }, { - "id": 5250, + "id": 6690, "properties": { "down": "true", "east": "false", @@ -76435,7 +86853,7 @@ } }, { - "id": 5251, + "id": 6691, "properties": { "down": "true", "east": "false", @@ -76447,7 +86865,7 @@ } }, { - "id": 5252, + "id": 6692, "properties": { "down": "true", "east": "false", @@ -76459,7 +86877,7 @@ } }, { - "id": 5253, + "id": 6693, "properties": { "down": "true", "east": "false", @@ -76471,7 +86889,7 @@ } }, { - "id": 5254, + "id": 6694, "properties": { "down": "true", "east": "false", @@ -76483,7 +86901,7 @@ } }, { - "id": 5255, + "id": 6695, "properties": { "down": "true", "east": "false", @@ -76495,7 +86913,7 @@ } }, { - "id": 5256, + "id": 6696, "properties": { "down": "true", "east": "false", @@ -76507,7 +86925,7 @@ } }, { - "id": 5257, + "id": 6697, "properties": { "down": "true", "east": "false", @@ -76519,7 +86937,7 @@ } }, { - "id": 5258, + "id": 6698, "properties": { "down": "true", "east": "false", @@ -76531,7 +86949,7 @@ } }, { - "id": 5259, + "id": 6699, "properties": { "down": "true", "east": "false", @@ -76543,7 +86961,7 @@ } }, { - "id": 5260, + "id": 6700, "properties": { "down": "true", "east": "false", @@ -76555,7 +86973,7 @@ } }, { - "id": 5261, + "id": 6701, "properties": { "down": "true", "east": "false", @@ -76567,7 +86985,7 @@ } }, { - "id": 5262, + "id": 6702, "properties": { "down": "true", "east": "false", @@ -76579,7 +86997,7 @@ } }, { - "id": 5263, + "id": 6703, "properties": { "down": "false", "east": "true", @@ -76591,7 +87009,7 @@ } }, { - "id": 5264, + "id": 6704, "properties": { "down": "false", "east": "true", @@ -76603,7 +87021,7 @@ } }, { - "id": 5265, + "id": 6705, "properties": { "down": "false", "east": "true", @@ -76615,7 +87033,7 @@ } }, { - "id": 5266, + "id": 6706, "properties": { "down": "false", "east": "true", @@ -76627,7 +87045,7 @@ } }, { - "id": 5267, + "id": 6707, "properties": { "down": "false", "east": "true", @@ -76639,7 +87057,7 @@ } }, { - "id": 5268, + "id": 6708, "properties": { "down": "false", "east": "true", @@ -76651,7 +87069,7 @@ } }, { - "id": 5269, + "id": 6709, "properties": { "down": "false", "east": "true", @@ -76663,7 +87081,7 @@ } }, { - "id": 5270, + "id": 6710, "properties": { "down": "false", "east": "true", @@ -76675,7 +87093,7 @@ } }, { - "id": 5271, + "id": 6711, "properties": { "down": "false", "east": "true", @@ -76687,7 +87105,7 @@ } }, { - "id": 5272, + "id": 6712, "properties": { "down": "false", "east": "true", @@ -76699,7 +87117,7 @@ } }, { - "id": 5273, + "id": 6713, "properties": { "down": "false", "east": "true", @@ -76711,7 +87129,7 @@ } }, { - "id": 5274, + "id": 6714, "properties": { "down": "false", "east": "true", @@ -76723,7 +87141,7 @@ } }, { - "id": 5275, + "id": 6715, "properties": { "down": "false", "east": "true", @@ -76735,7 +87153,7 @@ } }, { - "id": 5276, + "id": 6716, "properties": { "down": "false", "east": "true", @@ -76747,7 +87165,7 @@ } }, { - "id": 5277, + "id": 6717, "properties": { "down": "false", "east": "true", @@ -76759,7 +87177,7 @@ } }, { - "id": 5278, + "id": 6718, "properties": { "down": "false", "east": "true", @@ -76771,7 +87189,7 @@ } }, { - "id": 5279, + "id": 6719, "properties": { "down": "false", "east": "true", @@ -76783,7 +87201,7 @@ } }, { - "id": 5280, + "id": 6720, "properties": { "down": "false", "east": "true", @@ -76795,7 +87213,7 @@ } }, { - "id": 5281, + "id": 6721, "properties": { "down": "false", "east": "true", @@ -76807,7 +87225,7 @@ } }, { - "id": 5282, + "id": 6722, "properties": { "down": "false", "east": "true", @@ -76819,7 +87237,7 @@ } }, { - "id": 5283, + "id": 6723, "properties": { "down": "false", "east": "true", @@ -76831,7 +87249,7 @@ } }, { - "id": 5284, + "id": 6724, "properties": { "down": "false", "east": "true", @@ -76843,7 +87261,7 @@ } }, { - "id": 5285, + "id": 6725, "properties": { "down": "false", "east": "true", @@ -76855,7 +87273,7 @@ } }, { - "id": 5286, + "id": 6726, "properties": { "down": "false", "east": "true", @@ -76867,7 +87285,7 @@ } }, { - "id": 5287, + "id": 6727, "properties": { "down": "false", "east": "true", @@ -76879,7 +87297,7 @@ } }, { - "id": 5288, + "id": 6728, "properties": { "down": "false", "east": "true", @@ -76891,7 +87309,7 @@ } }, { - "id": 5289, + "id": 6729, "properties": { "down": "false", "east": "true", @@ -76903,7 +87321,7 @@ } }, { - "id": 5290, + "id": 6730, "properties": { "down": "false", "east": "true", @@ -76915,7 +87333,7 @@ } }, { - "id": 5291, + "id": 6731, "properties": { "down": "false", "east": "true", @@ -76927,7 +87345,7 @@ } }, { - "id": 5292, + "id": 6732, "properties": { "down": "false", "east": "true", @@ -76939,7 +87357,7 @@ } }, { - "id": 5293, + "id": 6733, "properties": { "down": "false", "east": "true", @@ -76951,7 +87369,7 @@ } }, { - "id": 5294, + "id": 6734, "properties": { "down": "false", "east": "true", @@ -76963,7 +87381,7 @@ } }, { - "id": 5295, + "id": 6735, "properties": { "down": "false", "east": "false", @@ -76975,7 +87393,7 @@ } }, { - "id": 5296, + "id": 6736, "properties": { "down": "false", "east": "false", @@ -76987,7 +87405,7 @@ } }, { - "id": 5297, + "id": 6737, "properties": { "down": "false", "east": "false", @@ -76999,7 +87417,7 @@ } }, { - "id": 5298, + "id": 6738, "properties": { "down": "false", "east": "false", @@ -77011,7 +87429,7 @@ } }, { - "id": 5299, + "id": 6739, "properties": { "down": "false", "east": "false", @@ -77023,7 +87441,7 @@ } }, { - "id": 5300, + "id": 6740, "properties": { "down": "false", "east": "false", @@ -77035,7 +87453,7 @@ } }, { - "id": 5301, + "id": 6741, "properties": { "down": "false", "east": "false", @@ -77047,7 +87465,7 @@ } }, { - "id": 5302, + "id": 6742, "properties": { "down": "false", "east": "false", @@ -77059,7 +87477,7 @@ } }, { - "id": 5303, + "id": 6743, "properties": { "down": "false", "east": "false", @@ -77071,7 +87489,7 @@ } }, { - "id": 5304, + "id": 6744, "properties": { "down": "false", "east": "false", @@ -77083,7 +87501,7 @@ } }, { - "id": 5305, + "id": 6745, "properties": { "down": "false", "east": "false", @@ -77095,7 +87513,7 @@ } }, { - "id": 5306, + "id": 6746, "properties": { "down": "false", "east": "false", @@ -77107,7 +87525,7 @@ } }, { - "id": 5307, + "id": 6747, "properties": { "down": "false", "east": "false", @@ -77119,7 +87537,7 @@ } }, { - "id": 5308, + "id": 6748, "properties": { "down": "false", "east": "false", @@ -77131,7 +87549,7 @@ } }, { - "id": 5309, + "id": 6749, "properties": { "down": "false", "east": "false", @@ -77143,7 +87561,7 @@ } }, { - "id": 5310, + "id": 6750, "properties": { "down": "false", "east": "false", @@ -77155,7 +87573,7 @@ } }, { - "id": 5311, + "id": 6751, "properties": { "down": "false", "east": "false", @@ -77167,7 +87585,7 @@ } }, { - "id": 5312, + "id": 6752, "properties": { "down": "false", "east": "false", @@ -77179,7 +87597,7 @@ } }, { - "id": 5313, + "id": 6753, "properties": { "down": "false", "east": "false", @@ -77191,7 +87609,7 @@ } }, { - "id": 5314, + "id": 6754, "properties": { "down": "false", "east": "false", @@ -77203,7 +87621,7 @@ } }, { - "id": 5315, + "id": 6755, "properties": { "down": "false", "east": "false", @@ -77215,7 +87633,7 @@ } }, { - "id": 5316, + "id": 6756, "properties": { "down": "false", "east": "false", @@ -77227,7 +87645,7 @@ } }, { - "id": 5317, + "id": 6757, "properties": { "down": "false", "east": "false", @@ -77239,7 +87657,7 @@ } }, { - "id": 5318, + "id": 6758, "properties": { "down": "false", "east": "false", @@ -77251,7 +87669,7 @@ } }, { - "id": 5319, + "id": 6759, "properties": { "down": "false", "east": "false", @@ -77263,7 +87681,7 @@ } }, { - "id": 5320, + "id": 6760, "properties": { "down": "false", "east": "false", @@ -77275,7 +87693,7 @@ } }, { - "id": 5321, + "id": 6761, "properties": { "down": "false", "east": "false", @@ -77287,7 +87705,7 @@ } }, { - "id": 5322, + "id": 6762, "properties": { "down": "false", "east": "false", @@ -77299,7 +87717,7 @@ } }, { - "id": 5323, + "id": 6763, "properties": { "down": "false", "east": "false", @@ -77311,7 +87729,7 @@ } }, { - "id": 5324, + "id": 6764, "properties": { "down": "false", "east": "false", @@ -77323,7 +87741,7 @@ } }, { - "id": 5325, + "id": 6765, "properties": { "down": "false", "east": "false", @@ -77336,7 +87754,7 @@ }, { "default": true, - "id": 5326, + "id": 6766, "properties": { "down": "false", "east": "false", @@ -77353,7 +87771,7 @@ "states": [ { "default": true, - "id": 4322 + "id": 5698 } ] }, @@ -77361,7 +87779,7 @@ "states": [ { "default": true, - "id": 1681 + "id": 2039 } ] }, @@ -77369,7 +87787,7 @@ "states": [ { "default": true, - "id": 110 + "id": 112 } ] }, @@ -77395,21 +87813,21 @@ }, "states": [ { - "id": 11718, + "id": 13502, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11719, + "id": 13503, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11720, + "id": 13504, "properties": { "type": "bottom", "waterlogged": "true" @@ -77417,21 +87835,21 @@ }, { "default": true, - "id": 11721, + "id": 13505, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11722, + "id": 13506, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11723, + "id": 13507, "properties": { "type": "double", "waterlogged": "false" @@ -77465,7 +87883,7 @@ }, "states": [ { - "id": 11270, + "id": 13054, "properties": { "facing": "north", "half": "top", @@ -77474,7 +87892,7 @@ } }, { - "id": 11271, + "id": 13055, "properties": { "facing": "north", "half": "top", @@ -77483,7 +87901,7 @@ } }, { - "id": 11272, + "id": 13056, "properties": { "facing": "north", "half": "top", @@ -77492,7 +87910,7 @@ } }, { - "id": 11273, + "id": 13057, "properties": { "facing": "north", "half": "top", @@ -77501,7 +87919,7 @@ } }, { - "id": 11274, + "id": 13058, "properties": { "facing": "north", "half": "top", @@ -77510,7 +87928,7 @@ } }, { - "id": 11275, + "id": 13059, "properties": { "facing": "north", "half": "top", @@ -77519,7 +87937,7 @@ } }, { - "id": 11276, + "id": 13060, "properties": { "facing": "north", "half": "top", @@ -77528,7 +87946,7 @@ } }, { - "id": 11277, + "id": 13061, "properties": { "facing": "north", "half": "top", @@ -77537,7 +87955,7 @@ } }, { - "id": 11278, + "id": 13062, "properties": { "facing": "north", "half": "top", @@ -77546,7 +87964,7 @@ } }, { - "id": 11279, + "id": 13063, "properties": { "facing": "north", "half": "top", @@ -77555,7 +87973,7 @@ } }, { - "id": 11280, + "id": 13064, "properties": { "facing": "north", "half": "bottom", @@ -77565,7 +87983,7 @@ }, { "default": true, - "id": 11281, + "id": 13065, "properties": { "facing": "north", "half": "bottom", @@ -77574,7 +87992,7 @@ } }, { - "id": 11282, + "id": 13066, "properties": { "facing": "north", "half": "bottom", @@ -77583,7 +88001,7 @@ } }, { - "id": 11283, + "id": 13067, "properties": { "facing": "north", "half": "bottom", @@ -77592,7 +88010,7 @@ } }, { - "id": 11284, + "id": 13068, "properties": { "facing": "north", "half": "bottom", @@ -77601,7 +88019,7 @@ } }, { - "id": 11285, + "id": 13069, "properties": { "facing": "north", "half": "bottom", @@ -77610,7 +88028,7 @@ } }, { - "id": 11286, + "id": 13070, "properties": { "facing": "north", "half": "bottom", @@ -77619,7 +88037,7 @@ } }, { - "id": 11287, + "id": 13071, "properties": { "facing": "north", "half": "bottom", @@ -77628,7 +88046,7 @@ } }, { - "id": 11288, + "id": 13072, "properties": { "facing": "north", "half": "bottom", @@ -77637,7 +88055,7 @@ } }, { - "id": 11289, + "id": 13073, "properties": { "facing": "north", "half": "bottom", @@ -77646,7 +88064,7 @@ } }, { - "id": 11290, + "id": 13074, "properties": { "facing": "south", "half": "top", @@ -77655,7 +88073,7 @@ } }, { - "id": 11291, + "id": 13075, "properties": { "facing": "south", "half": "top", @@ -77664,7 +88082,7 @@ } }, { - "id": 11292, + "id": 13076, "properties": { "facing": "south", "half": "top", @@ -77673,7 +88091,7 @@ } }, { - "id": 11293, + "id": 13077, "properties": { "facing": "south", "half": "top", @@ -77682,7 +88100,7 @@ } }, { - "id": 11294, + "id": 13078, "properties": { "facing": "south", "half": "top", @@ -77691,7 +88109,7 @@ } }, { - "id": 11295, + "id": 13079, "properties": { "facing": "south", "half": "top", @@ -77700,7 +88118,7 @@ } }, { - "id": 11296, + "id": 13080, "properties": { "facing": "south", "half": "top", @@ -77709,7 +88127,7 @@ } }, { - "id": 11297, + "id": 13081, "properties": { "facing": "south", "half": "top", @@ -77718,7 +88136,7 @@ } }, { - "id": 11298, + "id": 13082, "properties": { "facing": "south", "half": "top", @@ -77727,7 +88145,7 @@ } }, { - "id": 11299, + "id": 13083, "properties": { "facing": "south", "half": "top", @@ -77736,7 +88154,7 @@ } }, { - "id": 11300, + "id": 13084, "properties": { "facing": "south", "half": "bottom", @@ -77745,7 +88163,7 @@ } }, { - "id": 11301, + "id": 13085, "properties": { "facing": "south", "half": "bottom", @@ -77754,7 +88172,7 @@ } }, { - "id": 11302, + "id": 13086, "properties": { "facing": "south", "half": "bottom", @@ -77763,7 +88181,7 @@ } }, { - "id": 11303, + "id": 13087, "properties": { "facing": "south", "half": "bottom", @@ -77772,7 +88190,7 @@ } }, { - "id": 11304, + "id": 13088, "properties": { "facing": "south", "half": "bottom", @@ -77781,7 +88199,7 @@ } }, { - "id": 11305, + "id": 13089, "properties": { "facing": "south", "half": "bottom", @@ -77790,7 +88208,7 @@ } }, { - "id": 11306, + "id": 13090, "properties": { "facing": "south", "half": "bottom", @@ -77799,7 +88217,7 @@ } }, { - "id": 11307, + "id": 13091, "properties": { "facing": "south", "half": "bottom", @@ -77808,7 +88226,7 @@ } }, { - "id": 11308, + "id": 13092, "properties": { "facing": "south", "half": "bottom", @@ -77817,7 +88235,7 @@ } }, { - "id": 11309, + "id": 13093, "properties": { "facing": "south", "half": "bottom", @@ -77826,7 +88244,7 @@ } }, { - "id": 11310, + "id": 13094, "properties": { "facing": "west", "half": "top", @@ -77835,7 +88253,7 @@ } }, { - "id": 11311, + "id": 13095, "properties": { "facing": "west", "half": "top", @@ -77844,7 +88262,7 @@ } }, { - "id": 11312, + "id": 13096, "properties": { "facing": "west", "half": "top", @@ -77853,7 +88271,7 @@ } }, { - "id": 11313, + "id": 13097, "properties": { "facing": "west", "half": "top", @@ -77862,7 +88280,7 @@ } }, { - "id": 11314, + "id": 13098, "properties": { "facing": "west", "half": "top", @@ -77871,7 +88289,7 @@ } }, { - "id": 11315, + "id": 13099, "properties": { "facing": "west", "half": "top", @@ -77880,7 +88298,7 @@ } }, { - "id": 11316, + "id": 13100, "properties": { "facing": "west", "half": "top", @@ -77889,7 +88307,7 @@ } }, { - "id": 11317, + "id": 13101, "properties": { "facing": "west", "half": "top", @@ -77898,7 +88316,7 @@ } }, { - "id": 11318, + "id": 13102, "properties": { "facing": "west", "half": "top", @@ -77907,7 +88325,7 @@ } }, { - "id": 11319, + "id": 13103, "properties": { "facing": "west", "half": "top", @@ -77916,7 +88334,7 @@ } }, { - "id": 11320, + "id": 13104, "properties": { "facing": "west", "half": "bottom", @@ -77925,7 +88343,7 @@ } }, { - "id": 11321, + "id": 13105, "properties": { "facing": "west", "half": "bottom", @@ -77934,7 +88352,7 @@ } }, { - "id": 11322, + "id": 13106, "properties": { "facing": "west", "half": "bottom", @@ -77943,7 +88361,7 @@ } }, { - "id": 11323, + "id": 13107, "properties": { "facing": "west", "half": "bottom", @@ -77952,7 +88370,7 @@ } }, { - "id": 11324, + "id": 13108, "properties": { "facing": "west", "half": "bottom", @@ -77961,7 +88379,7 @@ } }, { - "id": 11325, + "id": 13109, "properties": { "facing": "west", "half": "bottom", @@ -77970,7 +88388,7 @@ } }, { - "id": 11326, + "id": 13110, "properties": { "facing": "west", "half": "bottom", @@ -77979,7 +88397,7 @@ } }, { - "id": 11327, + "id": 13111, "properties": { "facing": "west", "half": "bottom", @@ -77988,7 +88406,7 @@ } }, { - "id": 11328, + "id": 13112, "properties": { "facing": "west", "half": "bottom", @@ -77997,7 +88415,7 @@ } }, { - "id": 11329, + "id": 13113, "properties": { "facing": "west", "half": "bottom", @@ -78006,7 +88424,7 @@ } }, { - "id": 11330, + "id": 13114, "properties": { "facing": "east", "half": "top", @@ -78015,7 +88433,7 @@ } }, { - "id": 11331, + "id": 13115, "properties": { "facing": "east", "half": "top", @@ -78024,7 +88442,7 @@ } }, { - "id": 11332, + "id": 13116, "properties": { "facing": "east", "half": "top", @@ -78033,7 +88451,7 @@ } }, { - "id": 11333, + "id": 13117, "properties": { "facing": "east", "half": "top", @@ -78042,7 +88460,7 @@ } }, { - "id": 11334, + "id": 13118, "properties": { "facing": "east", "half": "top", @@ -78051,7 +88469,7 @@ } }, { - "id": 11335, + "id": 13119, "properties": { "facing": "east", "half": "top", @@ -78060,7 +88478,7 @@ } }, { - "id": 11336, + "id": 13120, "properties": { "facing": "east", "half": "top", @@ -78069,7 +88487,7 @@ } }, { - "id": 11337, + "id": 13121, "properties": { "facing": "east", "half": "top", @@ -78078,7 +88496,7 @@ } }, { - "id": 11338, + "id": 13122, "properties": { "facing": "east", "half": "top", @@ -78087,7 +88505,7 @@ } }, { - "id": 11339, + "id": 13123, "properties": { "facing": "east", "half": "top", @@ -78096,7 +88514,7 @@ } }, { - "id": 11340, + "id": 13124, "properties": { "facing": "east", "half": "bottom", @@ -78105,7 +88523,7 @@ } }, { - "id": 11341, + "id": 13125, "properties": { "facing": "east", "half": "bottom", @@ -78114,7 +88532,7 @@ } }, { - "id": 11342, + "id": 13126, "properties": { "facing": "east", "half": "bottom", @@ -78123,7 +88541,7 @@ } }, { - "id": 11343, + "id": 13127, "properties": { "facing": "east", "half": "bottom", @@ -78132,7 +88550,7 @@ } }, { - "id": 11344, + "id": 13128, "properties": { "facing": "east", "half": "bottom", @@ -78141,7 +88559,7 @@ } }, { - "id": 11345, + "id": 13129, "properties": { "facing": "east", "half": "bottom", @@ -78150,7 +88568,7 @@ } }, { - "id": 11346, + "id": 13130, "properties": { "facing": "east", "half": "bottom", @@ -78159,7 +88577,7 @@ } }, { - "id": 11347, + "id": 13131, "properties": { "facing": "east", "half": "bottom", @@ -78168,7 +88586,7 @@ } }, { - "id": 11348, + "id": 13132, "properties": { "facing": "east", "half": "bottom", @@ -78177,7 +88595,7 @@ } }, { - "id": 11349, + "id": 13133, "properties": { "facing": "east", "half": "bottom", @@ -78220,7 +88638,7 @@ }, "states": [ { - "id": 13044, + "id": 14828, "properties": { "east": "none", "north": "none", @@ -78231,7 +88649,7 @@ } }, { - "id": 13045, + "id": 14829, "properties": { "east": "none", "north": "none", @@ -78242,7 +88660,7 @@ } }, { - "id": 13046, + "id": 14830, "properties": { "east": "none", "north": "none", @@ -78254,7 +88672,7 @@ }, { "default": true, - "id": 13047, + "id": 14831, "properties": { "east": "none", "north": "none", @@ -78265,7 +88683,7 @@ } }, { - "id": 13048, + "id": 14832, "properties": { "east": "none", "north": "none", @@ -78276,7 +88694,7 @@ } }, { - "id": 13049, + "id": 14833, "properties": { "east": "none", "north": "none", @@ -78287,7 +88705,7 @@ } }, { - "id": 13050, + "id": 14834, "properties": { "east": "none", "north": "none", @@ -78298,7 +88716,7 @@ } }, { - "id": 13051, + "id": 14835, "properties": { "east": "none", "north": "none", @@ -78309,7 +88727,7 @@ } }, { - "id": 13052, + "id": 14836, "properties": { "east": "none", "north": "none", @@ -78320,7 +88738,7 @@ } }, { - "id": 13053, + "id": 14837, "properties": { "east": "none", "north": "none", @@ -78331,7 +88749,7 @@ } }, { - "id": 13054, + "id": 14838, "properties": { "east": "none", "north": "none", @@ -78342,7 +88760,7 @@ } }, { - "id": 13055, + "id": 14839, "properties": { "east": "none", "north": "none", @@ -78353,7 +88771,7 @@ } }, { - "id": 13056, + "id": 14840, "properties": { "east": "none", "north": "none", @@ -78364,7 +88782,7 @@ } }, { - "id": 13057, + "id": 14841, "properties": { "east": "none", "north": "none", @@ -78375,7 +88793,7 @@ } }, { - "id": 13058, + "id": 14842, "properties": { "east": "none", "north": "none", @@ -78386,7 +88804,7 @@ } }, { - "id": 13059, + "id": 14843, "properties": { "east": "none", "north": "none", @@ -78397,7 +88815,7 @@ } }, { - "id": 13060, + "id": 14844, "properties": { "east": "none", "north": "none", @@ -78408,7 +88826,7 @@ } }, { - "id": 13061, + "id": 14845, "properties": { "east": "none", "north": "none", @@ -78419,7 +88837,7 @@ } }, { - "id": 13062, + "id": 14846, "properties": { "east": "none", "north": "none", @@ -78430,7 +88848,7 @@ } }, { - "id": 13063, + "id": 14847, "properties": { "east": "none", "north": "none", @@ -78441,7 +88859,7 @@ } }, { - "id": 13064, + "id": 14848, "properties": { "east": "none", "north": "none", @@ -78452,7 +88870,7 @@ } }, { - "id": 13065, + "id": 14849, "properties": { "east": "none", "north": "none", @@ -78463,7 +88881,7 @@ } }, { - "id": 13066, + "id": 14850, "properties": { "east": "none", "north": "none", @@ -78474,7 +88892,7 @@ } }, { - "id": 13067, + "id": 14851, "properties": { "east": "none", "north": "none", @@ -78485,7 +88903,7 @@ } }, { - "id": 13068, + "id": 14852, "properties": { "east": "none", "north": "none", @@ -78496,7 +88914,7 @@ } }, { - "id": 13069, + "id": 14853, "properties": { "east": "none", "north": "none", @@ -78507,7 +88925,7 @@ } }, { - "id": 13070, + "id": 14854, "properties": { "east": "none", "north": "none", @@ -78518,7 +88936,7 @@ } }, { - "id": 13071, + "id": 14855, "properties": { "east": "none", "north": "none", @@ -78529,7 +88947,7 @@ } }, { - "id": 13072, + "id": 14856, "properties": { "east": "none", "north": "none", @@ -78540,7 +88958,7 @@ } }, { - "id": 13073, + "id": 14857, "properties": { "east": "none", "north": "none", @@ -78551,7 +88969,7 @@ } }, { - "id": 13074, + "id": 14858, "properties": { "east": "none", "north": "none", @@ -78562,7 +88980,7 @@ } }, { - "id": 13075, + "id": 14859, "properties": { "east": "none", "north": "none", @@ -78573,7 +88991,7 @@ } }, { - "id": 13076, + "id": 14860, "properties": { "east": "none", "north": "none", @@ -78584,7 +89002,7 @@ } }, { - "id": 13077, + "id": 14861, "properties": { "east": "none", "north": "none", @@ -78595,7 +89013,7 @@ } }, { - "id": 13078, + "id": 14862, "properties": { "east": "none", "north": "none", @@ -78606,7 +89024,7 @@ } }, { - "id": 13079, + "id": 14863, "properties": { "east": "none", "north": "none", @@ -78617,7 +89035,7 @@ } }, { - "id": 13080, + "id": 14864, "properties": { "east": "none", "north": "low", @@ -78628,7 +89046,7 @@ } }, { - "id": 13081, + "id": 14865, "properties": { "east": "none", "north": "low", @@ -78639,7 +89057,7 @@ } }, { - "id": 13082, + "id": 14866, "properties": { "east": "none", "north": "low", @@ -78650,7 +89068,7 @@ } }, { - "id": 13083, + "id": 14867, "properties": { "east": "none", "north": "low", @@ -78661,7 +89079,7 @@ } }, { - "id": 13084, + "id": 14868, "properties": { "east": "none", "north": "low", @@ -78672,7 +89090,7 @@ } }, { - "id": 13085, + "id": 14869, "properties": { "east": "none", "north": "low", @@ -78683,7 +89101,7 @@ } }, { - "id": 13086, + "id": 14870, "properties": { "east": "none", "north": "low", @@ -78694,7 +89112,7 @@ } }, { - "id": 13087, + "id": 14871, "properties": { "east": "none", "north": "low", @@ -78705,7 +89123,7 @@ } }, { - "id": 13088, + "id": 14872, "properties": { "east": "none", "north": "low", @@ -78716,7 +89134,7 @@ } }, { - "id": 13089, + "id": 14873, "properties": { "east": "none", "north": "low", @@ -78727,7 +89145,7 @@ } }, { - "id": 13090, + "id": 14874, "properties": { "east": "none", "north": "low", @@ -78738,7 +89156,7 @@ } }, { - "id": 13091, + "id": 14875, "properties": { "east": "none", "north": "low", @@ -78749,7 +89167,7 @@ } }, { - "id": 13092, + "id": 14876, "properties": { "east": "none", "north": "low", @@ -78760,7 +89178,7 @@ } }, { - "id": 13093, + "id": 14877, "properties": { "east": "none", "north": "low", @@ -78771,7 +89189,7 @@ } }, { - "id": 13094, + "id": 14878, "properties": { "east": "none", "north": "low", @@ -78782,7 +89200,7 @@ } }, { - "id": 13095, + "id": 14879, "properties": { "east": "none", "north": "low", @@ -78793,7 +89211,7 @@ } }, { - "id": 13096, + "id": 14880, "properties": { "east": "none", "north": "low", @@ -78804,7 +89222,7 @@ } }, { - "id": 13097, + "id": 14881, "properties": { "east": "none", "north": "low", @@ -78815,7 +89233,7 @@ } }, { - "id": 13098, + "id": 14882, "properties": { "east": "none", "north": "low", @@ -78826,7 +89244,7 @@ } }, { - "id": 13099, + "id": 14883, "properties": { "east": "none", "north": "low", @@ -78837,7 +89255,7 @@ } }, { - "id": 13100, + "id": 14884, "properties": { "east": "none", "north": "low", @@ -78848,7 +89266,7 @@ } }, { - "id": 13101, + "id": 14885, "properties": { "east": "none", "north": "low", @@ -78859,7 +89277,7 @@ } }, { - "id": 13102, + "id": 14886, "properties": { "east": "none", "north": "low", @@ -78870,7 +89288,7 @@ } }, { - "id": 13103, + "id": 14887, "properties": { "east": "none", "north": "low", @@ -78881,7 +89299,7 @@ } }, { - "id": 13104, + "id": 14888, "properties": { "east": "none", "north": "low", @@ -78892,7 +89310,7 @@ } }, { - "id": 13105, + "id": 14889, "properties": { "east": "none", "north": "low", @@ -78903,7 +89321,7 @@ } }, { - "id": 13106, + "id": 14890, "properties": { "east": "none", "north": "low", @@ -78914,7 +89332,7 @@ } }, { - "id": 13107, + "id": 14891, "properties": { "east": "none", "north": "low", @@ -78925,7 +89343,7 @@ } }, { - "id": 13108, + "id": 14892, "properties": { "east": "none", "north": "low", @@ -78936,7 +89354,7 @@ } }, { - "id": 13109, + "id": 14893, "properties": { "east": "none", "north": "low", @@ -78947,7 +89365,7 @@ } }, { - "id": 13110, + "id": 14894, "properties": { "east": "none", "north": "low", @@ -78958,7 +89376,7 @@ } }, { - "id": 13111, + "id": 14895, "properties": { "east": "none", "north": "low", @@ -78969,7 +89387,7 @@ } }, { - "id": 13112, + "id": 14896, "properties": { "east": "none", "north": "low", @@ -78980,7 +89398,7 @@ } }, { - "id": 13113, + "id": 14897, "properties": { "east": "none", "north": "low", @@ -78991,7 +89409,7 @@ } }, { - "id": 13114, + "id": 14898, "properties": { "east": "none", "north": "low", @@ -79002,7 +89420,7 @@ } }, { - "id": 13115, + "id": 14899, "properties": { "east": "none", "north": "low", @@ -79013,7 +89431,7 @@ } }, { - "id": 13116, + "id": 14900, "properties": { "east": "none", "north": "tall", @@ -79024,7 +89442,7 @@ } }, { - "id": 13117, + "id": 14901, "properties": { "east": "none", "north": "tall", @@ -79035,7 +89453,7 @@ } }, { - "id": 13118, + "id": 14902, "properties": { "east": "none", "north": "tall", @@ -79046,7 +89464,7 @@ } }, { - "id": 13119, + "id": 14903, "properties": { "east": "none", "north": "tall", @@ -79057,7 +89475,7 @@ } }, { - "id": 13120, + "id": 14904, "properties": { "east": "none", "north": "tall", @@ -79068,7 +89486,7 @@ } }, { - "id": 13121, + "id": 14905, "properties": { "east": "none", "north": "tall", @@ -79079,7 +89497,7 @@ } }, { - "id": 13122, + "id": 14906, "properties": { "east": "none", "north": "tall", @@ -79090,7 +89508,7 @@ } }, { - "id": 13123, + "id": 14907, "properties": { "east": "none", "north": "tall", @@ -79101,7 +89519,7 @@ } }, { - "id": 13124, + "id": 14908, "properties": { "east": "none", "north": "tall", @@ -79112,7 +89530,7 @@ } }, { - "id": 13125, + "id": 14909, "properties": { "east": "none", "north": "tall", @@ -79123,7 +89541,7 @@ } }, { - "id": 13126, + "id": 14910, "properties": { "east": "none", "north": "tall", @@ -79134,7 +89552,7 @@ } }, { - "id": 13127, + "id": 14911, "properties": { "east": "none", "north": "tall", @@ -79145,7 +89563,7 @@ } }, { - "id": 13128, + "id": 14912, "properties": { "east": "none", "north": "tall", @@ -79156,7 +89574,7 @@ } }, { - "id": 13129, + "id": 14913, "properties": { "east": "none", "north": "tall", @@ -79167,7 +89585,7 @@ } }, { - "id": 13130, + "id": 14914, "properties": { "east": "none", "north": "tall", @@ -79178,7 +89596,7 @@ } }, { - "id": 13131, + "id": 14915, "properties": { "east": "none", "north": "tall", @@ -79189,7 +89607,7 @@ } }, { - "id": 13132, + "id": 14916, "properties": { "east": "none", "north": "tall", @@ -79200,7 +89618,7 @@ } }, { - "id": 13133, + "id": 14917, "properties": { "east": "none", "north": "tall", @@ -79211,7 +89629,7 @@ } }, { - "id": 13134, + "id": 14918, "properties": { "east": "none", "north": "tall", @@ -79222,7 +89640,7 @@ } }, { - "id": 13135, + "id": 14919, "properties": { "east": "none", "north": "tall", @@ -79233,7 +89651,7 @@ } }, { - "id": 13136, + "id": 14920, "properties": { "east": "none", "north": "tall", @@ -79244,7 +89662,7 @@ } }, { - "id": 13137, + "id": 14921, "properties": { "east": "none", "north": "tall", @@ -79255,7 +89673,7 @@ } }, { - "id": 13138, + "id": 14922, "properties": { "east": "none", "north": "tall", @@ -79266,7 +89684,7 @@ } }, { - "id": 13139, + "id": 14923, "properties": { "east": "none", "north": "tall", @@ -79277,7 +89695,7 @@ } }, { - "id": 13140, + "id": 14924, "properties": { "east": "none", "north": "tall", @@ -79288,7 +89706,7 @@ } }, { - "id": 13141, + "id": 14925, "properties": { "east": "none", "north": "tall", @@ -79299,7 +89717,7 @@ } }, { - "id": 13142, + "id": 14926, "properties": { "east": "none", "north": "tall", @@ -79310,7 +89728,7 @@ } }, { - "id": 13143, + "id": 14927, "properties": { "east": "none", "north": "tall", @@ -79321,7 +89739,7 @@ } }, { - "id": 13144, + "id": 14928, "properties": { "east": "none", "north": "tall", @@ -79332,7 +89750,7 @@ } }, { - "id": 13145, + "id": 14929, "properties": { "east": "none", "north": "tall", @@ -79343,7 +89761,7 @@ } }, { - "id": 13146, + "id": 14930, "properties": { "east": "none", "north": "tall", @@ -79354,7 +89772,7 @@ } }, { - "id": 13147, + "id": 14931, "properties": { "east": "none", "north": "tall", @@ -79365,7 +89783,7 @@ } }, { - "id": 13148, + "id": 14932, "properties": { "east": "none", "north": "tall", @@ -79376,7 +89794,7 @@ } }, { - "id": 13149, + "id": 14933, "properties": { "east": "none", "north": "tall", @@ -79387,7 +89805,7 @@ } }, { - "id": 13150, + "id": 14934, "properties": { "east": "none", "north": "tall", @@ -79398,7 +89816,7 @@ } }, { - "id": 13151, + "id": 14935, "properties": { "east": "none", "north": "tall", @@ -79409,7 +89827,7 @@ } }, { - "id": 13152, + "id": 14936, "properties": { "east": "low", "north": "none", @@ -79420,7 +89838,7 @@ } }, { - "id": 13153, + "id": 14937, "properties": { "east": "low", "north": "none", @@ -79431,7 +89849,7 @@ } }, { - "id": 13154, + "id": 14938, "properties": { "east": "low", "north": "none", @@ -79442,7 +89860,7 @@ } }, { - "id": 13155, + "id": 14939, "properties": { "east": "low", "north": "none", @@ -79453,7 +89871,7 @@ } }, { - "id": 13156, + "id": 14940, "properties": { "east": "low", "north": "none", @@ -79464,7 +89882,7 @@ } }, { - "id": 13157, + "id": 14941, "properties": { "east": "low", "north": "none", @@ -79475,7 +89893,7 @@ } }, { - "id": 13158, + "id": 14942, "properties": { "east": "low", "north": "none", @@ -79486,7 +89904,7 @@ } }, { - "id": 13159, + "id": 14943, "properties": { "east": "low", "north": "none", @@ -79497,7 +89915,7 @@ } }, { - "id": 13160, + "id": 14944, "properties": { "east": "low", "north": "none", @@ -79508,7 +89926,7 @@ } }, { - "id": 13161, + "id": 14945, "properties": { "east": "low", "north": "none", @@ -79519,7 +89937,7 @@ } }, { - "id": 13162, + "id": 14946, "properties": { "east": "low", "north": "none", @@ -79530,7 +89948,7 @@ } }, { - "id": 13163, + "id": 14947, "properties": { "east": "low", "north": "none", @@ -79541,7 +89959,7 @@ } }, { - "id": 13164, + "id": 14948, "properties": { "east": "low", "north": "none", @@ -79552,7 +89970,7 @@ } }, { - "id": 13165, + "id": 14949, "properties": { "east": "low", "north": "none", @@ -79563,7 +89981,7 @@ } }, { - "id": 13166, + "id": 14950, "properties": { "east": "low", "north": "none", @@ -79574,7 +89992,7 @@ } }, { - "id": 13167, + "id": 14951, "properties": { "east": "low", "north": "none", @@ -79585,7 +90003,7 @@ } }, { - "id": 13168, + "id": 14952, "properties": { "east": "low", "north": "none", @@ -79596,7 +90014,7 @@ } }, { - "id": 13169, + "id": 14953, "properties": { "east": "low", "north": "none", @@ -79607,7 +90025,7 @@ } }, { - "id": 13170, + "id": 14954, "properties": { "east": "low", "north": "none", @@ -79618,7 +90036,7 @@ } }, { - "id": 13171, + "id": 14955, "properties": { "east": "low", "north": "none", @@ -79629,7 +90047,7 @@ } }, { - "id": 13172, + "id": 14956, "properties": { "east": "low", "north": "none", @@ -79640,7 +90058,7 @@ } }, { - "id": 13173, + "id": 14957, "properties": { "east": "low", "north": "none", @@ -79651,7 +90069,7 @@ } }, { - "id": 13174, + "id": 14958, "properties": { "east": "low", "north": "none", @@ -79662,7 +90080,7 @@ } }, { - "id": 13175, + "id": 14959, "properties": { "east": "low", "north": "none", @@ -79673,7 +90091,7 @@ } }, { - "id": 13176, + "id": 14960, "properties": { "east": "low", "north": "none", @@ -79684,7 +90102,7 @@ } }, { - "id": 13177, + "id": 14961, "properties": { "east": "low", "north": "none", @@ -79695,7 +90113,7 @@ } }, { - "id": 13178, + "id": 14962, "properties": { "east": "low", "north": "none", @@ -79706,7 +90124,7 @@ } }, { - "id": 13179, + "id": 14963, "properties": { "east": "low", "north": "none", @@ -79717,7 +90135,7 @@ } }, { - "id": 13180, + "id": 14964, "properties": { "east": "low", "north": "none", @@ -79728,7 +90146,7 @@ } }, { - "id": 13181, + "id": 14965, "properties": { "east": "low", "north": "none", @@ -79739,7 +90157,7 @@ } }, { - "id": 13182, + "id": 14966, "properties": { "east": "low", "north": "none", @@ -79750,7 +90168,7 @@ } }, { - "id": 13183, + "id": 14967, "properties": { "east": "low", "north": "none", @@ -79761,7 +90179,7 @@ } }, { - "id": 13184, + "id": 14968, "properties": { "east": "low", "north": "none", @@ -79772,7 +90190,7 @@ } }, { - "id": 13185, + "id": 14969, "properties": { "east": "low", "north": "none", @@ -79783,7 +90201,7 @@ } }, { - "id": 13186, + "id": 14970, "properties": { "east": "low", "north": "none", @@ -79794,7 +90212,7 @@ } }, { - "id": 13187, + "id": 14971, "properties": { "east": "low", "north": "none", @@ -79805,7 +90223,7 @@ } }, { - "id": 13188, + "id": 14972, "properties": { "east": "low", "north": "low", @@ -79816,7 +90234,7 @@ } }, { - "id": 13189, + "id": 14973, "properties": { "east": "low", "north": "low", @@ -79827,7 +90245,7 @@ } }, { - "id": 13190, + "id": 14974, "properties": { "east": "low", "north": "low", @@ -79838,7 +90256,7 @@ } }, { - "id": 13191, + "id": 14975, "properties": { "east": "low", "north": "low", @@ -79849,7 +90267,7 @@ } }, { - "id": 13192, + "id": 14976, "properties": { "east": "low", "north": "low", @@ -79860,7 +90278,7 @@ } }, { - "id": 13193, + "id": 14977, "properties": { "east": "low", "north": "low", @@ -79871,7 +90289,7 @@ } }, { - "id": 13194, + "id": 14978, "properties": { "east": "low", "north": "low", @@ -79882,7 +90300,7 @@ } }, { - "id": 13195, + "id": 14979, "properties": { "east": "low", "north": "low", @@ -79893,7 +90311,7 @@ } }, { - "id": 13196, + "id": 14980, "properties": { "east": "low", "north": "low", @@ -79904,7 +90322,7 @@ } }, { - "id": 13197, + "id": 14981, "properties": { "east": "low", "north": "low", @@ -79915,7 +90333,7 @@ } }, { - "id": 13198, + "id": 14982, "properties": { "east": "low", "north": "low", @@ -79926,7 +90344,7 @@ } }, { - "id": 13199, + "id": 14983, "properties": { "east": "low", "north": "low", @@ -79937,7 +90355,7 @@ } }, { - "id": 13200, + "id": 14984, "properties": { "east": "low", "north": "low", @@ -79948,7 +90366,7 @@ } }, { - "id": 13201, + "id": 14985, "properties": { "east": "low", "north": "low", @@ -79959,7 +90377,7 @@ } }, { - "id": 13202, + "id": 14986, "properties": { "east": "low", "north": "low", @@ -79970,7 +90388,7 @@ } }, { - "id": 13203, + "id": 14987, "properties": { "east": "low", "north": "low", @@ -79981,7 +90399,7 @@ } }, { - "id": 13204, + "id": 14988, "properties": { "east": "low", "north": "low", @@ -79992,7 +90410,7 @@ } }, { - "id": 13205, + "id": 14989, "properties": { "east": "low", "north": "low", @@ -80003,7 +90421,7 @@ } }, { - "id": 13206, + "id": 14990, "properties": { "east": "low", "north": "low", @@ -80014,7 +90432,7 @@ } }, { - "id": 13207, + "id": 14991, "properties": { "east": "low", "north": "low", @@ -80025,7 +90443,7 @@ } }, { - "id": 13208, + "id": 14992, "properties": { "east": "low", "north": "low", @@ -80036,7 +90454,7 @@ } }, { - "id": 13209, + "id": 14993, "properties": { "east": "low", "north": "low", @@ -80047,7 +90465,7 @@ } }, { - "id": 13210, + "id": 14994, "properties": { "east": "low", "north": "low", @@ -80058,7 +90476,7 @@ } }, { - "id": 13211, + "id": 14995, "properties": { "east": "low", "north": "low", @@ -80069,7 +90487,7 @@ } }, { - "id": 13212, + "id": 14996, "properties": { "east": "low", "north": "low", @@ -80080,7 +90498,7 @@ } }, { - "id": 13213, + "id": 14997, "properties": { "east": "low", "north": "low", @@ -80091,7 +90509,7 @@ } }, { - "id": 13214, + "id": 14998, "properties": { "east": "low", "north": "low", @@ -80102,7 +90520,7 @@ } }, { - "id": 13215, + "id": 14999, "properties": { "east": "low", "north": "low", @@ -80113,7 +90531,7 @@ } }, { - "id": 13216, + "id": 15000, "properties": { "east": "low", "north": "low", @@ -80124,7 +90542,7 @@ } }, { - "id": 13217, + "id": 15001, "properties": { "east": "low", "north": "low", @@ -80135,7 +90553,7 @@ } }, { - "id": 13218, + "id": 15002, "properties": { "east": "low", "north": "low", @@ -80146,7 +90564,7 @@ } }, { - "id": 13219, + "id": 15003, "properties": { "east": "low", "north": "low", @@ -80157,7 +90575,7 @@ } }, { - "id": 13220, + "id": 15004, "properties": { "east": "low", "north": "low", @@ -80168,7 +90586,7 @@ } }, { - "id": 13221, + "id": 15005, "properties": { "east": "low", "north": "low", @@ -80179,7 +90597,7 @@ } }, { - "id": 13222, + "id": 15006, "properties": { "east": "low", "north": "low", @@ -80190,7 +90608,7 @@ } }, { - "id": 13223, + "id": 15007, "properties": { "east": "low", "north": "low", @@ -80201,7 +90619,7 @@ } }, { - "id": 13224, + "id": 15008, "properties": { "east": "low", "north": "tall", @@ -80212,7 +90630,7 @@ } }, { - "id": 13225, + "id": 15009, "properties": { "east": "low", "north": "tall", @@ -80223,7 +90641,7 @@ } }, { - "id": 13226, + "id": 15010, "properties": { "east": "low", "north": "tall", @@ -80234,7 +90652,7 @@ } }, { - "id": 13227, + "id": 15011, "properties": { "east": "low", "north": "tall", @@ -80245,7 +90663,7 @@ } }, { - "id": 13228, + "id": 15012, "properties": { "east": "low", "north": "tall", @@ -80256,7 +90674,7 @@ } }, { - "id": 13229, + "id": 15013, "properties": { "east": "low", "north": "tall", @@ -80267,7 +90685,7 @@ } }, { - "id": 13230, + "id": 15014, "properties": { "east": "low", "north": "tall", @@ -80278,7 +90696,7 @@ } }, { - "id": 13231, + "id": 15015, "properties": { "east": "low", "north": "tall", @@ -80289,7 +90707,7 @@ } }, { - "id": 13232, + "id": 15016, "properties": { "east": "low", "north": "tall", @@ -80300,7 +90718,7 @@ } }, { - "id": 13233, + "id": 15017, "properties": { "east": "low", "north": "tall", @@ -80311,7 +90729,7 @@ } }, { - "id": 13234, + "id": 15018, "properties": { "east": "low", "north": "tall", @@ -80322,7 +90740,7 @@ } }, { - "id": 13235, + "id": 15019, "properties": { "east": "low", "north": "tall", @@ -80333,7 +90751,7 @@ } }, { - "id": 13236, + "id": 15020, "properties": { "east": "low", "north": "tall", @@ -80344,7 +90762,7 @@ } }, { - "id": 13237, + "id": 15021, "properties": { "east": "low", "north": "tall", @@ -80355,7 +90773,7 @@ } }, { - "id": 13238, + "id": 15022, "properties": { "east": "low", "north": "tall", @@ -80366,7 +90784,7 @@ } }, { - "id": 13239, + "id": 15023, "properties": { "east": "low", "north": "tall", @@ -80377,7 +90795,7 @@ } }, { - "id": 13240, + "id": 15024, "properties": { "east": "low", "north": "tall", @@ -80388,7 +90806,7 @@ } }, { - "id": 13241, + "id": 15025, "properties": { "east": "low", "north": "tall", @@ -80399,7 +90817,7 @@ } }, { - "id": 13242, + "id": 15026, "properties": { "east": "low", "north": "tall", @@ -80410,7 +90828,7 @@ } }, { - "id": 13243, + "id": 15027, "properties": { "east": "low", "north": "tall", @@ -80421,7 +90839,7 @@ } }, { - "id": 13244, + "id": 15028, "properties": { "east": "low", "north": "tall", @@ -80432,7 +90850,7 @@ } }, { - "id": 13245, + "id": 15029, "properties": { "east": "low", "north": "tall", @@ -80443,7 +90861,7 @@ } }, { - "id": 13246, + "id": 15030, "properties": { "east": "low", "north": "tall", @@ -80454,7 +90872,7 @@ } }, { - "id": 13247, + "id": 15031, "properties": { "east": "low", "north": "tall", @@ -80465,7 +90883,7 @@ } }, { - "id": 13248, + "id": 15032, "properties": { "east": "low", "north": "tall", @@ -80476,7 +90894,7 @@ } }, { - "id": 13249, + "id": 15033, "properties": { "east": "low", "north": "tall", @@ -80487,7 +90905,7 @@ } }, { - "id": 13250, + "id": 15034, "properties": { "east": "low", "north": "tall", @@ -80498,7 +90916,7 @@ } }, { - "id": 13251, + "id": 15035, "properties": { "east": "low", "north": "tall", @@ -80509,7 +90927,7 @@ } }, { - "id": 13252, + "id": 15036, "properties": { "east": "low", "north": "tall", @@ -80520,7 +90938,7 @@ } }, { - "id": 13253, + "id": 15037, "properties": { "east": "low", "north": "tall", @@ -80531,7 +90949,7 @@ } }, { - "id": 13254, + "id": 15038, "properties": { "east": "low", "north": "tall", @@ -80542,7 +90960,7 @@ } }, { - "id": 13255, + "id": 15039, "properties": { "east": "low", "north": "tall", @@ -80553,7 +90971,7 @@ } }, { - "id": 13256, + "id": 15040, "properties": { "east": "low", "north": "tall", @@ -80564,7 +90982,7 @@ } }, { - "id": 13257, + "id": 15041, "properties": { "east": "low", "north": "tall", @@ -80575,7 +90993,7 @@ } }, { - "id": 13258, + "id": 15042, "properties": { "east": "low", "north": "tall", @@ -80586,7 +91004,7 @@ } }, { - "id": 13259, + "id": 15043, "properties": { "east": "low", "north": "tall", @@ -80597,7 +91015,7 @@ } }, { - "id": 13260, + "id": 15044, "properties": { "east": "tall", "north": "none", @@ -80608,7 +91026,7 @@ } }, { - "id": 13261, + "id": 15045, "properties": { "east": "tall", "north": "none", @@ -80619,7 +91037,7 @@ } }, { - "id": 13262, + "id": 15046, "properties": { "east": "tall", "north": "none", @@ -80630,7 +91048,7 @@ } }, { - "id": 13263, + "id": 15047, "properties": { "east": "tall", "north": "none", @@ -80641,7 +91059,7 @@ } }, { - "id": 13264, + "id": 15048, "properties": { "east": "tall", "north": "none", @@ -80652,7 +91070,7 @@ } }, { - "id": 13265, + "id": 15049, "properties": { "east": "tall", "north": "none", @@ -80663,7 +91081,7 @@ } }, { - "id": 13266, + "id": 15050, "properties": { "east": "tall", "north": "none", @@ -80674,7 +91092,7 @@ } }, { - "id": 13267, + "id": 15051, "properties": { "east": "tall", "north": "none", @@ -80685,7 +91103,7 @@ } }, { - "id": 13268, + "id": 15052, "properties": { "east": "tall", "north": "none", @@ -80696,7 +91114,7 @@ } }, { - "id": 13269, + "id": 15053, "properties": { "east": "tall", "north": "none", @@ -80707,7 +91125,7 @@ } }, { - "id": 13270, + "id": 15054, "properties": { "east": "tall", "north": "none", @@ -80718,7 +91136,7 @@ } }, { - "id": 13271, + "id": 15055, "properties": { "east": "tall", "north": "none", @@ -80729,7 +91147,7 @@ } }, { - "id": 13272, + "id": 15056, "properties": { "east": "tall", "north": "none", @@ -80740,7 +91158,7 @@ } }, { - "id": 13273, + "id": 15057, "properties": { "east": "tall", "north": "none", @@ -80751,7 +91169,7 @@ } }, { - "id": 13274, + "id": 15058, "properties": { "east": "tall", "north": "none", @@ -80762,7 +91180,7 @@ } }, { - "id": 13275, + "id": 15059, "properties": { "east": "tall", "north": "none", @@ -80773,7 +91191,7 @@ } }, { - "id": 13276, + "id": 15060, "properties": { "east": "tall", "north": "none", @@ -80784,7 +91202,7 @@ } }, { - "id": 13277, + "id": 15061, "properties": { "east": "tall", "north": "none", @@ -80795,7 +91213,7 @@ } }, { - "id": 13278, + "id": 15062, "properties": { "east": "tall", "north": "none", @@ -80806,7 +91224,7 @@ } }, { - "id": 13279, + "id": 15063, "properties": { "east": "tall", "north": "none", @@ -80817,7 +91235,7 @@ } }, { - "id": 13280, + "id": 15064, "properties": { "east": "tall", "north": "none", @@ -80828,7 +91246,7 @@ } }, { - "id": 13281, + "id": 15065, "properties": { "east": "tall", "north": "none", @@ -80839,7 +91257,7 @@ } }, { - "id": 13282, + "id": 15066, "properties": { "east": "tall", "north": "none", @@ -80850,7 +91268,7 @@ } }, { - "id": 13283, + "id": 15067, "properties": { "east": "tall", "north": "none", @@ -80861,7 +91279,7 @@ } }, { - "id": 13284, + "id": 15068, "properties": { "east": "tall", "north": "none", @@ -80872,7 +91290,7 @@ } }, { - "id": 13285, + "id": 15069, "properties": { "east": "tall", "north": "none", @@ -80883,7 +91301,7 @@ } }, { - "id": 13286, + "id": 15070, "properties": { "east": "tall", "north": "none", @@ -80894,7 +91312,7 @@ } }, { - "id": 13287, + "id": 15071, "properties": { "east": "tall", "north": "none", @@ -80905,7 +91323,7 @@ } }, { - "id": 13288, + "id": 15072, "properties": { "east": "tall", "north": "none", @@ -80916,7 +91334,7 @@ } }, { - "id": 13289, + "id": 15073, "properties": { "east": "tall", "north": "none", @@ -80927,7 +91345,7 @@ } }, { - "id": 13290, + "id": 15074, "properties": { "east": "tall", "north": "none", @@ -80938,7 +91356,7 @@ } }, { - "id": 13291, + "id": 15075, "properties": { "east": "tall", "north": "none", @@ -80949,7 +91367,7 @@ } }, { - "id": 13292, + "id": 15076, "properties": { "east": "tall", "north": "none", @@ -80960,7 +91378,7 @@ } }, { - "id": 13293, + "id": 15077, "properties": { "east": "tall", "north": "none", @@ -80971,7 +91389,7 @@ } }, { - "id": 13294, + "id": 15078, "properties": { "east": "tall", "north": "none", @@ -80982,7 +91400,7 @@ } }, { - "id": 13295, + "id": 15079, "properties": { "east": "tall", "north": "none", @@ -80993,7 +91411,7 @@ } }, { - "id": 13296, + "id": 15080, "properties": { "east": "tall", "north": "low", @@ -81004,7 +91422,7 @@ } }, { - "id": 13297, + "id": 15081, "properties": { "east": "tall", "north": "low", @@ -81015,7 +91433,7 @@ } }, { - "id": 13298, + "id": 15082, "properties": { "east": "tall", "north": "low", @@ -81026,7 +91444,7 @@ } }, { - "id": 13299, + "id": 15083, "properties": { "east": "tall", "north": "low", @@ -81037,7 +91455,7 @@ } }, { - "id": 13300, + "id": 15084, "properties": { "east": "tall", "north": "low", @@ -81048,7 +91466,7 @@ } }, { - "id": 13301, + "id": 15085, "properties": { "east": "tall", "north": "low", @@ -81059,7 +91477,7 @@ } }, { - "id": 13302, + "id": 15086, "properties": { "east": "tall", "north": "low", @@ -81070,7 +91488,7 @@ } }, { - "id": 13303, + "id": 15087, "properties": { "east": "tall", "north": "low", @@ -81081,7 +91499,7 @@ } }, { - "id": 13304, + "id": 15088, "properties": { "east": "tall", "north": "low", @@ -81092,7 +91510,7 @@ } }, { - "id": 13305, + "id": 15089, "properties": { "east": "tall", "north": "low", @@ -81103,7 +91521,7 @@ } }, { - "id": 13306, + "id": 15090, "properties": { "east": "tall", "north": "low", @@ -81114,7 +91532,7 @@ } }, { - "id": 13307, + "id": 15091, "properties": { "east": "tall", "north": "low", @@ -81125,7 +91543,7 @@ } }, { - "id": 13308, + "id": 15092, "properties": { "east": "tall", "north": "low", @@ -81136,7 +91554,7 @@ } }, { - "id": 13309, + "id": 15093, "properties": { "east": "tall", "north": "low", @@ -81147,7 +91565,7 @@ } }, { - "id": 13310, + "id": 15094, "properties": { "east": "tall", "north": "low", @@ -81158,7 +91576,7 @@ } }, { - "id": 13311, + "id": 15095, "properties": { "east": "tall", "north": "low", @@ -81169,7 +91587,7 @@ } }, { - "id": 13312, + "id": 15096, "properties": { "east": "tall", "north": "low", @@ -81180,7 +91598,7 @@ } }, { - "id": 13313, + "id": 15097, "properties": { "east": "tall", "north": "low", @@ -81191,7 +91609,7 @@ } }, { - "id": 13314, + "id": 15098, "properties": { "east": "tall", "north": "low", @@ -81202,7 +91620,7 @@ } }, { - "id": 13315, + "id": 15099, "properties": { "east": "tall", "north": "low", @@ -81213,7 +91631,7 @@ } }, { - "id": 13316, + "id": 15100, "properties": { "east": "tall", "north": "low", @@ -81224,7 +91642,7 @@ } }, { - "id": 13317, + "id": 15101, "properties": { "east": "tall", "north": "low", @@ -81235,7 +91653,7 @@ } }, { - "id": 13318, + "id": 15102, "properties": { "east": "tall", "north": "low", @@ -81246,7 +91664,7 @@ } }, { - "id": 13319, + "id": 15103, "properties": { "east": "tall", "north": "low", @@ -81257,7 +91675,7 @@ } }, { - "id": 13320, + "id": 15104, "properties": { "east": "tall", "north": "low", @@ -81268,7 +91686,7 @@ } }, { - "id": 13321, + "id": 15105, "properties": { "east": "tall", "north": "low", @@ -81279,7 +91697,7 @@ } }, { - "id": 13322, + "id": 15106, "properties": { "east": "tall", "north": "low", @@ -81290,7 +91708,7 @@ } }, { - "id": 13323, + "id": 15107, "properties": { "east": "tall", "north": "low", @@ -81301,7 +91719,7 @@ } }, { - "id": 13324, + "id": 15108, "properties": { "east": "tall", "north": "low", @@ -81312,7 +91730,7 @@ } }, { - "id": 13325, + "id": 15109, "properties": { "east": "tall", "north": "low", @@ -81323,7 +91741,7 @@ } }, { - "id": 13326, + "id": 15110, "properties": { "east": "tall", "north": "low", @@ -81334,7 +91752,7 @@ } }, { - "id": 13327, + "id": 15111, "properties": { "east": "tall", "north": "low", @@ -81345,7 +91763,7 @@ } }, { - "id": 13328, + "id": 15112, "properties": { "east": "tall", "north": "low", @@ -81356,7 +91774,7 @@ } }, { - "id": 13329, + "id": 15113, "properties": { "east": "tall", "north": "low", @@ -81367,7 +91785,7 @@ } }, { - "id": 13330, + "id": 15114, "properties": { "east": "tall", "north": "low", @@ -81378,7 +91796,7 @@ } }, { - "id": 13331, + "id": 15115, "properties": { "east": "tall", "north": "low", @@ -81389,7 +91807,7 @@ } }, { - "id": 13332, + "id": 15116, "properties": { "east": "tall", "north": "tall", @@ -81400,7 +91818,7 @@ } }, { - "id": 13333, + "id": 15117, "properties": { "east": "tall", "north": "tall", @@ -81411,7 +91829,7 @@ } }, { - "id": 13334, + "id": 15118, "properties": { "east": "tall", "north": "tall", @@ -81422,7 +91840,7 @@ } }, { - "id": 13335, + "id": 15119, "properties": { "east": "tall", "north": "tall", @@ -81433,7 +91851,7 @@ } }, { - "id": 13336, + "id": 15120, "properties": { "east": "tall", "north": "tall", @@ -81444,7 +91862,7 @@ } }, { - "id": 13337, + "id": 15121, "properties": { "east": "tall", "north": "tall", @@ -81455,7 +91873,7 @@ } }, { - "id": 13338, + "id": 15122, "properties": { "east": "tall", "north": "tall", @@ -81466,7 +91884,7 @@ } }, { - "id": 13339, + "id": 15123, "properties": { "east": "tall", "north": "tall", @@ -81477,7 +91895,7 @@ } }, { - "id": 13340, + "id": 15124, "properties": { "east": "tall", "north": "tall", @@ -81488,7 +91906,7 @@ } }, { - "id": 13341, + "id": 15125, "properties": { "east": "tall", "north": "tall", @@ -81499,7 +91917,7 @@ } }, { - "id": 13342, + "id": 15126, "properties": { "east": "tall", "north": "tall", @@ -81510,7 +91928,7 @@ } }, { - "id": 13343, + "id": 15127, "properties": { "east": "tall", "north": "tall", @@ -81521,7 +91939,7 @@ } }, { - "id": 13344, + "id": 15128, "properties": { "east": "tall", "north": "tall", @@ -81532,7 +91950,7 @@ } }, { - "id": 13345, + "id": 15129, "properties": { "east": "tall", "north": "tall", @@ -81543,7 +91961,7 @@ } }, { - "id": 13346, + "id": 15130, "properties": { "east": "tall", "north": "tall", @@ -81554,7 +91972,7 @@ } }, { - "id": 13347, + "id": 15131, "properties": { "east": "tall", "north": "tall", @@ -81565,7 +91983,7 @@ } }, { - "id": 13348, + "id": 15132, "properties": { "east": "tall", "north": "tall", @@ -81576,7 +91994,7 @@ } }, { - "id": 13349, + "id": 15133, "properties": { "east": "tall", "north": "tall", @@ -81587,7 +92005,7 @@ } }, { - "id": 13350, + "id": 15134, "properties": { "east": "tall", "north": "tall", @@ -81598,7 +92016,7 @@ } }, { - "id": 13351, + "id": 15135, "properties": { "east": "tall", "north": "tall", @@ -81609,7 +92027,7 @@ } }, { - "id": 13352, + "id": 15136, "properties": { "east": "tall", "north": "tall", @@ -81620,7 +92038,7 @@ } }, { - "id": 13353, + "id": 15137, "properties": { "east": "tall", "north": "tall", @@ -81631,7 +92049,7 @@ } }, { - "id": 13354, + "id": 15138, "properties": { "east": "tall", "north": "tall", @@ -81642,7 +92060,7 @@ } }, { - "id": 13355, + "id": 15139, "properties": { "east": "tall", "north": "tall", @@ -81653,7 +92071,7 @@ } }, { - "id": 13356, + "id": 15140, "properties": { "east": "tall", "north": "tall", @@ -81664,7 +92082,7 @@ } }, { - "id": 13357, + "id": 15141, "properties": { "east": "tall", "north": "tall", @@ -81675,7 +92093,7 @@ } }, { - "id": 13358, + "id": 15142, "properties": { "east": "tall", "north": "tall", @@ -81686,7 +92104,7 @@ } }, { - "id": 13359, + "id": 15143, "properties": { "east": "tall", "north": "tall", @@ -81697,7 +92115,7 @@ } }, { - "id": 13360, + "id": 15144, "properties": { "east": "tall", "north": "tall", @@ -81708,7 +92126,7 @@ } }, { - "id": 13361, + "id": 15145, "properties": { "east": "tall", "north": "tall", @@ -81719,7 +92137,7 @@ } }, { - "id": 13362, + "id": 15146, "properties": { "east": "tall", "north": "tall", @@ -81730,7 +92148,7 @@ } }, { - "id": 13363, + "id": 15147, "properties": { "east": "tall", "north": "tall", @@ -81741,7 +92159,7 @@ } }, { - "id": 13364, + "id": 15148, "properties": { "east": "tall", "north": "tall", @@ -81752,7 +92170,7 @@ } }, { - "id": 13365, + "id": 15149, "properties": { "east": "tall", "north": "tall", @@ -81763,7 +92181,7 @@ } }, { - "id": 13366, + "id": 15150, "properties": { "east": "tall", "north": "tall", @@ -81774,7 +92192,7 @@ } }, { - "id": 13367, + "id": 15151, "properties": { "east": "tall", "north": "tall", @@ -81790,7 +92208,7 @@ "states": [ { "default": true, - "id": 1596 + "id": 1954 } ] }, @@ -81821,7 +92239,7 @@ "states": [ { "default": true, - "id": 109 + "id": 111 } ] }, @@ -81849,97 +92267,97 @@ "states": [ { "default": true, - "id": 8750, + "id": 10394, "properties": { "rotation": "0" } }, { - "id": 8751, + "id": 10395, "properties": { "rotation": "1" } }, { - "id": 8752, + "id": 10396, "properties": { "rotation": "2" } }, { - "id": 8753, + "id": 10397, "properties": { "rotation": "3" } }, { - "id": 8754, + "id": 10398, "properties": { "rotation": "4" } }, { - "id": 8755, + "id": 10399, "properties": { "rotation": "5" } }, { - "id": 8756, + "id": 10400, "properties": { "rotation": "6" } }, { - "id": 8757, + "id": 10401, "properties": { "rotation": "7" } }, { - "id": 8758, + "id": 10402, "properties": { "rotation": "8" } }, { - "id": 8759, + "id": 10403, "properties": { "rotation": "9" } }, { - "id": 8760, + "id": 10404, "properties": { "rotation": "10" } }, { - "id": 8761, + "id": 10405, "properties": { "rotation": "11" } }, { - "id": 8762, + "id": 10406, "properties": { "rotation": "12" } }, { - "id": 8763, + "id": 10407, "properties": { "rotation": "13" } }, { - "id": 8764, + "id": 10408, "properties": { "rotation": "14" } }, { - "id": 8765, + "id": 10409, "properties": { "rotation": "15" } @@ -81965,7 +92383,7 @@ }, "states": [ { - "id": 1391, + "id": 1749, "properties": { "facing": "north", "occupied": "true", @@ -81973,7 +92391,7 @@ } }, { - "id": 1392, + "id": 1750, "properties": { "facing": "north", "occupied": "true", @@ -81981,7 +92399,7 @@ } }, { - "id": 1393, + "id": 1751, "properties": { "facing": "north", "occupied": "false", @@ -81990,7 +92408,7 @@ }, { "default": true, - "id": 1394, + "id": 1752, "properties": { "facing": "north", "occupied": "false", @@ -81998,7 +92416,7 @@ } }, { - "id": 1395, + "id": 1753, "properties": { "facing": "south", "occupied": "true", @@ -82006,7 +92424,7 @@ } }, { - "id": 1396, + "id": 1754, "properties": { "facing": "south", "occupied": "true", @@ -82014,7 +92432,7 @@ } }, { - "id": 1397, + "id": 1755, "properties": { "facing": "south", "occupied": "false", @@ -82022,7 +92440,7 @@ } }, { - "id": 1398, + "id": 1756, "properties": { "facing": "south", "occupied": "false", @@ -82030,7 +92448,7 @@ } }, { - "id": 1399, + "id": 1757, "properties": { "facing": "west", "occupied": "true", @@ -82038,7 +92456,7 @@ } }, { - "id": 1400, + "id": 1758, "properties": { "facing": "west", "occupied": "true", @@ -82046,7 +92464,7 @@ } }, { - "id": 1401, + "id": 1759, "properties": { "facing": "west", "occupied": "false", @@ -82054,7 +92472,7 @@ } }, { - "id": 1402, + "id": 1760, "properties": { "facing": "west", "occupied": "false", @@ -82062,7 +92480,7 @@ } }, { - "id": 1403, + "id": 1761, "properties": { "facing": "east", "occupied": "true", @@ -82070,7 +92488,7 @@ } }, { - "id": 1404, + "id": 1762, "properties": { "facing": "east", "occupied": "true", @@ -82078,7 +92496,7 @@ } }, { - "id": 1405, + "id": 1763, "properties": { "facing": "east", "occupied": "false", @@ -82086,7 +92504,7 @@ } }, { - "id": 1406, + "id": 1764, "properties": { "facing": "east", "occupied": "false", @@ -82114,7 +92532,7 @@ }, "states": [ { - "id": 18441, + "id": 20225, "properties": { "candles": "1", "lit": "true", @@ -82122,7 +92540,7 @@ } }, { - "id": 18442, + "id": 20226, "properties": { "candles": "1", "lit": "true", @@ -82130,7 +92548,7 @@ } }, { - "id": 18443, + "id": 20227, "properties": { "candles": "1", "lit": "false", @@ -82139,7 +92557,7 @@ }, { "default": true, - "id": 18444, + "id": 20228, "properties": { "candles": "1", "lit": "false", @@ -82147,7 +92565,7 @@ } }, { - "id": 18445, + "id": 20229, "properties": { "candles": "2", "lit": "true", @@ -82155,7 +92573,7 @@ } }, { - "id": 18446, + "id": 20230, "properties": { "candles": "2", "lit": "true", @@ -82163,7 +92581,7 @@ } }, { - "id": 18447, + "id": 20231, "properties": { "candles": "2", "lit": "false", @@ -82171,7 +92589,7 @@ } }, { - "id": 18448, + "id": 20232, "properties": { "candles": "2", "lit": "false", @@ -82179,7 +92597,7 @@ } }, { - "id": 18449, + "id": 20233, "properties": { "candles": "3", "lit": "true", @@ -82187,7 +92605,7 @@ } }, { - "id": 18450, + "id": 20234, "properties": { "candles": "3", "lit": "true", @@ -82195,7 +92613,7 @@ } }, { - "id": 18451, + "id": 20235, "properties": { "candles": "3", "lit": "false", @@ -82203,7 +92621,7 @@ } }, { - "id": 18452, + "id": 20236, "properties": { "candles": "3", "lit": "false", @@ -82211,7 +92629,7 @@ } }, { - "id": 18453, + "id": 20237, "properties": { "candles": "4", "lit": "true", @@ -82219,7 +92637,7 @@ } }, { - "id": 18454, + "id": 20238, "properties": { "candles": "4", "lit": "true", @@ -82227,7 +92645,7 @@ } }, { - "id": 18455, + "id": 20239, "properties": { "candles": "4", "lit": "false", @@ -82235,7 +92653,7 @@ } }, { - "id": 18456, + "id": 20240, "properties": { "candles": "4", "lit": "false", @@ -82253,14 +92671,14 @@ }, "states": [ { - "id": 18601, + "id": 20385, "properties": { "lit": "true" } }, { "default": true, - "id": 18602, + "id": 20386, "properties": { "lit": "false" } @@ -82271,7 +92689,7 @@ "states": [ { "default": true, - "id": 8614 + "id": 10258 } ] }, @@ -82279,7 +92697,7 @@ "states": [ { "default": true, - "id": 10326 + "id": 12110 } ] }, @@ -82287,7 +92705,7 @@ "states": [ { "default": true, - "id": 10342 + "id": 12126 } ] }, @@ -82303,25 +92721,25 @@ "states": [ { "default": true, - "id": 10283, + "id": 12067, "properties": { "facing": "north" } }, { - "id": 10284, + "id": 12068, "properties": { "facing": "south" } }, { - "id": 10285, + "id": 12069, "properties": { "facing": "west" } }, { - "id": 10286, + "id": 12070, "properties": { "facing": "east" } @@ -82341,38 +92759,38 @@ }, "states": [ { - "id": 10201, + "id": 11985, "properties": { "facing": "north" } }, { - "id": 10202, + "id": 11986, "properties": { "facing": "east" } }, { - "id": 10203, + "id": 11987, "properties": { "facing": "south" } }, { - "id": 10204, + "id": 11988, "properties": { "facing": "west" } }, { "default": true, - "id": 10205, + "id": 11989, "properties": { "facing": "up" } }, { - "id": 10206, + "id": 11990, "properties": { "facing": "down" } @@ -82383,7 +92801,7 @@ "states": [ { "default": true, - "id": 4411 + "id": 5787 } ] }, @@ -82412,7 +92830,7 @@ }, "states": [ { - "id": 7716, + "id": 9200, "properties": { "east": "true", "north": "true", @@ -82422,7 +92840,7 @@ } }, { - "id": 7717, + "id": 9201, "properties": { "east": "true", "north": "true", @@ -82432,7 +92850,7 @@ } }, { - "id": 7718, + "id": 9202, "properties": { "east": "true", "north": "true", @@ -82442,7 +92860,7 @@ } }, { - "id": 7719, + "id": 9203, "properties": { "east": "true", "north": "true", @@ -82452,7 +92870,7 @@ } }, { - "id": 7720, + "id": 9204, "properties": { "east": "true", "north": "true", @@ -82462,7 +92880,7 @@ } }, { - "id": 7721, + "id": 9205, "properties": { "east": "true", "north": "true", @@ -82472,7 +92890,7 @@ } }, { - "id": 7722, + "id": 9206, "properties": { "east": "true", "north": "true", @@ -82482,7 +92900,7 @@ } }, { - "id": 7723, + "id": 9207, "properties": { "east": "true", "north": "true", @@ -82492,7 +92910,7 @@ } }, { - "id": 7724, + "id": 9208, "properties": { "east": "true", "north": "false", @@ -82502,7 +92920,7 @@ } }, { - "id": 7725, + "id": 9209, "properties": { "east": "true", "north": "false", @@ -82512,7 +92930,7 @@ } }, { - "id": 7726, + "id": 9210, "properties": { "east": "true", "north": "false", @@ -82522,7 +92940,7 @@ } }, { - "id": 7727, + "id": 9211, "properties": { "east": "true", "north": "false", @@ -82532,7 +92950,7 @@ } }, { - "id": 7728, + "id": 9212, "properties": { "east": "true", "north": "false", @@ -82542,7 +92960,7 @@ } }, { - "id": 7729, + "id": 9213, "properties": { "east": "true", "north": "false", @@ -82552,7 +92970,7 @@ } }, { - "id": 7730, + "id": 9214, "properties": { "east": "true", "north": "false", @@ -82562,7 +92980,7 @@ } }, { - "id": 7731, + "id": 9215, "properties": { "east": "true", "north": "false", @@ -82572,7 +92990,7 @@ } }, { - "id": 7732, + "id": 9216, "properties": { "east": "false", "north": "true", @@ -82582,7 +93000,7 @@ } }, { - "id": 7733, + "id": 9217, "properties": { "east": "false", "north": "true", @@ -82592,7 +93010,7 @@ } }, { - "id": 7734, + "id": 9218, "properties": { "east": "false", "north": "true", @@ -82602,7 +93020,7 @@ } }, { - "id": 7735, + "id": 9219, "properties": { "east": "false", "north": "true", @@ -82612,7 +93030,7 @@ } }, { - "id": 7736, + "id": 9220, "properties": { "east": "false", "north": "true", @@ -82622,7 +93040,7 @@ } }, { - "id": 7737, + "id": 9221, "properties": { "east": "false", "north": "true", @@ -82632,7 +93050,7 @@ } }, { - "id": 7738, + "id": 9222, "properties": { "east": "false", "north": "true", @@ -82642,7 +93060,7 @@ } }, { - "id": 7739, + "id": 9223, "properties": { "east": "false", "north": "true", @@ -82652,7 +93070,7 @@ } }, { - "id": 7740, + "id": 9224, "properties": { "east": "false", "north": "false", @@ -82662,7 +93080,7 @@ } }, { - "id": 7741, + "id": 9225, "properties": { "east": "false", "north": "false", @@ -82672,7 +93090,7 @@ } }, { - "id": 7742, + "id": 9226, "properties": { "east": "false", "north": "false", @@ -82682,7 +93100,7 @@ } }, { - "id": 7743, + "id": 9227, "properties": { "east": "false", "north": "false", @@ -82692,7 +93110,7 @@ } }, { - "id": 7744, + "id": 9228, "properties": { "east": "false", "north": "false", @@ -82702,7 +93120,7 @@ } }, { - "id": 7745, + "id": 9229, "properties": { "east": "false", "north": "false", @@ -82712,7 +93130,7 @@ } }, { - "id": 7746, + "id": 9230, "properties": { "east": "false", "north": "false", @@ -82723,7 +93141,7 @@ }, { "default": true, - "id": 7747, + "id": 9231, "properties": { "east": "false", "north": "false", @@ -82738,7 +93156,7 @@ "states": [ { "default": true, - "id": 7483 + "id": 8967 } ] }, @@ -82754,25 +93172,25 @@ "states": [ { "default": true, - "id": 8922, + "id": 10566, "properties": { "facing": "north" } }, { - "id": 8923, + "id": 10567, "properties": { "facing": "south" } }, { - "id": 8924, + "id": 10568, "properties": { "facing": "west" } }, { - "id": 8925, + "id": 10569, "properties": { "facing": "east" } @@ -82783,7 +93201,7 @@ "states": [ { "default": true, - "id": 1645 + "id": 2003 } ] }, @@ -82811,97 +93229,97 @@ "states": [ { "default": true, - "id": 8846, + "id": 10490, "properties": { "rotation": "0" } }, { - "id": 8847, + "id": 10491, "properties": { "rotation": "1" } }, { - "id": 8848, + "id": 10492, "properties": { "rotation": "2" } }, { - "id": 8849, + "id": 10493, "properties": { "rotation": "3" } }, { - "id": 8850, + "id": 10494, "properties": { "rotation": "4" } }, { - "id": 8851, + "id": 10495, "properties": { "rotation": "5" } }, { - "id": 8852, + "id": 10496, "properties": { "rotation": "6" } }, { - "id": 8853, + "id": 10497, "properties": { "rotation": "7" } }, { - "id": 8854, + "id": 10498, "properties": { "rotation": "8" } }, { - "id": 8855, + "id": 10499, "properties": { "rotation": "9" } }, { - "id": 8856, + "id": 10500, "properties": { "rotation": "10" } }, { - "id": 8857, + "id": 10501, "properties": { "rotation": "11" } }, { - "id": 8858, + "id": 10502, "properties": { "rotation": "12" } }, { - "id": 8859, + "id": 10503, "properties": { "rotation": "13" } }, { - "id": 8860, + "id": 10504, "properties": { "rotation": "14" } }, { - "id": 8861, + "id": 10505, "properties": { "rotation": "15" } @@ -82927,7 +93345,7 @@ }, "states": [ { - "id": 1487, + "id": 1845, "properties": { "facing": "north", "occupied": "true", @@ -82935,7 +93353,7 @@ } }, { - "id": 1488, + "id": 1846, "properties": { "facing": "north", "occupied": "true", @@ -82943,7 +93361,7 @@ } }, { - "id": 1489, + "id": 1847, "properties": { "facing": "north", "occupied": "false", @@ -82952,7 +93370,7 @@ }, { "default": true, - "id": 1490, + "id": 1848, "properties": { "facing": "north", "occupied": "false", @@ -82960,7 +93378,7 @@ } }, { - "id": 1491, + "id": 1849, "properties": { "facing": "south", "occupied": "true", @@ -82968,7 +93386,7 @@ } }, { - "id": 1492, + "id": 1850, "properties": { "facing": "south", "occupied": "true", @@ -82976,7 +93394,7 @@ } }, { - "id": 1493, + "id": 1851, "properties": { "facing": "south", "occupied": "false", @@ -82984,7 +93402,7 @@ } }, { - "id": 1494, + "id": 1852, "properties": { "facing": "south", "occupied": "false", @@ -82992,7 +93410,7 @@ } }, { - "id": 1495, + "id": 1853, "properties": { "facing": "west", "occupied": "true", @@ -83000,7 +93418,7 @@ } }, { - "id": 1496, + "id": 1854, "properties": { "facing": "west", "occupied": "true", @@ -83008,7 +93426,7 @@ } }, { - "id": 1497, + "id": 1855, "properties": { "facing": "west", "occupied": "false", @@ -83016,7 +93434,7 @@ } }, { - "id": 1498, + "id": 1856, "properties": { "facing": "west", "occupied": "false", @@ -83024,7 +93442,7 @@ } }, { - "id": 1499, + "id": 1857, "properties": { "facing": "east", "occupied": "true", @@ -83032,7 +93450,7 @@ } }, { - "id": 1500, + "id": 1858, "properties": { "facing": "east", "occupied": "true", @@ -83040,7 +93458,7 @@ } }, { - "id": 1501, + "id": 1859, "properties": { "facing": "east", "occupied": "false", @@ -83048,7 +93466,7 @@ } }, { - "id": 1502, + "id": 1860, "properties": { "facing": "east", "occupied": "false", @@ -83076,7 +93494,7 @@ }, "states": [ { - "id": 18537, + "id": 20321, "properties": { "candles": "1", "lit": "true", @@ -83084,7 +93502,7 @@ } }, { - "id": 18538, + "id": 20322, "properties": { "candles": "1", "lit": "true", @@ -83092,7 +93510,7 @@ } }, { - "id": 18539, + "id": 20323, "properties": { "candles": "1", "lit": "false", @@ -83101,7 +93519,7 @@ }, { "default": true, - "id": 18540, + "id": 20324, "properties": { "candles": "1", "lit": "false", @@ -83109,7 +93527,7 @@ } }, { - "id": 18541, + "id": 20325, "properties": { "candles": "2", "lit": "true", @@ -83117,7 +93535,7 @@ } }, { - "id": 18542, + "id": 20326, "properties": { "candles": "2", "lit": "true", @@ -83125,7 +93543,7 @@ } }, { - "id": 18543, + "id": 20327, "properties": { "candles": "2", "lit": "false", @@ -83133,7 +93551,7 @@ } }, { - "id": 18544, + "id": 20328, "properties": { "candles": "2", "lit": "false", @@ -83141,7 +93559,7 @@ } }, { - "id": 18545, + "id": 20329, "properties": { "candles": "3", "lit": "true", @@ -83149,7 +93567,7 @@ } }, { - "id": 18546, + "id": 20330, "properties": { "candles": "3", "lit": "true", @@ -83157,7 +93575,7 @@ } }, { - "id": 18547, + "id": 20331, "properties": { "candles": "3", "lit": "false", @@ -83165,7 +93583,7 @@ } }, { - "id": 18548, + "id": 20332, "properties": { "candles": "3", "lit": "false", @@ -83173,7 +93591,7 @@ } }, { - "id": 18549, + "id": 20333, "properties": { "candles": "4", "lit": "true", @@ -83181,7 +93599,7 @@ } }, { - "id": 18550, + "id": 20334, "properties": { "candles": "4", "lit": "true", @@ -83189,7 +93607,7 @@ } }, { - "id": 18551, + "id": 20335, "properties": { "candles": "4", "lit": "false", @@ -83197,7 +93615,7 @@ } }, { - "id": 18552, + "id": 20336, "properties": { "candles": "4", "lit": "false", @@ -83215,14 +93633,14 @@ }, "states": [ { - "id": 18613, + "id": 20397, "properties": { "lit": "true" } }, { "default": true, - "id": 18614, + "id": 20398, "properties": { "lit": "false" } @@ -83233,7 +93651,7 @@ "states": [ { "default": true, - "id": 8620 + "id": 10264 } ] }, @@ -83241,7 +93659,7 @@ "states": [ { "default": true, - "id": 10332 + "id": 12116 } ] }, @@ -83249,7 +93667,7 @@ "states": [ { "default": true, - "id": 10348 + "id": 12132 } ] }, @@ -83265,25 +93683,25 @@ "states": [ { "default": true, - "id": 10307, + "id": 12091, "properties": { "facing": "north" } }, { - "id": 10308, + "id": 12092, "properties": { "facing": "south" } }, { - "id": 10309, + "id": 12093, "properties": { "facing": "west" } }, { - "id": 10310, + "id": 12094, "properties": { "facing": "east" } @@ -83303,38 +93721,38 @@ }, "states": [ { - "id": 10237, + "id": 12021, "properties": { "facing": "north" } }, { - "id": 10238, + "id": 12022, "properties": { "facing": "east" } }, { - "id": 10239, + "id": 12023, "properties": { "facing": "south" } }, { - "id": 10240, + "id": 12024, "properties": { "facing": "west" } }, { "default": true, - "id": 10241, + "id": 12025, "properties": { "facing": "up" } }, { - "id": 10242, + "id": 12026, "properties": { "facing": "down" } @@ -83345,7 +93763,7 @@ "states": [ { "default": true, - "id": 4417 + "id": 5793 } ] }, @@ -83374,7 +93792,7 @@ }, "states": [ { - "id": 7908, + "id": 9392, "properties": { "east": "true", "north": "true", @@ -83384,7 +93802,7 @@ } }, { - "id": 7909, + "id": 9393, "properties": { "east": "true", "north": "true", @@ -83394,7 +93812,7 @@ } }, { - "id": 7910, + "id": 9394, "properties": { "east": "true", "north": "true", @@ -83404,7 +93822,7 @@ } }, { - "id": 7911, + "id": 9395, "properties": { "east": "true", "north": "true", @@ -83414,7 +93832,7 @@ } }, { - "id": 7912, + "id": 9396, "properties": { "east": "true", "north": "true", @@ -83424,7 +93842,7 @@ } }, { - "id": 7913, + "id": 9397, "properties": { "east": "true", "north": "true", @@ -83434,7 +93852,7 @@ } }, { - "id": 7914, + "id": 9398, "properties": { "east": "true", "north": "true", @@ -83444,7 +93862,7 @@ } }, { - "id": 7915, + "id": 9399, "properties": { "east": "true", "north": "true", @@ -83454,7 +93872,7 @@ } }, { - "id": 7916, + "id": 9400, "properties": { "east": "true", "north": "false", @@ -83464,7 +93882,7 @@ } }, { - "id": 7917, + "id": 9401, "properties": { "east": "true", "north": "false", @@ -83474,7 +93892,7 @@ } }, { - "id": 7918, + "id": 9402, "properties": { "east": "true", "north": "false", @@ -83484,7 +93902,7 @@ } }, { - "id": 7919, + "id": 9403, "properties": { "east": "true", "north": "false", @@ -83494,7 +93912,7 @@ } }, { - "id": 7920, + "id": 9404, "properties": { "east": "true", "north": "false", @@ -83504,7 +93922,7 @@ } }, { - "id": 7921, + "id": 9405, "properties": { "east": "true", "north": "false", @@ -83514,7 +93932,7 @@ } }, { - "id": 7922, + "id": 9406, "properties": { "east": "true", "north": "false", @@ -83524,7 +93942,7 @@ } }, { - "id": 7923, + "id": 9407, "properties": { "east": "true", "north": "false", @@ -83534,7 +93952,7 @@ } }, { - "id": 7924, + "id": 9408, "properties": { "east": "false", "north": "true", @@ -83544,7 +93962,7 @@ } }, { - "id": 7925, + "id": 9409, "properties": { "east": "false", "north": "true", @@ -83554,7 +93972,7 @@ } }, { - "id": 7926, + "id": 9410, "properties": { "east": "false", "north": "true", @@ -83564,7 +93982,7 @@ } }, { - "id": 7927, + "id": 9411, "properties": { "east": "false", "north": "true", @@ -83574,7 +93992,7 @@ } }, { - "id": 7928, + "id": 9412, "properties": { "east": "false", "north": "true", @@ -83584,7 +94002,7 @@ } }, { - "id": 7929, + "id": 9413, "properties": { "east": "false", "north": "true", @@ -83594,7 +94012,7 @@ } }, { - "id": 7930, + "id": 9414, "properties": { "east": "false", "north": "true", @@ -83604,7 +94022,7 @@ } }, { - "id": 7931, + "id": 9415, "properties": { "east": "false", "north": "true", @@ -83614,7 +94032,7 @@ } }, { - "id": 7932, + "id": 9416, "properties": { "east": "false", "north": "false", @@ -83624,7 +94042,7 @@ } }, { - "id": 7933, + "id": 9417, "properties": { "east": "false", "north": "false", @@ -83634,7 +94052,7 @@ } }, { - "id": 7934, + "id": 9418, "properties": { "east": "false", "north": "false", @@ -83644,7 +94062,7 @@ } }, { - "id": 7935, + "id": 9419, "properties": { "east": "false", "north": "false", @@ -83654,7 +94072,7 @@ } }, { - "id": 7936, + "id": 9420, "properties": { "east": "false", "north": "false", @@ -83664,7 +94082,7 @@ } }, { - "id": 7937, + "id": 9421, "properties": { "east": "false", "north": "false", @@ -83674,7 +94092,7 @@ } }, { - "id": 7938, + "id": 9422, "properties": { "east": "false", "north": "false", @@ -83685,7 +94103,7 @@ }, { "default": true, - "id": 7939, + "id": 9423, "properties": { "east": "false", "north": "false", @@ -83700,7 +94118,7 @@ "states": [ { "default": true, - "id": 7489 + "id": 8973 } ] }, @@ -83716,25 +94134,25 @@ "states": [ { "default": true, - "id": 8946, + "id": 10590, "properties": { "facing": "north" } }, { - "id": 8947, + "id": 10591, "properties": { "facing": "south" } }, { - "id": 8948, + "id": 10592, "properties": { "facing": "west" } }, { - "id": 8949, + "id": 10593, "properties": { "facing": "east" } @@ -83745,7 +94163,7 @@ "states": [ { "default": true, - "id": 1651 + "id": 2009 } ] }, @@ -83765,28 +94183,28 @@ }, "states": [ { - "id": 16026, + "id": 17810, "properties": { "face": "floor", "facing": "north" } }, { - "id": 16027, + "id": 17811, "properties": { "face": "floor", "facing": "south" } }, { - "id": 16028, + "id": 17812, "properties": { "face": "floor", "facing": "west" } }, { - "id": 16029, + "id": 17813, "properties": { "face": "floor", "facing": "east" @@ -83794,56 +94212,56 @@ }, { "default": true, - "id": 16030, + "id": 17814, "properties": { "face": "wall", "facing": "north" } }, { - "id": 16031, + "id": 17815, "properties": { "face": "wall", "facing": "south" } }, { - "id": 16032, + "id": 17816, "properties": { "face": "wall", "facing": "west" } }, { - "id": 16033, + "id": 17817, "properties": { "face": "wall", "facing": "east" } }, { - "id": 16034, + "id": 17818, "properties": { "face": "ceiling", "facing": "north" } }, { - "id": 16035, + "id": 17819, "properties": { "face": "ceiling", "facing": "south" } }, { - "id": 16036, + "id": 17820, "properties": { "face": "ceiling", "facing": "west" } }, { - "id": 16037, + "id": 17821, "properties": { "face": "ceiling", "facing": "east" @@ -83860,14 +94278,14 @@ }, "states": [ { - "id": 19774, + "id": 21558, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 19775, + "id": 21559, "properties": { "waterlogged": "false" } @@ -83884,20 +94302,20 @@ }, "states": [ { - "id": 8604, + "id": 10248, "properties": { "axis": "x" } }, { "default": true, - "id": 8605, + "id": 10249, "properties": { "axis": "y" } }, { - "id": 8606, + "id": 10250, "properties": { "axis": "z" } @@ -83928,97 +94346,97 @@ "states": [ { "default": true, - "id": 7279, + "id": 8763, "properties": { "power": "0" } }, { - "id": 7280, + "id": 8764, "properties": { "power": "1" } }, { - "id": 7281, + "id": 8765, "properties": { "power": "2" } }, { - "id": 7282, + "id": 8766, "properties": { "power": "3" } }, { - "id": 7283, + "id": 8767, "properties": { "power": "4" } }, { - "id": 7284, + "id": 8768, "properties": { "power": "5" } }, { - "id": 7285, + "id": 8769, "properties": { "power": "6" } }, { - "id": 7286, + "id": 8770, "properties": { "power": "7" } }, { - "id": 7287, + "id": 8771, "properties": { "power": "8" } }, { - "id": 7288, + "id": 8772, "properties": { "power": "9" } }, { - "id": 7289, + "id": 8773, "properties": { "power": "10" } }, { - "id": 7290, + "id": 8774, "properties": { "power": "11" } }, { - "id": 7291, + "id": 8775, "properties": { "power": "12" } }, { - "id": 7292, + "id": 8776, "properties": { "power": "13" } }, { - "id": 7293, + "id": 8777, "properties": { "power": "14" } }, { - "id": 7294, + "id": 8778, "properties": { "power": "15" } @@ -84029,7 +94447,7 @@ "states": [ { "default": true, - "id": 17033 + "id": 18817 } ] }, @@ -84037,7 +94455,7 @@ "states": [ { "default": true, - "id": 17034 + "id": 18818 } ] }, @@ -84058,70 +94476,70 @@ "states": [ { "default": true, - "id": 7345, + "id": 8829, "properties": { "enabled": "true", "facing": "down" } }, { - "id": 7346, + "id": 8830, "properties": { "enabled": "true", "facing": "north" } }, { - "id": 7347, + "id": 8831, "properties": { "enabled": "true", "facing": "south" } }, { - "id": 7348, + "id": 8832, "properties": { "enabled": "true", "facing": "west" } }, { - "id": 7349, + "id": 8833, "properties": { "enabled": "true", "facing": "east" } }, { - "id": 7350, + "id": 8834, "properties": { "enabled": "false", "facing": "down" } }, { - "id": 7351, + "id": 8835, "properties": { "enabled": "false", "facing": "north" } }, { - "id": 7352, + "id": 8836, "properties": { "enabled": "false", "facing": "south" } }, { - "id": 7353, + "id": 8837, "properties": { "enabled": "false", "facing": "west" } }, { - "id": 7354, + "id": 8838, "properties": { "enabled": "false", "facing": "east" @@ -84139,13 +94557,13 @@ "states": [ { "default": true, - "id": 10419, + "id": 12203, "properties": { "waterlogged": "true" } }, { - "id": 10420, + "id": 12204, "properties": { "waterlogged": "false" } @@ -84156,7 +94574,7 @@ "states": [ { "default": true, - "id": 10400 + "id": 12184 } ] }, @@ -84170,13 +94588,13 @@ "states": [ { "default": true, - "id": 10439, + "id": 12223, "properties": { "waterlogged": "true" } }, { - "id": 10440, + "id": 12224, "properties": { "waterlogged": "false" } @@ -84199,56 +94617,56 @@ "states": [ { "default": true, - "id": 10513, + "id": 12297, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 10514, + "id": 12298, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 10515, + "id": 12299, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 10516, + "id": 12300, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 10517, + "id": 12301, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 10518, + "id": 12302, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 10519, + "id": 12303, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 10520, + "id": 12304, "properties": { "facing": "east", "waterlogged": "false" @@ -84260,7 +94678,7 @@ "states": [ { "default": true, - "id": 4238 + "id": 5614 } ] }, @@ -84268,7 +94686,7 @@ "states": [ { "default": true, - "id": 4879 + "id": 6319 } ] }, @@ -84276,7 +94694,7 @@ "states": [ { "default": true, - "id": 4875 + "id": 6315 } ] }, @@ -84284,7 +94702,7 @@ "states": [ { "default": true, - "id": 4878 + "id": 6318 } ] }, @@ -84298,20 +94716,20 @@ }, "states": [ { - "id": 21428, + "id": 23212, "properties": { "axis": "x" } }, { "default": true, - "id": 21429, + "id": 23213, "properties": { "axis": "y" } }, { - "id": 21430, + "id": 23214, "properties": { "axis": "z" } @@ -84322,7 +94740,7 @@ "states": [ { "default": true, - "id": 4877 + "id": 6317 } ] }, @@ -84330,7 +94748,7 @@ "states": [ { "default": true, - "id": 4874 + "id": 6314 } ] }, @@ -84338,7 +94756,7 @@ "states": [ { "default": true, - "id": 4876 + "id": 6316 } ] }, @@ -84367,7 +94785,7 @@ }, "states": [ { - "id": 5072, + "id": 6512, "properties": { "east": "true", "north": "true", @@ -84377,7 +94795,7 @@ } }, { - "id": 5073, + "id": 6513, "properties": { "east": "true", "north": "true", @@ -84387,7 +94805,7 @@ } }, { - "id": 5074, + "id": 6514, "properties": { "east": "true", "north": "true", @@ -84397,7 +94815,7 @@ } }, { - "id": 5075, + "id": 6515, "properties": { "east": "true", "north": "true", @@ -84407,7 +94825,7 @@ } }, { - "id": 5076, + "id": 6516, "properties": { "east": "true", "north": "true", @@ -84417,7 +94835,7 @@ } }, { - "id": 5077, + "id": 6517, "properties": { "east": "true", "north": "true", @@ -84427,7 +94845,7 @@ } }, { - "id": 5078, + "id": 6518, "properties": { "east": "true", "north": "true", @@ -84437,7 +94855,7 @@ } }, { - "id": 5079, + "id": 6519, "properties": { "east": "true", "north": "true", @@ -84447,7 +94865,7 @@ } }, { - "id": 5080, + "id": 6520, "properties": { "east": "true", "north": "false", @@ -84457,7 +94875,7 @@ } }, { - "id": 5081, + "id": 6521, "properties": { "east": "true", "north": "false", @@ -84467,7 +94885,7 @@ } }, { - "id": 5082, + "id": 6522, "properties": { "east": "true", "north": "false", @@ -84477,7 +94895,7 @@ } }, { - "id": 5083, + "id": 6523, "properties": { "east": "true", "north": "false", @@ -84487,7 +94905,7 @@ } }, { - "id": 5084, + "id": 6524, "properties": { "east": "true", "north": "false", @@ -84497,7 +94915,7 @@ } }, { - "id": 5085, + "id": 6525, "properties": { "east": "true", "north": "false", @@ -84507,7 +94925,7 @@ } }, { - "id": 5086, + "id": 6526, "properties": { "east": "true", "north": "false", @@ -84517,7 +94935,7 @@ } }, { - "id": 5087, + "id": 6527, "properties": { "east": "true", "north": "false", @@ -84527,7 +94945,7 @@ } }, { - "id": 5088, + "id": 6528, "properties": { "east": "false", "north": "true", @@ -84537,7 +94955,7 @@ } }, { - "id": 5089, + "id": 6529, "properties": { "east": "false", "north": "true", @@ -84547,7 +94965,7 @@ } }, { - "id": 5090, + "id": 6530, "properties": { "east": "false", "north": "true", @@ -84557,7 +94975,7 @@ } }, { - "id": 5091, + "id": 6531, "properties": { "east": "false", "north": "true", @@ -84567,7 +94985,7 @@ } }, { - "id": 5092, + "id": 6532, "properties": { "east": "false", "north": "true", @@ -84577,7 +94995,7 @@ } }, { - "id": 5093, + "id": 6533, "properties": { "east": "false", "north": "true", @@ -84587,7 +95005,7 @@ } }, { - "id": 5094, + "id": 6534, "properties": { "east": "false", "north": "true", @@ -84597,7 +95015,7 @@ } }, { - "id": 5095, + "id": 6535, "properties": { "east": "false", "north": "true", @@ -84607,7 +95025,7 @@ } }, { - "id": 5096, + "id": 6536, "properties": { "east": "false", "north": "false", @@ -84617,7 +95035,7 @@ } }, { - "id": 5097, + "id": 6537, "properties": { "east": "false", "north": "false", @@ -84627,7 +95045,7 @@ } }, { - "id": 5098, + "id": 6538, "properties": { "east": "false", "north": "false", @@ -84637,7 +95055,7 @@ } }, { - "id": 5099, + "id": 6539, "properties": { "east": "false", "north": "false", @@ -84647,7 +95065,7 @@ } }, { - "id": 5100, + "id": 6540, "properties": { "east": "false", "north": "false", @@ -84657,7 +95075,7 @@ } }, { - "id": 5101, + "id": 6541, "properties": { "east": "false", "north": "false", @@ -84667,7 +95085,7 @@ } }, { - "id": 5102, + "id": 6542, "properties": { "east": "false", "north": "false", @@ -84678,7 +95096,7 @@ }, { "default": true, - "id": 5103, + "id": 6543, "properties": { "east": "false", "north": "false", @@ -84693,7 +95111,7 @@ "states": [ { "default": true, - "id": 1682 + "id": 2040 } ] }, @@ -84724,7 +95142,7 @@ }, "states": [ { - "id": 4114, + "id": 5488, "properties": { "facing": "north", "half": "upper", @@ -84734,7 +95152,7 @@ } }, { - "id": 4115, + "id": 5489, "properties": { "facing": "north", "half": "upper", @@ -84744,7 +95162,7 @@ } }, { - "id": 4116, + "id": 5490, "properties": { "facing": "north", "half": "upper", @@ -84754,7 +95172,7 @@ } }, { - "id": 4117, + "id": 5491, "properties": { "facing": "north", "half": "upper", @@ -84764,7 +95182,7 @@ } }, { - "id": 4118, + "id": 5492, "properties": { "facing": "north", "half": "upper", @@ -84774,7 +95192,7 @@ } }, { - "id": 4119, + "id": 5493, "properties": { "facing": "north", "half": "upper", @@ -84784,7 +95202,7 @@ } }, { - "id": 4120, + "id": 5494, "properties": { "facing": "north", "half": "upper", @@ -84794,7 +95212,7 @@ } }, { - "id": 4121, + "id": 5495, "properties": { "facing": "north", "half": "upper", @@ -84804,7 +95222,7 @@ } }, { - "id": 4122, + "id": 5496, "properties": { "facing": "north", "half": "lower", @@ -84814,7 +95232,7 @@ } }, { - "id": 4123, + "id": 5497, "properties": { "facing": "north", "half": "lower", @@ -84824,7 +95242,7 @@ } }, { - "id": 4124, + "id": 5498, "properties": { "facing": "north", "half": "lower", @@ -84835,7 +95253,7 @@ }, { "default": true, - "id": 4125, + "id": 5499, "properties": { "facing": "north", "half": "lower", @@ -84845,7 +95263,7 @@ } }, { - "id": 4126, + "id": 5500, "properties": { "facing": "north", "half": "lower", @@ -84855,7 +95273,7 @@ } }, { - "id": 4127, + "id": 5501, "properties": { "facing": "north", "half": "lower", @@ -84865,7 +95283,7 @@ } }, { - "id": 4128, + "id": 5502, "properties": { "facing": "north", "half": "lower", @@ -84875,7 +95293,7 @@ } }, { - "id": 4129, + "id": 5503, "properties": { "facing": "north", "half": "lower", @@ -84885,7 +95303,7 @@ } }, { - "id": 4130, + "id": 5504, "properties": { "facing": "south", "half": "upper", @@ -84895,7 +95313,7 @@ } }, { - "id": 4131, + "id": 5505, "properties": { "facing": "south", "half": "upper", @@ -84905,7 +95323,7 @@ } }, { - "id": 4132, + "id": 5506, "properties": { "facing": "south", "half": "upper", @@ -84915,7 +95333,7 @@ } }, { - "id": 4133, + "id": 5507, "properties": { "facing": "south", "half": "upper", @@ -84925,7 +95343,7 @@ } }, { - "id": 4134, + "id": 5508, "properties": { "facing": "south", "half": "upper", @@ -84935,7 +95353,7 @@ } }, { - "id": 4135, + "id": 5509, "properties": { "facing": "south", "half": "upper", @@ -84945,7 +95363,7 @@ } }, { - "id": 4136, + "id": 5510, "properties": { "facing": "south", "half": "upper", @@ -84955,7 +95373,7 @@ } }, { - "id": 4137, + "id": 5511, "properties": { "facing": "south", "half": "upper", @@ -84965,7 +95383,7 @@ } }, { - "id": 4138, + "id": 5512, "properties": { "facing": "south", "half": "lower", @@ -84975,7 +95393,7 @@ } }, { - "id": 4139, + "id": 5513, "properties": { "facing": "south", "half": "lower", @@ -84985,7 +95403,7 @@ } }, { - "id": 4140, + "id": 5514, "properties": { "facing": "south", "half": "lower", @@ -84995,7 +95413,7 @@ } }, { - "id": 4141, + "id": 5515, "properties": { "facing": "south", "half": "lower", @@ -85005,7 +95423,7 @@ } }, { - "id": 4142, + "id": 5516, "properties": { "facing": "south", "half": "lower", @@ -85015,7 +95433,7 @@ } }, { - "id": 4143, + "id": 5517, "properties": { "facing": "south", "half": "lower", @@ -85025,7 +95443,7 @@ } }, { - "id": 4144, + "id": 5518, "properties": { "facing": "south", "half": "lower", @@ -85035,7 +95453,7 @@ } }, { - "id": 4145, + "id": 5519, "properties": { "facing": "south", "half": "lower", @@ -85045,7 +95463,7 @@ } }, { - "id": 4146, + "id": 5520, "properties": { "facing": "west", "half": "upper", @@ -85055,7 +95473,7 @@ } }, { - "id": 4147, + "id": 5521, "properties": { "facing": "west", "half": "upper", @@ -85065,7 +95483,7 @@ } }, { - "id": 4148, + "id": 5522, "properties": { "facing": "west", "half": "upper", @@ -85075,7 +95493,7 @@ } }, { - "id": 4149, + "id": 5523, "properties": { "facing": "west", "half": "upper", @@ -85085,7 +95503,7 @@ } }, { - "id": 4150, + "id": 5524, "properties": { "facing": "west", "half": "upper", @@ -85095,7 +95513,7 @@ } }, { - "id": 4151, + "id": 5525, "properties": { "facing": "west", "half": "upper", @@ -85105,7 +95523,7 @@ } }, { - "id": 4152, + "id": 5526, "properties": { "facing": "west", "half": "upper", @@ -85115,7 +95533,7 @@ } }, { - "id": 4153, + "id": 5527, "properties": { "facing": "west", "half": "upper", @@ -85125,7 +95543,7 @@ } }, { - "id": 4154, + "id": 5528, "properties": { "facing": "west", "half": "lower", @@ -85135,7 +95553,7 @@ } }, { - "id": 4155, + "id": 5529, "properties": { "facing": "west", "half": "lower", @@ -85145,7 +95563,7 @@ } }, { - "id": 4156, + "id": 5530, "properties": { "facing": "west", "half": "lower", @@ -85155,7 +95573,7 @@ } }, { - "id": 4157, + "id": 5531, "properties": { "facing": "west", "half": "lower", @@ -85165,7 +95583,7 @@ } }, { - "id": 4158, + "id": 5532, "properties": { "facing": "west", "half": "lower", @@ -85175,7 +95593,7 @@ } }, { - "id": 4159, + "id": 5533, "properties": { "facing": "west", "half": "lower", @@ -85185,7 +95603,7 @@ } }, { - "id": 4160, + "id": 5534, "properties": { "facing": "west", "half": "lower", @@ -85195,7 +95613,7 @@ } }, { - "id": 4161, + "id": 5535, "properties": { "facing": "west", "half": "lower", @@ -85205,7 +95623,7 @@ } }, { - "id": 4162, + "id": 5536, "properties": { "facing": "east", "half": "upper", @@ -85215,7 +95633,7 @@ } }, { - "id": 4163, + "id": 5537, "properties": { "facing": "east", "half": "upper", @@ -85225,7 +95643,7 @@ } }, { - "id": 4164, + "id": 5538, "properties": { "facing": "east", "half": "upper", @@ -85235,7 +95653,7 @@ } }, { - "id": 4165, + "id": 5539, "properties": { "facing": "east", "half": "upper", @@ -85245,7 +95663,7 @@ } }, { - "id": 4166, + "id": 5540, "properties": { "facing": "east", "half": "upper", @@ -85255,7 +95673,7 @@ } }, { - "id": 4167, + "id": 5541, "properties": { "facing": "east", "half": "upper", @@ -85265,7 +95683,7 @@ } }, { - "id": 4168, + "id": 5542, "properties": { "facing": "east", "half": "upper", @@ -85275,7 +95693,7 @@ } }, { - "id": 4169, + "id": 5543, "properties": { "facing": "east", "half": "upper", @@ -85285,7 +95703,7 @@ } }, { - "id": 4170, + "id": 5544, "properties": { "facing": "east", "half": "lower", @@ -85295,7 +95713,7 @@ } }, { - "id": 4171, + "id": 5545, "properties": { "facing": "east", "half": "lower", @@ -85305,7 +95723,7 @@ } }, { - "id": 4172, + "id": 5546, "properties": { "facing": "east", "half": "lower", @@ -85315,7 +95733,7 @@ } }, { - "id": 4173, + "id": 5547, "properties": { "facing": "east", "half": "lower", @@ -85325,7 +95743,7 @@ } }, { - "id": 4174, + "id": 5548, "properties": { "facing": "east", "half": "lower", @@ -85335,7 +95753,7 @@ } }, { - "id": 4175, + "id": 5549, "properties": { "facing": "east", "half": "lower", @@ -85345,7 +95763,7 @@ } }, { - "id": 4176, + "id": 5550, "properties": { "facing": "east", "half": "lower", @@ -85355,7 +95773,7 @@ } }, { - "id": 4177, + "id": 5551, "properties": { "facing": "east", "half": "lower", @@ -85370,7 +95788,7 @@ "states": [ { "default": true, - "id": 112 + "id": 114 } ] }, @@ -85401,7 +95819,7 @@ }, "states": [ { - "id": 8278, + "id": 9922, "properties": { "facing": "north", "half": "top", @@ -85411,7 +95829,7 @@ } }, { - "id": 8279, + "id": 9923, "properties": { "facing": "north", "half": "top", @@ -85421,7 +95839,7 @@ } }, { - "id": 8280, + "id": 9924, "properties": { "facing": "north", "half": "top", @@ -85431,7 +95849,7 @@ } }, { - "id": 8281, + "id": 9925, "properties": { "facing": "north", "half": "top", @@ -85441,7 +95859,7 @@ } }, { - "id": 8282, + "id": 9926, "properties": { "facing": "north", "half": "top", @@ -85451,7 +95869,7 @@ } }, { - "id": 8283, + "id": 9927, "properties": { "facing": "north", "half": "top", @@ -85461,7 +95879,7 @@ } }, { - "id": 8284, + "id": 9928, "properties": { "facing": "north", "half": "top", @@ -85471,7 +95889,7 @@ } }, { - "id": 8285, + "id": 9929, "properties": { "facing": "north", "half": "top", @@ -85481,7 +95899,7 @@ } }, { - "id": 8286, + "id": 9930, "properties": { "facing": "north", "half": "bottom", @@ -85491,7 +95909,7 @@ } }, { - "id": 8287, + "id": 9931, "properties": { "facing": "north", "half": "bottom", @@ -85501,7 +95919,7 @@ } }, { - "id": 8288, + "id": 9932, "properties": { "facing": "north", "half": "bottom", @@ -85511,7 +95929,7 @@ } }, { - "id": 8289, + "id": 9933, "properties": { "facing": "north", "half": "bottom", @@ -85521,7 +95939,7 @@ } }, { - "id": 8290, + "id": 9934, "properties": { "facing": "north", "half": "bottom", @@ -85531,7 +95949,7 @@ } }, { - "id": 8291, + "id": 9935, "properties": { "facing": "north", "half": "bottom", @@ -85541,7 +95959,7 @@ } }, { - "id": 8292, + "id": 9936, "properties": { "facing": "north", "half": "bottom", @@ -85552,7 +95970,7 @@ }, { "default": true, - "id": 8293, + "id": 9937, "properties": { "facing": "north", "half": "bottom", @@ -85562,7 +95980,7 @@ } }, { - "id": 8294, + "id": 9938, "properties": { "facing": "south", "half": "top", @@ -85572,7 +95990,7 @@ } }, { - "id": 8295, + "id": 9939, "properties": { "facing": "south", "half": "top", @@ -85582,7 +96000,7 @@ } }, { - "id": 8296, + "id": 9940, "properties": { "facing": "south", "half": "top", @@ -85592,7 +96010,7 @@ } }, { - "id": 8297, + "id": 9941, "properties": { "facing": "south", "half": "top", @@ -85602,7 +96020,7 @@ } }, { - "id": 8298, + "id": 9942, "properties": { "facing": "south", "half": "top", @@ -85612,7 +96030,7 @@ } }, { - "id": 8299, + "id": 9943, "properties": { "facing": "south", "half": "top", @@ -85622,7 +96040,7 @@ } }, { - "id": 8300, + "id": 9944, "properties": { "facing": "south", "half": "top", @@ -85632,7 +96050,7 @@ } }, { - "id": 8301, + "id": 9945, "properties": { "facing": "south", "half": "top", @@ -85642,7 +96060,7 @@ } }, { - "id": 8302, + "id": 9946, "properties": { "facing": "south", "half": "bottom", @@ -85652,7 +96070,7 @@ } }, { - "id": 8303, + "id": 9947, "properties": { "facing": "south", "half": "bottom", @@ -85662,7 +96080,7 @@ } }, { - "id": 8304, + "id": 9948, "properties": { "facing": "south", "half": "bottom", @@ -85672,7 +96090,7 @@ } }, { - "id": 8305, + "id": 9949, "properties": { "facing": "south", "half": "bottom", @@ -85682,7 +96100,7 @@ } }, { - "id": 8306, + "id": 9950, "properties": { "facing": "south", "half": "bottom", @@ -85692,7 +96110,7 @@ } }, { - "id": 8307, + "id": 9951, "properties": { "facing": "south", "half": "bottom", @@ -85702,7 +96120,7 @@ } }, { - "id": 8308, + "id": 9952, "properties": { "facing": "south", "half": "bottom", @@ -85712,7 +96130,7 @@ } }, { - "id": 8309, + "id": 9953, "properties": { "facing": "south", "half": "bottom", @@ -85722,7 +96140,7 @@ } }, { - "id": 8310, + "id": 9954, "properties": { "facing": "west", "half": "top", @@ -85732,7 +96150,7 @@ } }, { - "id": 8311, + "id": 9955, "properties": { "facing": "west", "half": "top", @@ -85742,7 +96160,7 @@ } }, { - "id": 8312, + "id": 9956, "properties": { "facing": "west", "half": "top", @@ -85752,7 +96170,7 @@ } }, { - "id": 8313, + "id": 9957, "properties": { "facing": "west", "half": "top", @@ -85762,7 +96180,7 @@ } }, { - "id": 8314, + "id": 9958, "properties": { "facing": "west", "half": "top", @@ -85772,7 +96190,7 @@ } }, { - "id": 8315, + "id": 9959, "properties": { "facing": "west", "half": "top", @@ -85782,7 +96200,7 @@ } }, { - "id": 8316, + "id": 9960, "properties": { "facing": "west", "half": "top", @@ -85792,7 +96210,7 @@ } }, { - "id": 8317, + "id": 9961, "properties": { "facing": "west", "half": "top", @@ -85802,7 +96220,7 @@ } }, { - "id": 8318, + "id": 9962, "properties": { "facing": "west", "half": "bottom", @@ -85812,7 +96230,7 @@ } }, { - "id": 8319, + "id": 9963, "properties": { "facing": "west", "half": "bottom", @@ -85822,7 +96240,7 @@ } }, { - "id": 8320, + "id": 9964, "properties": { "facing": "west", "half": "bottom", @@ -85832,7 +96250,7 @@ } }, { - "id": 8321, + "id": 9965, "properties": { "facing": "west", "half": "bottom", @@ -85842,7 +96260,7 @@ } }, { - "id": 8322, + "id": 9966, "properties": { "facing": "west", "half": "bottom", @@ -85852,7 +96270,7 @@ } }, { - "id": 8323, + "id": 9967, "properties": { "facing": "west", "half": "bottom", @@ -85862,7 +96280,7 @@ } }, { - "id": 8324, + "id": 9968, "properties": { "facing": "west", "half": "bottom", @@ -85872,7 +96290,7 @@ } }, { - "id": 8325, + "id": 9969, "properties": { "facing": "west", "half": "bottom", @@ -85882,7 +96300,7 @@ } }, { - "id": 8326, + "id": 9970, "properties": { "facing": "east", "half": "top", @@ -85892,7 +96310,7 @@ } }, { - "id": 8327, + "id": 9971, "properties": { "facing": "east", "half": "top", @@ -85902,7 +96320,7 @@ } }, { - "id": 8328, + "id": 9972, "properties": { "facing": "east", "half": "top", @@ -85912,7 +96330,7 @@ } }, { - "id": 8329, + "id": 9973, "properties": { "facing": "east", "half": "top", @@ -85922,7 +96340,7 @@ } }, { - "id": 8330, + "id": 9974, "properties": { "facing": "east", "half": "top", @@ -85932,7 +96350,7 @@ } }, { - "id": 8331, + "id": 9975, "properties": { "facing": "east", "half": "top", @@ -85942,7 +96360,7 @@ } }, { - "id": 8332, + "id": 9976, "properties": { "facing": "east", "half": "top", @@ -85952,7 +96370,7 @@ } }, { - "id": 8333, + "id": 9977, "properties": { "facing": "east", "half": "top", @@ -85962,7 +96380,7 @@ } }, { - "id": 8334, + "id": 9978, "properties": { "facing": "east", "half": "bottom", @@ -85972,7 +96390,7 @@ } }, { - "id": 8335, + "id": 9979, "properties": { "facing": "east", "half": "bottom", @@ -85982,7 +96400,7 @@ } }, { - "id": 8336, + "id": 9980, "properties": { "facing": "east", "half": "bottom", @@ -85992,7 +96410,7 @@ } }, { - "id": 8337, + "id": 9981, "properties": { "facing": "east", "half": "bottom", @@ -86002,7 +96420,7 @@ } }, { - "id": 8338, + "id": 9982, "properties": { "facing": "east", "half": "bottom", @@ -86012,7 +96430,7 @@ } }, { - "id": 8339, + "id": 9983, "properties": { "facing": "east", "half": "bottom", @@ -86022,7 +96440,7 @@ } }, { - "id": 8340, + "id": 9984, "properties": { "facing": "east", "half": "bottom", @@ -86032,7 +96450,7 @@ } }, { - "id": 8341, + "id": 9985, "properties": { "facing": "east", "half": "bottom", @@ -86055,25 +96473,25 @@ "states": [ { "default": true, - "id": 4329, + "id": 5705, "properties": { "facing": "north" } }, { - "id": 4330, + "id": 5706, "properties": { "facing": "south" } }, { - "id": 4331, + "id": 5707, "properties": { "facing": "west" } }, { - "id": 4332, + "id": 5708, "properties": { "facing": "east" } @@ -86099,74 +96517,74 @@ }, "states": [ { - "id": 16948, + "id": 18732, "properties": { "orientation": "down_east" } }, { - "id": 16949, + "id": 18733, "properties": { "orientation": "down_north" } }, { - "id": 16950, + "id": 18734, "properties": { "orientation": "down_south" } }, { - "id": 16951, + "id": 18735, "properties": { "orientation": "down_west" } }, { - "id": 16952, + "id": 18736, "properties": { "orientation": "up_east" } }, { - "id": 16953, + "id": 18737, "properties": { "orientation": "up_north" } }, { - "id": 16954, + "id": 18738, "properties": { "orientation": "up_south" } }, { - "id": 16955, + "id": 18739, "properties": { "orientation": "up_west" } }, { - "id": 16956, + "id": 18740, "properties": { "orientation": "west_up" } }, { - "id": 16957, + "id": 18741, "properties": { "orientation": "east_up" } }, { "default": true, - "id": 16958, + "id": 18742, "properties": { "orientation": "north_up" } }, { - "id": 16959, + "id": 18743, "properties": { "orientation": "south_up" } @@ -86182,14 +96600,14 @@ }, "states": [ { - "id": 4273, + "id": 5649, "properties": { "has_record": "true" } }, { "default": true, - "id": 4274, + "id": 5650, "properties": { "has_record": "false" } @@ -86216,7 +96634,7 @@ }, "states": [ { - "id": 7011, + "id": 8451, "properties": { "face": "floor", "facing": "north", @@ -86224,7 +96642,7 @@ } }, { - "id": 7012, + "id": 8452, "properties": { "face": "floor", "facing": "north", @@ -86232,7 +96650,7 @@ } }, { - "id": 7013, + "id": 8453, "properties": { "face": "floor", "facing": "south", @@ -86240,7 +96658,7 @@ } }, { - "id": 7014, + "id": 8454, "properties": { "face": "floor", "facing": "south", @@ -86248,7 +96666,7 @@ } }, { - "id": 7015, + "id": 8455, "properties": { "face": "floor", "facing": "west", @@ -86256,7 +96674,7 @@ } }, { - "id": 7016, + "id": 8456, "properties": { "face": "floor", "facing": "west", @@ -86264,7 +96682,7 @@ } }, { - "id": 7017, + "id": 8457, "properties": { "face": "floor", "facing": "east", @@ -86272,7 +96690,7 @@ } }, { - "id": 7018, + "id": 8458, "properties": { "face": "floor", "facing": "east", @@ -86280,7 +96698,7 @@ } }, { - "id": 7019, + "id": 8459, "properties": { "face": "wall", "facing": "north", @@ -86289,7 +96707,7 @@ }, { "default": true, - "id": 7020, + "id": 8460, "properties": { "face": "wall", "facing": "north", @@ -86297,7 +96715,7 @@ } }, { - "id": 7021, + "id": 8461, "properties": { "face": "wall", "facing": "south", @@ -86305,7 +96723,7 @@ } }, { - "id": 7022, + "id": 8462, "properties": { "face": "wall", "facing": "south", @@ -86313,7 +96731,7 @@ } }, { - "id": 7023, + "id": 8463, "properties": { "face": "wall", "facing": "west", @@ -86321,7 +96739,7 @@ } }, { - "id": 7024, + "id": 8464, "properties": { "face": "wall", "facing": "west", @@ -86329,7 +96747,7 @@ } }, { - "id": 7025, + "id": 8465, "properties": { "face": "wall", "facing": "east", @@ -86337,7 +96755,7 @@ } }, { - "id": 7026, + "id": 8466, "properties": { "face": "wall", "facing": "east", @@ -86345,7 +96763,7 @@ } }, { - "id": 7027, + "id": 8467, "properties": { "face": "ceiling", "facing": "north", @@ -86353,7 +96771,7 @@ } }, { - "id": 7028, + "id": 8468, "properties": { "face": "ceiling", "facing": "north", @@ -86361,7 +96779,7 @@ } }, { - "id": 7029, + "id": 8469, "properties": { "face": "ceiling", "facing": "south", @@ -86369,7 +96787,7 @@ } }, { - "id": 7030, + "id": 8470, "properties": { "face": "ceiling", "facing": "south", @@ -86377,7 +96795,7 @@ } }, { - "id": 7031, + "id": 8471, "properties": { "face": "ceiling", "facing": "west", @@ -86385,7 +96803,7 @@ } }, { - "id": 7032, + "id": 8472, "properties": { "face": "ceiling", "facing": "west", @@ -86393,7 +96811,7 @@ } }, { - "id": 7033, + "id": 8473, "properties": { "face": "ceiling", "facing": "east", @@ -86401,7 +96819,7 @@ } }, { - "id": 7034, + "id": 8474, "properties": { "face": "ceiling", "facing": "east", @@ -86437,7 +96855,7 @@ }, "states": [ { - "id": 9683, + "id": 11403, "properties": { "facing": "north", "half": "upper", @@ -86447,7 +96865,7 @@ } }, { - "id": 9684, + "id": 11404, "properties": { "facing": "north", "half": "upper", @@ -86457,7 +96875,7 @@ } }, { - "id": 9685, + "id": 11405, "properties": { "facing": "north", "half": "upper", @@ -86467,7 +96885,7 @@ } }, { - "id": 9686, + "id": 11406, "properties": { "facing": "north", "half": "upper", @@ -86477,7 +96895,7 @@ } }, { - "id": 9687, + "id": 11407, "properties": { "facing": "north", "half": "upper", @@ -86487,7 +96905,7 @@ } }, { - "id": 9688, + "id": 11408, "properties": { "facing": "north", "half": "upper", @@ -86497,7 +96915,7 @@ } }, { - "id": 9689, + "id": 11409, "properties": { "facing": "north", "half": "upper", @@ -86507,7 +96925,7 @@ } }, { - "id": 9690, + "id": 11410, "properties": { "facing": "north", "half": "upper", @@ -86517,7 +96935,7 @@ } }, { - "id": 9691, + "id": 11411, "properties": { "facing": "north", "half": "lower", @@ -86527,7 +96945,7 @@ } }, { - "id": 9692, + "id": 11412, "properties": { "facing": "north", "half": "lower", @@ -86537,7 +96955,7 @@ } }, { - "id": 9693, + "id": 11413, "properties": { "facing": "north", "half": "lower", @@ -86548,7 +96966,7 @@ }, { "default": true, - "id": 9694, + "id": 11414, "properties": { "facing": "north", "half": "lower", @@ -86558,7 +96976,7 @@ } }, { - "id": 9695, + "id": 11415, "properties": { "facing": "north", "half": "lower", @@ -86568,7 +96986,7 @@ } }, { - "id": 9696, + "id": 11416, "properties": { "facing": "north", "half": "lower", @@ -86578,7 +96996,7 @@ } }, { - "id": 9697, + "id": 11417, "properties": { "facing": "north", "half": "lower", @@ -86588,7 +97006,7 @@ } }, { - "id": 9698, + "id": 11418, "properties": { "facing": "north", "half": "lower", @@ -86598,7 +97016,7 @@ } }, { - "id": 9699, + "id": 11419, "properties": { "facing": "south", "half": "upper", @@ -86608,7 +97026,7 @@ } }, { - "id": 9700, + "id": 11420, "properties": { "facing": "south", "half": "upper", @@ -86618,7 +97036,7 @@ } }, { - "id": 9701, + "id": 11421, "properties": { "facing": "south", "half": "upper", @@ -86628,7 +97046,7 @@ } }, { - "id": 9702, + "id": 11422, "properties": { "facing": "south", "half": "upper", @@ -86638,7 +97056,7 @@ } }, { - "id": 9703, + "id": 11423, "properties": { "facing": "south", "half": "upper", @@ -86648,7 +97066,7 @@ } }, { - "id": 9704, + "id": 11424, "properties": { "facing": "south", "half": "upper", @@ -86658,7 +97076,7 @@ } }, { - "id": 9705, + "id": 11425, "properties": { "facing": "south", "half": "upper", @@ -86668,7 +97086,7 @@ } }, { - "id": 9706, + "id": 11426, "properties": { "facing": "south", "half": "upper", @@ -86678,7 +97096,7 @@ } }, { - "id": 9707, + "id": 11427, "properties": { "facing": "south", "half": "lower", @@ -86688,7 +97106,7 @@ } }, { - "id": 9708, + "id": 11428, "properties": { "facing": "south", "half": "lower", @@ -86698,7 +97116,7 @@ } }, { - "id": 9709, + "id": 11429, "properties": { "facing": "south", "half": "lower", @@ -86708,7 +97126,7 @@ } }, { - "id": 9710, + "id": 11430, "properties": { "facing": "south", "half": "lower", @@ -86718,7 +97136,7 @@ } }, { - "id": 9711, + "id": 11431, "properties": { "facing": "south", "half": "lower", @@ -86728,7 +97146,7 @@ } }, { - "id": 9712, + "id": 11432, "properties": { "facing": "south", "half": "lower", @@ -86738,7 +97156,7 @@ } }, { - "id": 9713, + "id": 11433, "properties": { "facing": "south", "half": "lower", @@ -86748,7 +97166,7 @@ } }, { - "id": 9714, + "id": 11434, "properties": { "facing": "south", "half": "lower", @@ -86758,7 +97176,7 @@ } }, { - "id": 9715, + "id": 11435, "properties": { "facing": "west", "half": "upper", @@ -86768,7 +97186,7 @@ } }, { - "id": 9716, + "id": 11436, "properties": { "facing": "west", "half": "upper", @@ -86778,7 +97196,7 @@ } }, { - "id": 9717, + "id": 11437, "properties": { "facing": "west", "half": "upper", @@ -86788,7 +97206,7 @@ } }, { - "id": 9718, + "id": 11438, "properties": { "facing": "west", "half": "upper", @@ -86798,7 +97216,7 @@ } }, { - "id": 9719, + "id": 11439, "properties": { "facing": "west", "half": "upper", @@ -86808,7 +97226,7 @@ } }, { - "id": 9720, + "id": 11440, "properties": { "facing": "west", "half": "upper", @@ -86818,7 +97236,7 @@ } }, { - "id": 9721, + "id": 11441, "properties": { "facing": "west", "half": "upper", @@ -86828,7 +97246,7 @@ } }, { - "id": 9722, + "id": 11442, "properties": { "facing": "west", "half": "upper", @@ -86838,7 +97256,7 @@ } }, { - "id": 9723, + "id": 11443, "properties": { "facing": "west", "half": "lower", @@ -86848,7 +97266,7 @@ } }, { - "id": 9724, + "id": 11444, "properties": { "facing": "west", "half": "lower", @@ -86858,7 +97276,7 @@ } }, { - "id": 9725, + "id": 11445, "properties": { "facing": "west", "half": "lower", @@ -86868,7 +97286,7 @@ } }, { - "id": 9726, + "id": 11446, "properties": { "facing": "west", "half": "lower", @@ -86878,7 +97296,7 @@ } }, { - "id": 9727, + "id": 11447, "properties": { "facing": "west", "half": "lower", @@ -86888,7 +97306,7 @@ } }, { - "id": 9728, + "id": 11448, "properties": { "facing": "west", "half": "lower", @@ -86898,7 +97316,7 @@ } }, { - "id": 9729, + "id": 11449, "properties": { "facing": "west", "half": "lower", @@ -86908,7 +97326,7 @@ } }, { - "id": 9730, + "id": 11450, "properties": { "facing": "west", "half": "lower", @@ -86918,7 +97336,7 @@ } }, { - "id": 9731, + "id": 11451, "properties": { "facing": "east", "half": "upper", @@ -86928,7 +97346,7 @@ } }, { - "id": 9732, + "id": 11452, "properties": { "facing": "east", "half": "upper", @@ -86938,7 +97356,7 @@ } }, { - "id": 9733, + "id": 11453, "properties": { "facing": "east", "half": "upper", @@ -86948,7 +97366,7 @@ } }, { - "id": 9734, + "id": 11454, "properties": { "facing": "east", "half": "upper", @@ -86958,7 +97376,7 @@ } }, { - "id": 9735, + "id": 11455, "properties": { "facing": "east", "half": "upper", @@ -86968,7 +97386,7 @@ } }, { - "id": 9736, + "id": 11456, "properties": { "facing": "east", "half": "upper", @@ -86978,7 +97396,7 @@ } }, { - "id": 9737, + "id": 11457, "properties": { "facing": "east", "half": "upper", @@ -86988,7 +97406,7 @@ } }, { - "id": 9738, + "id": 11458, "properties": { "facing": "east", "half": "upper", @@ -86998,7 +97416,7 @@ } }, { - "id": 9739, + "id": 11459, "properties": { "facing": "east", "half": "lower", @@ -87008,7 +97426,7 @@ } }, { - "id": 9740, + "id": 11460, "properties": { "facing": "east", "half": "lower", @@ -87018,7 +97436,7 @@ } }, { - "id": 9741, + "id": 11461, "properties": { "facing": "east", "half": "lower", @@ -87028,7 +97446,7 @@ } }, { - "id": 9742, + "id": 11462, "properties": { "facing": "east", "half": "lower", @@ -87038,7 +97456,7 @@ } }, { - "id": 9743, + "id": 11463, "properties": { "facing": "east", "half": "lower", @@ -87048,7 +97466,7 @@ } }, { - "id": 9744, + "id": 11464, "properties": { "facing": "east", "half": "lower", @@ -87058,7 +97476,7 @@ } }, { - "id": 9745, + "id": 11465, "properties": { "facing": "east", "half": "lower", @@ -87068,7 +97486,7 @@ } }, { - "id": 9746, + "id": 11466, "properties": { "facing": "east", "half": "lower", @@ -87104,7 +97522,7 @@ }, "states": [ { - "id": 9427, + "id": 11115, "properties": { "east": "true", "north": "true", @@ -87114,7 +97532,7 @@ } }, { - "id": 9428, + "id": 11116, "properties": { "east": "true", "north": "true", @@ -87124,7 +97542,7 @@ } }, { - "id": 9429, + "id": 11117, "properties": { "east": "true", "north": "true", @@ -87134,7 +97552,7 @@ } }, { - "id": 9430, + "id": 11118, "properties": { "east": "true", "north": "true", @@ -87144,7 +97562,7 @@ } }, { - "id": 9431, + "id": 11119, "properties": { "east": "true", "north": "true", @@ -87154,7 +97572,7 @@ } }, { - "id": 9432, + "id": 11120, "properties": { "east": "true", "north": "true", @@ -87164,7 +97582,7 @@ } }, { - "id": 9433, + "id": 11121, "properties": { "east": "true", "north": "true", @@ -87174,7 +97592,7 @@ } }, { - "id": 9434, + "id": 11122, "properties": { "east": "true", "north": "true", @@ -87184,7 +97602,7 @@ } }, { - "id": 9435, + "id": 11123, "properties": { "east": "true", "north": "false", @@ -87194,7 +97612,7 @@ } }, { - "id": 9436, + "id": 11124, "properties": { "east": "true", "north": "false", @@ -87204,7 +97622,7 @@ } }, { - "id": 9437, + "id": 11125, "properties": { "east": "true", "north": "false", @@ -87214,7 +97632,7 @@ } }, { - "id": 9438, + "id": 11126, "properties": { "east": "true", "north": "false", @@ -87224,7 +97642,7 @@ } }, { - "id": 9439, + "id": 11127, "properties": { "east": "true", "north": "false", @@ -87234,7 +97652,7 @@ } }, { - "id": 9440, + "id": 11128, "properties": { "east": "true", "north": "false", @@ -87244,7 +97662,7 @@ } }, { - "id": 9441, + "id": 11129, "properties": { "east": "true", "north": "false", @@ -87254,7 +97672,7 @@ } }, { - "id": 9442, + "id": 11130, "properties": { "east": "true", "north": "false", @@ -87264,7 +97682,7 @@ } }, { - "id": 9443, + "id": 11131, "properties": { "east": "false", "north": "true", @@ -87274,7 +97692,7 @@ } }, { - "id": 9444, + "id": 11132, "properties": { "east": "false", "north": "true", @@ -87284,7 +97702,7 @@ } }, { - "id": 9445, + "id": 11133, "properties": { "east": "false", "north": "true", @@ -87294,7 +97712,7 @@ } }, { - "id": 9446, + "id": 11134, "properties": { "east": "false", "north": "true", @@ -87304,7 +97722,7 @@ } }, { - "id": 9447, + "id": 11135, "properties": { "east": "false", "north": "true", @@ -87314,7 +97732,7 @@ } }, { - "id": 9448, + "id": 11136, "properties": { "east": "false", "north": "true", @@ -87324,7 +97742,7 @@ } }, { - "id": 9449, + "id": 11137, "properties": { "east": "false", "north": "true", @@ -87334,7 +97752,7 @@ } }, { - "id": 9450, + "id": 11138, "properties": { "east": "false", "north": "true", @@ -87344,7 +97762,7 @@ } }, { - "id": 9451, + "id": 11139, "properties": { "east": "false", "north": "false", @@ -87354,7 +97772,7 @@ } }, { - "id": 9452, + "id": 11140, "properties": { "east": "false", "north": "false", @@ -87364,7 +97782,7 @@ } }, { - "id": 9453, + "id": 11141, "properties": { "east": "false", "north": "false", @@ -87374,7 +97792,7 @@ } }, { - "id": 9454, + "id": 11142, "properties": { "east": "false", "north": "false", @@ -87384,7 +97802,7 @@ } }, { - "id": 9455, + "id": 11143, "properties": { "east": "false", "north": "false", @@ -87394,7 +97812,7 @@ } }, { - "id": 9456, + "id": 11144, "properties": { "east": "false", "north": "false", @@ -87404,7 +97822,7 @@ } }, { - "id": 9457, + "id": 11145, "properties": { "east": "false", "north": "false", @@ -87415,7 +97833,7 @@ }, { "default": true, - "id": 9458, + "id": 11146, "properties": { "east": "false", "north": "false", @@ -87449,7 +97867,7 @@ }, "states": [ { - "id": 9235, + "id": 10891, "properties": { "facing": "north", "in_wall": "true", @@ -87458,7 +97876,7 @@ } }, { - "id": 9236, + "id": 10892, "properties": { "facing": "north", "in_wall": "true", @@ -87467,7 +97885,7 @@ } }, { - "id": 9237, + "id": 10893, "properties": { "facing": "north", "in_wall": "true", @@ -87476,7 +97894,7 @@ } }, { - "id": 9238, + "id": 10894, "properties": { "facing": "north", "in_wall": "true", @@ -87485,7 +97903,7 @@ } }, { - "id": 9239, + "id": 10895, "properties": { "facing": "north", "in_wall": "false", @@ -87494,7 +97912,7 @@ } }, { - "id": 9240, + "id": 10896, "properties": { "facing": "north", "in_wall": "false", @@ -87503,7 +97921,7 @@ } }, { - "id": 9241, + "id": 10897, "properties": { "facing": "north", "in_wall": "false", @@ -87513,7 +97931,7 @@ }, { "default": true, - "id": 9242, + "id": 10898, "properties": { "facing": "north", "in_wall": "false", @@ -87522,7 +97940,7 @@ } }, { - "id": 9243, + "id": 10899, "properties": { "facing": "south", "in_wall": "true", @@ -87531,7 +97949,7 @@ } }, { - "id": 9244, + "id": 10900, "properties": { "facing": "south", "in_wall": "true", @@ -87540,7 +97958,7 @@ } }, { - "id": 9245, + "id": 10901, "properties": { "facing": "south", "in_wall": "true", @@ -87549,7 +97967,7 @@ } }, { - "id": 9246, + "id": 10902, "properties": { "facing": "south", "in_wall": "true", @@ -87558,7 +97976,7 @@ } }, { - "id": 9247, + "id": 10903, "properties": { "facing": "south", "in_wall": "false", @@ -87567,7 +97985,7 @@ } }, { - "id": 9248, + "id": 10904, "properties": { "facing": "south", "in_wall": "false", @@ -87576,7 +97994,7 @@ } }, { - "id": 9249, + "id": 10905, "properties": { "facing": "south", "in_wall": "false", @@ -87585,7 +98003,7 @@ } }, { - "id": 9250, + "id": 10906, "properties": { "facing": "south", "in_wall": "false", @@ -87594,7 +98012,7 @@ } }, { - "id": 9251, + "id": 10907, "properties": { "facing": "west", "in_wall": "true", @@ -87603,7 +98021,7 @@ } }, { - "id": 9252, + "id": 10908, "properties": { "facing": "west", "in_wall": "true", @@ -87612,7 +98030,7 @@ } }, { - "id": 9253, + "id": 10909, "properties": { "facing": "west", "in_wall": "true", @@ -87621,7 +98039,7 @@ } }, { - "id": 9254, + "id": 10910, "properties": { "facing": "west", "in_wall": "true", @@ -87630,7 +98048,7 @@ } }, { - "id": 9255, + "id": 10911, "properties": { "facing": "west", "in_wall": "false", @@ -87639,7 +98057,7 @@ } }, { - "id": 9256, + "id": 10912, "properties": { "facing": "west", "in_wall": "false", @@ -87648,7 +98066,7 @@ } }, { - "id": 9257, + "id": 10913, "properties": { "facing": "west", "in_wall": "false", @@ -87657,7 +98075,7 @@ } }, { - "id": 9258, + "id": 10914, "properties": { "facing": "west", "in_wall": "false", @@ -87666,7 +98084,7 @@ } }, { - "id": 9259, + "id": 10915, "properties": { "facing": "east", "in_wall": "true", @@ -87675,7 +98093,7 @@ } }, { - "id": 9260, + "id": 10916, "properties": { "facing": "east", "in_wall": "true", @@ -87684,7 +98102,7 @@ } }, { - "id": 9261, + "id": 10917, "properties": { "facing": "east", "in_wall": "true", @@ -87693,7 +98111,7 @@ } }, { - "id": 9262, + "id": 10918, "properties": { "facing": "east", "in_wall": "true", @@ -87702,7 +98120,7 @@ } }, { - "id": 9263, + "id": 10919, "properties": { "facing": "east", "in_wall": "false", @@ -87711,7 +98129,7 @@ } }, { - "id": 9264, + "id": 10920, "properties": { "facing": "east", "in_wall": "false", @@ -87720,7 +98138,7 @@ } }, { - "id": 9265, + "id": 10921, "properties": { "facing": "east", "in_wall": "false", @@ -87729,7 +98147,7 @@ } }, { - "id": 9266, + "id": 10922, "properties": { "facing": "east", "in_wall": "false", @@ -87739,6 +98157,551 @@ } ] }, + "minecraft:jungle_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4998, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 4999, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5000, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5001, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5002, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5003, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5004, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5005, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5006, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5007, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5008, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5009, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5010, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5011, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5012, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5013, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5014, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5015, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5016, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5017, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5018, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5019, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5020, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5021, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5022, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5023, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5024, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5025, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5026, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5027, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5028, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5029, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5030, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5031, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5032, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5033, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5034, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5035, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5036, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5037, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5038, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5039, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5040, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5041, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5042, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5043, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5044, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5045, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5046, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5047, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5048, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5049, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5050, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5051, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5052, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5053, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5054, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5055, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5056, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5057, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5058, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5059, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5060, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5061, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, "minecraft:jungle_leaves": { "properties": { "distance": [ @@ -87760,74 +98723,10 @@ ] }, "states": [ - { - "id": 290, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 291, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 292, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 293, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 294, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 295, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 296, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 297, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, { "id": 298, "properties": { - "distance": "3", + "distance": "1", "persistent": "true", "waterlogged": "true" } @@ -87835,7 +98734,7 @@ { "id": 299, "properties": { - "distance": "3", + "distance": "1", "persistent": "true", "waterlogged": "false" } @@ -87843,7 +98742,7 @@ { "id": 300, "properties": { - "distance": "3", + "distance": "1", "persistent": "false", "waterlogged": "true" } @@ -87851,7 +98750,7 @@ { "id": 301, "properties": { - "distance": "3", + "distance": "1", "persistent": "false", "waterlogged": "false" } @@ -87859,7 +98758,7 @@ { "id": 302, "properties": { - "distance": "4", + "distance": "2", "persistent": "true", "waterlogged": "true" } @@ -87867,7 +98766,7 @@ { "id": 303, "properties": { - "distance": "4", + "distance": "2", "persistent": "true", "waterlogged": "false" } @@ -87875,7 +98774,7 @@ { "id": 304, "properties": { - "distance": "4", + "distance": "2", "persistent": "false", "waterlogged": "true" } @@ -87883,7 +98782,7 @@ { "id": 305, "properties": { - "distance": "4", + "distance": "2", "persistent": "false", "waterlogged": "false" } @@ -87891,7 +98790,7 @@ { "id": 306, "properties": { - "distance": "5", + "distance": "3", "persistent": "true", "waterlogged": "true" } @@ -87899,7 +98798,7 @@ { "id": 307, "properties": { - "distance": "5", + "distance": "3", "persistent": "true", "waterlogged": "false" } @@ -87907,7 +98806,7 @@ { "id": 308, "properties": { - "distance": "5", + "distance": "3", "persistent": "false", "waterlogged": "true" } @@ -87915,7 +98814,7 @@ { "id": 309, "properties": { - "distance": "5", + "distance": "3", "persistent": "false", "waterlogged": "false" } @@ -87923,7 +98822,7 @@ { "id": 310, "properties": { - "distance": "6", + "distance": "4", "persistent": "true", "waterlogged": "true" } @@ -87931,7 +98830,7 @@ { "id": 311, "properties": { - "distance": "6", + "distance": "4", "persistent": "true", "waterlogged": "false" } @@ -87939,7 +98838,7 @@ { "id": 312, "properties": { - "distance": "6", + "distance": "4", "persistent": "false", "waterlogged": "true" } @@ -87947,7 +98846,7 @@ { "id": 313, "properties": { - "distance": "6", + "distance": "4", "persistent": "false", "waterlogged": "false" } @@ -87955,7 +98854,7 @@ { "id": 314, "properties": { - "distance": "7", + "distance": "5", "persistent": "true", "waterlogged": "true" } @@ -87963,13 +98862,77 @@ { "id": 315, "properties": { - "distance": "7", + "distance": "5", "persistent": "true", "waterlogged": "false" } }, { "id": 316, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 317, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 318, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 319, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 320, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 321, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 322, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 323, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 324, "properties": { "distance": "7", "persistent": "false", @@ -87978,7 +98941,7 @@ }, { "default": true, - "id": 317, + "id": 325, "properties": { "distance": "7", "persistent": "false", @@ -87997,20 +98960,20 @@ }, "states": [ { - "id": 126, + "id": 128, "properties": { "axis": "x" } }, { "default": true, - "id": 127, + "id": 129, "properties": { "axis": "y" } }, { - "id": 128, + "id": 130, "properties": { "axis": "z" } @@ -88034,14 +98997,14 @@ }, "states": [ { - "id": 4184, + "id": 5558, "properties": { "powered": "true" } }, { "default": true, - "id": 4185, + "id": 5559, "properties": { "powered": "false" } @@ -88058,13 +99021,13 @@ "states": [ { "default": true, - "id": 28, + "id": 30, "properties": { "stage": "0" } }, { - "id": 29, + "id": 31, "properties": { "stage": "1" } @@ -88098,7 +99061,7 @@ }, "states": [ { - "id": 3764, + "id": 4378, "properties": { "rotation": "0", "waterlogged": "true" @@ -88106,217 +99069,217 @@ }, { "default": true, - "id": 3765, + "id": 4379, "properties": { "rotation": "0", "waterlogged": "false" } }, { - "id": 3766, + "id": 4380, "properties": { "rotation": "1", "waterlogged": "true" } }, { - "id": 3767, + "id": 4381, "properties": { "rotation": "1", "waterlogged": "false" } }, { - "id": 3768, + "id": 4382, "properties": { "rotation": "2", "waterlogged": "true" } }, { - "id": 3769, + "id": 4383, "properties": { "rotation": "2", "waterlogged": "false" } }, { - "id": 3770, + "id": 4384, "properties": { "rotation": "3", "waterlogged": "true" } }, { - "id": 3771, + "id": 4385, "properties": { "rotation": "3", "waterlogged": "false" } }, { - "id": 3772, + "id": 4386, "properties": { "rotation": "4", "waterlogged": "true" } }, { - "id": 3773, + "id": 4387, "properties": { "rotation": "4", "waterlogged": "false" } }, { - "id": 3774, + "id": 4388, "properties": { "rotation": "5", "waterlogged": "true" } }, { - "id": 3775, + "id": 4389, "properties": { "rotation": "5", "waterlogged": "false" } }, { - "id": 3776, + "id": 4390, "properties": { "rotation": "6", "waterlogged": "true" } }, { - "id": 3777, + "id": 4391, "properties": { "rotation": "6", "waterlogged": "false" } }, { - "id": 3778, + "id": 4392, "properties": { "rotation": "7", "waterlogged": "true" } }, { - "id": 3779, + "id": 4393, "properties": { "rotation": "7", "waterlogged": "false" } }, { - "id": 3780, + "id": 4394, "properties": { "rotation": "8", "waterlogged": "true" } }, { - "id": 3781, + "id": 4395, "properties": { "rotation": "8", "waterlogged": "false" } }, { - "id": 3782, + "id": 4396, "properties": { "rotation": "9", "waterlogged": "true" } }, { - "id": 3783, + "id": 4397, "properties": { "rotation": "9", "waterlogged": "false" } }, { - "id": 3784, + "id": 4398, "properties": { "rotation": "10", "waterlogged": "true" } }, { - "id": 3785, + "id": 4399, "properties": { "rotation": "10", "waterlogged": "false" } }, { - "id": 3786, + "id": 4400, "properties": { "rotation": "11", "waterlogged": "true" } }, { - "id": 3787, + "id": 4401, "properties": { "rotation": "11", "waterlogged": "false" } }, { - "id": 3788, + "id": 4402, "properties": { "rotation": "12", "waterlogged": "true" } }, { - "id": 3789, + "id": 4403, "properties": { "rotation": "12", "waterlogged": "false" } }, { - "id": 3790, + "id": 4404, "properties": { "rotation": "13", "waterlogged": "true" } }, { - "id": 3791, + "id": 4405, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 3792, + "id": 4406, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 3793, + "id": 4407, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 3794, + "id": 4408, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 3795, + "id": 4409, "properties": { "rotation": "15", "waterlogged": "false" @@ -88338,21 +99301,21 @@ }, "states": [ { - "id": 9059, + "id": 10703, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 9060, + "id": 10704, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 9061, + "id": 10705, "properties": { "type": "bottom", "waterlogged": "true" @@ -88360,21 +99323,21 @@ }, { "default": true, - "id": 9062, + "id": 10706, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 9063, + "id": 10707, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 9064, + "id": 10708, "properties": { "type": "double", "waterlogged": "false" @@ -88408,7 +99371,7 @@ }, "states": [ { - "id": 6156, + "id": 7596, "properties": { "facing": "north", "half": "top", @@ -88417,7 +99380,7 @@ } }, { - "id": 6157, + "id": 7597, "properties": { "facing": "north", "half": "top", @@ -88426,7 +99389,7 @@ } }, { - "id": 6158, + "id": 7598, "properties": { "facing": "north", "half": "top", @@ -88435,7 +99398,7 @@ } }, { - "id": 6159, + "id": 7599, "properties": { "facing": "north", "half": "top", @@ -88444,7 +99407,7 @@ } }, { - "id": 6160, + "id": 7600, "properties": { "facing": "north", "half": "top", @@ -88453,7 +99416,7 @@ } }, { - "id": 6161, + "id": 7601, "properties": { "facing": "north", "half": "top", @@ -88462,7 +99425,7 @@ } }, { - "id": 6162, + "id": 7602, "properties": { "facing": "north", "half": "top", @@ -88471,7 +99434,7 @@ } }, { - "id": 6163, + "id": 7603, "properties": { "facing": "north", "half": "top", @@ -88480,7 +99443,7 @@ } }, { - "id": 6164, + "id": 7604, "properties": { "facing": "north", "half": "top", @@ -88489,7 +99452,7 @@ } }, { - "id": 6165, + "id": 7605, "properties": { "facing": "north", "half": "top", @@ -88498,7 +99461,7 @@ } }, { - "id": 6166, + "id": 7606, "properties": { "facing": "north", "half": "bottom", @@ -88508,7 +99471,7 @@ }, { "default": true, - "id": 6167, + "id": 7607, "properties": { "facing": "north", "half": "bottom", @@ -88517,7 +99480,7 @@ } }, { - "id": 6168, + "id": 7608, "properties": { "facing": "north", "half": "bottom", @@ -88526,7 +99489,7 @@ } }, { - "id": 6169, + "id": 7609, "properties": { "facing": "north", "half": "bottom", @@ -88535,7 +99498,7 @@ } }, { - "id": 6170, + "id": 7610, "properties": { "facing": "north", "half": "bottom", @@ -88544,7 +99507,7 @@ } }, { - "id": 6171, + "id": 7611, "properties": { "facing": "north", "half": "bottom", @@ -88553,7 +99516,7 @@ } }, { - "id": 6172, + "id": 7612, "properties": { "facing": "north", "half": "bottom", @@ -88562,7 +99525,7 @@ } }, { - "id": 6173, + "id": 7613, "properties": { "facing": "north", "half": "bottom", @@ -88571,7 +99534,7 @@ } }, { - "id": 6174, + "id": 7614, "properties": { "facing": "north", "half": "bottom", @@ -88580,7 +99543,7 @@ } }, { - "id": 6175, + "id": 7615, "properties": { "facing": "north", "half": "bottom", @@ -88589,7 +99552,7 @@ } }, { - "id": 6176, + "id": 7616, "properties": { "facing": "south", "half": "top", @@ -88598,7 +99561,7 @@ } }, { - "id": 6177, + "id": 7617, "properties": { "facing": "south", "half": "top", @@ -88607,7 +99570,7 @@ } }, { - "id": 6178, + "id": 7618, "properties": { "facing": "south", "half": "top", @@ -88616,7 +99579,7 @@ } }, { - "id": 6179, + "id": 7619, "properties": { "facing": "south", "half": "top", @@ -88625,7 +99588,7 @@ } }, { - "id": 6180, + "id": 7620, "properties": { "facing": "south", "half": "top", @@ -88634,7 +99597,7 @@ } }, { - "id": 6181, + "id": 7621, "properties": { "facing": "south", "half": "top", @@ -88643,7 +99606,7 @@ } }, { - "id": 6182, + "id": 7622, "properties": { "facing": "south", "half": "top", @@ -88652,7 +99615,7 @@ } }, { - "id": 6183, + "id": 7623, "properties": { "facing": "south", "half": "top", @@ -88661,7 +99624,7 @@ } }, { - "id": 6184, + "id": 7624, "properties": { "facing": "south", "half": "top", @@ -88670,7 +99633,7 @@ } }, { - "id": 6185, + "id": 7625, "properties": { "facing": "south", "half": "top", @@ -88679,7 +99642,7 @@ } }, { - "id": 6186, + "id": 7626, "properties": { "facing": "south", "half": "bottom", @@ -88688,7 +99651,7 @@ } }, { - "id": 6187, + "id": 7627, "properties": { "facing": "south", "half": "bottom", @@ -88697,7 +99660,7 @@ } }, { - "id": 6188, + "id": 7628, "properties": { "facing": "south", "half": "bottom", @@ -88706,7 +99669,7 @@ } }, { - "id": 6189, + "id": 7629, "properties": { "facing": "south", "half": "bottom", @@ -88715,7 +99678,7 @@ } }, { - "id": 6190, + "id": 7630, "properties": { "facing": "south", "half": "bottom", @@ -88724,7 +99687,7 @@ } }, { - "id": 6191, + "id": 7631, "properties": { "facing": "south", "half": "bottom", @@ -88733,7 +99696,7 @@ } }, { - "id": 6192, + "id": 7632, "properties": { "facing": "south", "half": "bottom", @@ -88742,7 +99705,7 @@ } }, { - "id": 6193, + "id": 7633, "properties": { "facing": "south", "half": "bottom", @@ -88751,7 +99714,7 @@ } }, { - "id": 6194, + "id": 7634, "properties": { "facing": "south", "half": "bottom", @@ -88760,7 +99723,7 @@ } }, { - "id": 6195, + "id": 7635, "properties": { "facing": "south", "half": "bottom", @@ -88769,7 +99732,7 @@ } }, { - "id": 6196, + "id": 7636, "properties": { "facing": "west", "half": "top", @@ -88778,7 +99741,7 @@ } }, { - "id": 6197, + "id": 7637, "properties": { "facing": "west", "half": "top", @@ -88787,7 +99750,7 @@ } }, { - "id": 6198, + "id": 7638, "properties": { "facing": "west", "half": "top", @@ -88796,7 +99759,7 @@ } }, { - "id": 6199, + "id": 7639, "properties": { "facing": "west", "half": "top", @@ -88805,7 +99768,7 @@ } }, { - "id": 6200, + "id": 7640, "properties": { "facing": "west", "half": "top", @@ -88814,7 +99777,7 @@ } }, { - "id": 6201, + "id": 7641, "properties": { "facing": "west", "half": "top", @@ -88823,7 +99786,7 @@ } }, { - "id": 6202, + "id": 7642, "properties": { "facing": "west", "half": "top", @@ -88832,7 +99795,7 @@ } }, { - "id": 6203, + "id": 7643, "properties": { "facing": "west", "half": "top", @@ -88841,7 +99804,7 @@ } }, { - "id": 6204, + "id": 7644, "properties": { "facing": "west", "half": "top", @@ -88850,7 +99813,7 @@ } }, { - "id": 6205, + "id": 7645, "properties": { "facing": "west", "half": "top", @@ -88859,7 +99822,7 @@ } }, { - "id": 6206, + "id": 7646, "properties": { "facing": "west", "half": "bottom", @@ -88868,7 +99831,7 @@ } }, { - "id": 6207, + "id": 7647, "properties": { "facing": "west", "half": "bottom", @@ -88877,7 +99840,7 @@ } }, { - "id": 6208, + "id": 7648, "properties": { "facing": "west", "half": "bottom", @@ -88886,7 +99849,7 @@ } }, { - "id": 6209, + "id": 7649, "properties": { "facing": "west", "half": "bottom", @@ -88895,7 +99858,7 @@ } }, { - "id": 6210, + "id": 7650, "properties": { "facing": "west", "half": "bottom", @@ -88904,7 +99867,7 @@ } }, { - "id": 6211, + "id": 7651, "properties": { "facing": "west", "half": "bottom", @@ -88913,7 +99876,7 @@ } }, { - "id": 6212, + "id": 7652, "properties": { "facing": "west", "half": "bottom", @@ -88922,7 +99885,7 @@ } }, { - "id": 6213, + "id": 7653, "properties": { "facing": "west", "half": "bottom", @@ -88931,7 +99894,7 @@ } }, { - "id": 6214, + "id": 7654, "properties": { "facing": "west", "half": "bottom", @@ -88940,7 +99903,7 @@ } }, { - "id": 6215, + "id": 7655, "properties": { "facing": "west", "half": "bottom", @@ -88949,7 +99912,7 @@ } }, { - "id": 6216, + "id": 7656, "properties": { "facing": "east", "half": "top", @@ -88958,7 +99921,7 @@ } }, { - "id": 6217, + "id": 7657, "properties": { "facing": "east", "half": "top", @@ -88967,7 +99930,7 @@ } }, { - "id": 6218, + "id": 7658, "properties": { "facing": "east", "half": "top", @@ -88976,7 +99939,7 @@ } }, { - "id": 6219, + "id": 7659, "properties": { "facing": "east", "half": "top", @@ -88985,7 +99948,7 @@ } }, { - "id": 6220, + "id": 7660, "properties": { "facing": "east", "half": "top", @@ -88994,7 +99957,7 @@ } }, { - "id": 6221, + "id": 7661, "properties": { "facing": "east", "half": "top", @@ -89003,7 +99966,7 @@ } }, { - "id": 6222, + "id": 7662, "properties": { "facing": "east", "half": "top", @@ -89012,7 +99975,7 @@ } }, { - "id": 6223, + "id": 7663, "properties": { "facing": "east", "half": "top", @@ -89021,7 +99984,7 @@ } }, { - "id": 6224, + "id": 7664, "properties": { "facing": "east", "half": "top", @@ -89030,7 +99993,7 @@ } }, { - "id": 6225, + "id": 7665, "properties": { "facing": "east", "half": "top", @@ -89039,7 +100002,7 @@ } }, { - "id": 6226, + "id": 7666, "properties": { "facing": "east", "half": "bottom", @@ -89048,7 +100011,7 @@ } }, { - "id": 6227, + "id": 7667, "properties": { "facing": "east", "half": "bottom", @@ -89057,7 +100020,7 @@ } }, { - "id": 6228, + "id": 7668, "properties": { "facing": "east", "half": "bottom", @@ -89066,7 +100029,7 @@ } }, { - "id": 6229, + "id": 7669, "properties": { "facing": "east", "half": "bottom", @@ -89075,7 +100038,7 @@ } }, { - "id": 6230, + "id": 7670, "properties": { "facing": "east", "half": "bottom", @@ -89084,7 +100047,7 @@ } }, { - "id": 6231, + "id": 7671, "properties": { "facing": "east", "half": "bottom", @@ -89093,7 +100056,7 @@ } }, { - "id": 6232, + "id": 7672, "properties": { "facing": "east", "half": "bottom", @@ -89102,7 +100065,7 @@ } }, { - "id": 6233, + "id": 7673, "properties": { "facing": "east", "half": "bottom", @@ -89111,7 +100074,7 @@ } }, { - "id": 6234, + "id": 7674, "properties": { "facing": "east", "half": "bottom", @@ -89120,7 +100083,7 @@ } }, { - "id": 6235, + "id": 7675, "properties": { "facing": "east", "half": "bottom", @@ -89157,7 +100120,7 @@ }, "states": [ { - "id": 4612, + "id": 5988, "properties": { "facing": "north", "half": "top", @@ -89167,7 +100130,7 @@ } }, { - "id": 4613, + "id": 5989, "properties": { "facing": "north", "half": "top", @@ -89177,7 +100140,7 @@ } }, { - "id": 4614, + "id": 5990, "properties": { "facing": "north", "half": "top", @@ -89187,7 +100150,7 @@ } }, { - "id": 4615, + "id": 5991, "properties": { "facing": "north", "half": "top", @@ -89197,7 +100160,7 @@ } }, { - "id": 4616, + "id": 5992, "properties": { "facing": "north", "half": "top", @@ -89207,7 +100170,7 @@ } }, { - "id": 4617, + "id": 5993, "properties": { "facing": "north", "half": "top", @@ -89217,7 +100180,7 @@ } }, { - "id": 4618, + "id": 5994, "properties": { "facing": "north", "half": "top", @@ -89227,7 +100190,7 @@ } }, { - "id": 4619, + "id": 5995, "properties": { "facing": "north", "half": "top", @@ -89237,7 +100200,7 @@ } }, { - "id": 4620, + "id": 5996, "properties": { "facing": "north", "half": "bottom", @@ -89247,7 +100210,7 @@ } }, { - "id": 4621, + "id": 5997, "properties": { "facing": "north", "half": "bottom", @@ -89257,7 +100220,7 @@ } }, { - "id": 4622, + "id": 5998, "properties": { "facing": "north", "half": "bottom", @@ -89267,7 +100230,7 @@ } }, { - "id": 4623, + "id": 5999, "properties": { "facing": "north", "half": "bottom", @@ -89277,7 +100240,7 @@ } }, { - "id": 4624, + "id": 6000, "properties": { "facing": "north", "half": "bottom", @@ -89287,7 +100250,7 @@ } }, { - "id": 4625, + "id": 6001, "properties": { "facing": "north", "half": "bottom", @@ -89297,7 +100260,7 @@ } }, { - "id": 4626, + "id": 6002, "properties": { "facing": "north", "half": "bottom", @@ -89308,7 +100271,7 @@ }, { "default": true, - "id": 4627, + "id": 6003, "properties": { "facing": "north", "half": "bottom", @@ -89318,7 +100281,7 @@ } }, { - "id": 4628, + "id": 6004, "properties": { "facing": "south", "half": "top", @@ -89328,7 +100291,7 @@ } }, { - "id": 4629, + "id": 6005, "properties": { "facing": "south", "half": "top", @@ -89338,7 +100301,7 @@ } }, { - "id": 4630, + "id": 6006, "properties": { "facing": "south", "half": "top", @@ -89348,7 +100311,7 @@ } }, { - "id": 4631, + "id": 6007, "properties": { "facing": "south", "half": "top", @@ -89358,7 +100321,7 @@ } }, { - "id": 4632, + "id": 6008, "properties": { "facing": "south", "half": "top", @@ -89368,7 +100331,7 @@ } }, { - "id": 4633, + "id": 6009, "properties": { "facing": "south", "half": "top", @@ -89378,7 +100341,7 @@ } }, { - "id": 4634, + "id": 6010, "properties": { "facing": "south", "half": "top", @@ -89388,7 +100351,7 @@ } }, { - "id": 4635, + "id": 6011, "properties": { "facing": "south", "half": "top", @@ -89398,7 +100361,7 @@ } }, { - "id": 4636, + "id": 6012, "properties": { "facing": "south", "half": "bottom", @@ -89408,7 +100371,7 @@ } }, { - "id": 4637, + "id": 6013, "properties": { "facing": "south", "half": "bottom", @@ -89418,7 +100381,7 @@ } }, { - "id": 4638, + "id": 6014, "properties": { "facing": "south", "half": "bottom", @@ -89428,7 +100391,7 @@ } }, { - "id": 4639, + "id": 6015, "properties": { "facing": "south", "half": "bottom", @@ -89438,7 +100401,7 @@ } }, { - "id": 4640, + "id": 6016, "properties": { "facing": "south", "half": "bottom", @@ -89448,7 +100411,7 @@ } }, { - "id": 4641, + "id": 6017, "properties": { "facing": "south", "half": "bottom", @@ -89458,7 +100421,7 @@ } }, { - "id": 4642, + "id": 6018, "properties": { "facing": "south", "half": "bottom", @@ -89468,7 +100431,7 @@ } }, { - "id": 4643, + "id": 6019, "properties": { "facing": "south", "half": "bottom", @@ -89478,7 +100441,7 @@ } }, { - "id": 4644, + "id": 6020, "properties": { "facing": "west", "half": "top", @@ -89488,7 +100451,7 @@ } }, { - "id": 4645, + "id": 6021, "properties": { "facing": "west", "half": "top", @@ -89498,7 +100461,7 @@ } }, { - "id": 4646, + "id": 6022, "properties": { "facing": "west", "half": "top", @@ -89508,7 +100471,7 @@ } }, { - "id": 4647, + "id": 6023, "properties": { "facing": "west", "half": "top", @@ -89518,7 +100481,7 @@ } }, { - "id": 4648, + "id": 6024, "properties": { "facing": "west", "half": "top", @@ -89528,7 +100491,7 @@ } }, { - "id": 4649, + "id": 6025, "properties": { "facing": "west", "half": "top", @@ -89538,7 +100501,7 @@ } }, { - "id": 4650, + "id": 6026, "properties": { "facing": "west", "half": "top", @@ -89548,7 +100511,7 @@ } }, { - "id": 4651, + "id": 6027, "properties": { "facing": "west", "half": "top", @@ -89558,7 +100521,7 @@ } }, { - "id": 4652, + "id": 6028, "properties": { "facing": "west", "half": "bottom", @@ -89568,7 +100531,7 @@ } }, { - "id": 4653, + "id": 6029, "properties": { "facing": "west", "half": "bottom", @@ -89578,7 +100541,7 @@ } }, { - "id": 4654, + "id": 6030, "properties": { "facing": "west", "half": "bottom", @@ -89588,7 +100551,7 @@ } }, { - "id": 4655, + "id": 6031, "properties": { "facing": "west", "half": "bottom", @@ -89598,7 +100561,7 @@ } }, { - "id": 4656, + "id": 6032, "properties": { "facing": "west", "half": "bottom", @@ -89608,7 +100571,7 @@ } }, { - "id": 4657, + "id": 6033, "properties": { "facing": "west", "half": "bottom", @@ -89618,7 +100581,7 @@ } }, { - "id": 4658, + "id": 6034, "properties": { "facing": "west", "half": "bottom", @@ -89628,7 +100591,7 @@ } }, { - "id": 4659, + "id": 6035, "properties": { "facing": "west", "half": "bottom", @@ -89638,7 +100601,7 @@ } }, { - "id": 4660, + "id": 6036, "properties": { "facing": "east", "half": "top", @@ -89648,7 +100611,7 @@ } }, { - "id": 4661, + "id": 6037, "properties": { "facing": "east", "half": "top", @@ -89658,7 +100621,7 @@ } }, { - "id": 4662, + "id": 6038, "properties": { "facing": "east", "half": "top", @@ -89668,7 +100631,7 @@ } }, { - "id": 4663, + "id": 6039, "properties": { "facing": "east", "half": "top", @@ -89678,7 +100641,7 @@ } }, { - "id": 4664, + "id": 6040, "properties": { "facing": "east", "half": "top", @@ -89688,7 +100651,7 @@ } }, { - "id": 4665, + "id": 6041, "properties": { "facing": "east", "half": "top", @@ -89698,7 +100661,7 @@ } }, { - "id": 4666, + "id": 6042, "properties": { "facing": "east", "half": "top", @@ -89708,7 +100671,7 @@ } }, { - "id": 4667, + "id": 6043, "properties": { "facing": "east", "half": "top", @@ -89718,7 +100681,7 @@ } }, { - "id": 4668, + "id": 6044, "properties": { "facing": "east", "half": "bottom", @@ -89728,7 +100691,7 @@ } }, { - "id": 4669, + "id": 6045, "properties": { "facing": "east", "half": "bottom", @@ -89738,7 +100701,7 @@ } }, { - "id": 4670, + "id": 6046, "properties": { "facing": "east", "half": "bottom", @@ -89748,7 +100711,7 @@ } }, { - "id": 4671, + "id": 6047, "properties": { "facing": "east", "half": "bottom", @@ -89758,7 +100721,7 @@ } }, { - "id": 4672, + "id": 6048, "properties": { "facing": "east", "half": "bottom", @@ -89768,7 +100731,7 @@ } }, { - "id": 4673, + "id": 6049, "properties": { "facing": "east", "half": "bottom", @@ -89778,7 +100741,7 @@ } }, { - "id": 4674, + "id": 6050, "properties": { "facing": "east", "half": "bottom", @@ -89788,7 +100751,7 @@ } }, { - "id": 4675, + "id": 6051, "properties": { "facing": "east", "half": "bottom", @@ -89799,6 +100762,79 @@ } ] }, + "minecraft:jungle_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5414, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5415, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5416, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5417, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5418, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5419, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5420, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5421, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, "minecraft:jungle_wall_sign": { "properties": { "facing": [ @@ -89814,7 +100850,7 @@ }, "states": [ { - "id": 4064, + "id": 4710, "properties": { "facing": "north", "waterlogged": "true" @@ -89822,49 +100858,49 @@ }, { "default": true, - "id": 4065, + "id": 4711, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 4066, + "id": 4712, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 4067, + "id": 4713, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 4068, + "id": 4714, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 4069, + "id": 4715, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 4070, + "id": 4716, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4071, + "id": 4717, "properties": { "facing": "east", "waterlogged": "false" @@ -89882,20 +100918,20 @@ }, "states": [ { - "id": 173, + "id": 181, "properties": { "axis": "x" } }, { "default": true, - "id": 174, + "id": 182, "properties": { "axis": "y" } }, { - "id": 175, + "id": 183, "properties": { "axis": "z" } @@ -89936,157 +100972,157 @@ "states": [ { "default": true, - "id": 10351, + "id": 12135, "properties": { "age": "0" } }, { - "id": 10352, + "id": 12136, "properties": { "age": "1" } }, { - "id": 10353, + "id": 12137, "properties": { "age": "2" } }, { - "id": 10354, + "id": 12138, "properties": { "age": "3" } }, { - "id": 10355, + "id": 12139, "properties": { "age": "4" } }, { - "id": 10356, + "id": 12140, "properties": { "age": "5" } }, { - "id": 10357, + "id": 12141, "properties": { "age": "6" } }, { - "id": 10358, + "id": 12142, "properties": { "age": "7" } }, { - "id": 10359, + "id": 12143, "properties": { "age": "8" } }, { - "id": 10360, + "id": 12144, "properties": { "age": "9" } }, { - "id": 10361, + "id": 12145, "properties": { "age": "10" } }, { - "id": 10362, + "id": 12146, "properties": { "age": "11" } }, { - "id": 10363, + "id": 12147, "properties": { "age": "12" } }, { - "id": 10364, + "id": 12148, "properties": { "age": "13" } }, { - "id": 10365, + "id": 12149, "properties": { "age": "14" } }, { - "id": 10366, + "id": 12150, "properties": { "age": "15" } }, { - "id": 10367, + "id": 12151, "properties": { "age": "16" } }, { - "id": 10368, + "id": 12152, "properties": { "age": "17" } }, { - "id": 10369, + "id": 12153, "properties": { "age": "18" } }, { - "id": 10370, + "id": 12154, "properties": { "age": "19" } }, { - "id": 10371, + "id": 12155, "properties": { "age": "20" } }, { - "id": 10372, + "id": 12156, "properties": { "age": "21" } }, { - "id": 10373, + "id": 12157, "properties": { "age": "22" } }, { - "id": 10374, + "id": 12158, "properties": { "age": "23" } }, { - "id": 10375, + "id": 12159, "properties": { "age": "24" } }, { - "id": 10376, + "id": 12160, "properties": { "age": "25" } @@ -90097,7 +101133,7 @@ "states": [ { "default": true, - "id": 10377 + "id": 12161 } ] }, @@ -90116,7 +101152,7 @@ }, "states": [ { - "id": 3924, + "id": 4570, "properties": { "facing": "north", "waterlogged": "true" @@ -90124,49 +101160,49 @@ }, { "default": true, - "id": 3925, + "id": 4571, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 3926, + "id": 4572, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 3927, + "id": 4573, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 3928, + "id": 4574, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 3929, + "id": 4575, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 3930, + "id": 4576, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 3931, + "id": 4577, "properties": { "facing": "east", "waterlogged": "false" @@ -90187,21 +101223,21 @@ }, "states": [ { - "id": 16091, + "id": 17875, "properties": { "hanging": "true", "waterlogged": "true" } }, { - "id": 16092, + "id": 17876, "properties": { "hanging": "true", "waterlogged": "false" } }, { - "id": 16093, + "id": 17877, "properties": { "hanging": "false", "waterlogged": "true" @@ -90209,7 +101245,7 @@ }, { "default": true, - "id": 16094, + "id": 17878, "properties": { "hanging": "false", "waterlogged": "false" @@ -90221,7 +101257,7 @@ "states": [ { "default": true, - "id": 463 + "id": 471 } ] }, @@ -90229,7 +101265,7 @@ "states": [ { "default": true, - "id": 461 + "id": 469 } ] }, @@ -90250,63 +101286,63 @@ }, "states": [ { - "id": 18633, + "id": 20417, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 18634, + "id": 20418, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 18635, + "id": 20419, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 18636, + "id": 20420, "properties": { "facing": "east", "waterlogged": "false" } }, { - "id": 18637, + "id": 20421, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 18638, + "id": 20422, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 18639, + "id": 20423, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 18640, + "id": 20424, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 18641, + "id": 20425, "properties": { "facing": "up", "waterlogged": "true" @@ -90314,21 +101350,21 @@ }, { "default": true, - "id": 18642, + "id": 20426, "properties": { "facing": "up", "waterlogged": "false" } }, { - "id": 18643, + "id": 20427, "properties": { "facing": "down", "waterlogged": "true" } }, { - "id": 18644, + "id": 20428, "properties": { "facing": "down", "waterlogged": "false" @@ -90345,14 +101381,14 @@ }, "states": [ { - "id": 8636, + "id": 10280, "properties": { "half": "upper" } }, { "default": true, - "id": 8637, + "id": 10281, "properties": { "half": "lower" } @@ -90383,97 +101419,97 @@ "states": [ { "default": true, - "id": 91, + "id": 93, "properties": { "level": "0" } }, { - "id": 92, + "id": 94, "properties": { "level": "1" } }, { - "id": 93, + "id": 95, "properties": { "level": "2" } }, { - "id": 94, + "id": 96, "properties": { "level": "3" } }, { - "id": 95, + "id": 97, "properties": { "level": "4" } }, { - "id": 96, + "id": 98, "properties": { "level": "5" } }, { - "id": 97, + "id": 99, "properties": { "level": "6" } }, { - "id": 98, + "id": 100, "properties": { "level": "7" } }, { - "id": 99, + "id": 101, "properties": { "level": "8" } }, { - "id": 100, + "id": 102, "properties": { "level": "9" } }, { - "id": 101, + "id": 103, "properties": { "level": "10" } }, { - "id": 102, + "id": 104, "properties": { "level": "11" } }, { - "id": 103, + "id": 105, "properties": { "level": "12" } }, { - "id": 104, + "id": 106, "properties": { "level": "13" } }, { - "id": 105, + "id": 107, "properties": { "level": "14" } }, { - "id": 106, + "id": 108, "properties": { "level": "15" } @@ -90484,7 +101520,7 @@ "states": [ { "default": true, - "id": 5732 + "id": 7172 } ] }, @@ -90507,7 +101543,7 @@ }, "states": [ { - "id": 16038, + "id": 17822, "properties": { "facing": "north", "has_book": "true", @@ -90515,7 +101551,7 @@ } }, { - "id": 16039, + "id": 17823, "properties": { "facing": "north", "has_book": "true", @@ -90523,7 +101559,7 @@ } }, { - "id": 16040, + "id": 17824, "properties": { "facing": "north", "has_book": "false", @@ -90532,7 +101568,7 @@ }, { "default": true, - "id": 16041, + "id": 17825, "properties": { "facing": "north", "has_book": "false", @@ -90540,7 +101576,7 @@ } }, { - "id": 16042, + "id": 17826, "properties": { "facing": "south", "has_book": "true", @@ -90548,7 +101584,7 @@ } }, { - "id": 16043, + "id": 17827, "properties": { "facing": "south", "has_book": "true", @@ -90556,7 +101592,7 @@ } }, { - "id": 16044, + "id": 17828, "properties": { "facing": "south", "has_book": "false", @@ -90564,7 +101600,7 @@ } }, { - "id": 16045, + "id": 17829, "properties": { "facing": "south", "has_book": "false", @@ -90572,7 +101608,7 @@ } }, { - "id": 16046, + "id": 17830, "properties": { "facing": "west", "has_book": "true", @@ -90580,7 +101616,7 @@ } }, { - "id": 16047, + "id": 17831, "properties": { "facing": "west", "has_book": "true", @@ -90588,7 +101624,7 @@ } }, { - "id": 16048, + "id": 17832, "properties": { "facing": "west", "has_book": "false", @@ -90596,7 +101632,7 @@ } }, { - "id": 16049, + "id": 17833, "properties": { "facing": "west", "has_book": "false", @@ -90604,7 +101640,7 @@ } }, { - "id": 16050, + "id": 17834, "properties": { "facing": "east", "has_book": "true", @@ -90612,7 +101648,7 @@ } }, { - "id": 16051, + "id": 17835, "properties": { "facing": "east", "has_book": "true", @@ -90620,7 +101656,7 @@ } }, { - "id": 16052, + "id": 17836, "properties": { "facing": "east", "has_book": "false", @@ -90628,7 +101664,7 @@ } }, { - "id": 16053, + "id": 17837, "properties": { "facing": "east", "has_book": "false", @@ -90657,7 +101693,7 @@ }, "states": [ { - "id": 4088, + "id": 5462, "properties": { "face": "floor", "facing": "north", @@ -90665,7 +101701,7 @@ } }, { - "id": 4089, + "id": 5463, "properties": { "face": "floor", "facing": "north", @@ -90673,7 +101709,7 @@ } }, { - "id": 4090, + "id": 5464, "properties": { "face": "floor", "facing": "south", @@ -90681,7 +101717,7 @@ } }, { - "id": 4091, + "id": 5465, "properties": { "face": "floor", "facing": "south", @@ -90689,7 +101725,7 @@ } }, { - "id": 4092, + "id": 5466, "properties": { "face": "floor", "facing": "west", @@ -90697,7 +101733,7 @@ } }, { - "id": 4093, + "id": 5467, "properties": { "face": "floor", "facing": "west", @@ -90705,7 +101741,7 @@ } }, { - "id": 4094, + "id": 5468, "properties": { "face": "floor", "facing": "east", @@ -90713,7 +101749,7 @@ } }, { - "id": 4095, + "id": 5469, "properties": { "face": "floor", "facing": "east", @@ -90721,7 +101757,7 @@ } }, { - "id": 4096, + "id": 5470, "properties": { "face": "wall", "facing": "north", @@ -90730,7 +101766,7 @@ }, { "default": true, - "id": 4097, + "id": 5471, "properties": { "face": "wall", "facing": "north", @@ -90738,7 +101774,7 @@ } }, { - "id": 4098, + "id": 5472, "properties": { "face": "wall", "facing": "south", @@ -90746,7 +101782,7 @@ } }, { - "id": 4099, + "id": 5473, "properties": { "face": "wall", "facing": "south", @@ -90754,7 +101790,7 @@ } }, { - "id": 4100, + "id": 5474, "properties": { "face": "wall", "facing": "west", @@ -90762,7 +101798,7 @@ } }, { - "id": 4101, + "id": 5475, "properties": { "face": "wall", "facing": "west", @@ -90770,7 +101806,7 @@ } }, { - "id": 4102, + "id": 5476, "properties": { "face": "wall", "facing": "east", @@ -90778,7 +101814,7 @@ } }, { - "id": 4103, + "id": 5477, "properties": { "face": "wall", "facing": "east", @@ -90786,7 +101822,7 @@ } }, { - "id": 4104, + "id": 5478, "properties": { "face": "ceiling", "facing": "north", @@ -90794,7 +101830,7 @@ } }, { - "id": 4105, + "id": 5479, "properties": { "face": "ceiling", "facing": "north", @@ -90802,7 +101838,7 @@ } }, { - "id": 4106, + "id": 5480, "properties": { "face": "ceiling", "facing": "south", @@ -90810,7 +101846,7 @@ } }, { - "id": 4107, + "id": 5481, "properties": { "face": "ceiling", "facing": "south", @@ -90818,7 +101854,7 @@ } }, { - "id": 4108, + "id": 5482, "properties": { "face": "ceiling", "facing": "west", @@ -90826,7 +101862,7 @@ } }, { - "id": 4109, + "id": 5483, "properties": { "face": "ceiling", "facing": "west", @@ -90834,7 +101870,7 @@ } }, { - "id": 4110, + "id": 5484, "properties": { "face": "ceiling", "facing": "east", @@ -90842,7 +101878,7 @@ } }, { - "id": 4111, + "id": 5485, "properties": { "face": "ceiling", "facing": "east", @@ -90878,217 +101914,217 @@ }, "states": [ { - "id": 8246, + "id": 9890, "properties": { "level": "0", "waterlogged": "true" } }, { - "id": 8247, + "id": 9891, "properties": { "level": "0", "waterlogged": "false" } }, { - "id": 8248, + "id": 9892, "properties": { "level": "1", "waterlogged": "true" } }, { - "id": 8249, + "id": 9893, "properties": { "level": "1", "waterlogged": "false" } }, { - "id": 8250, + "id": 9894, "properties": { "level": "2", "waterlogged": "true" } }, { - "id": 8251, + "id": 9895, "properties": { "level": "2", "waterlogged": "false" } }, { - "id": 8252, + "id": 9896, "properties": { "level": "3", "waterlogged": "true" } }, { - "id": 8253, + "id": 9897, "properties": { "level": "3", "waterlogged": "false" } }, { - "id": 8254, + "id": 9898, "properties": { "level": "4", "waterlogged": "true" } }, { - "id": 8255, + "id": 9899, "properties": { "level": "4", "waterlogged": "false" } }, { - "id": 8256, + "id": 9900, "properties": { "level": "5", "waterlogged": "true" } }, { - "id": 8257, + "id": 9901, "properties": { "level": "5", "waterlogged": "false" } }, { - "id": 8258, + "id": 9902, "properties": { "level": "6", "waterlogged": "true" } }, { - "id": 8259, + "id": 9903, "properties": { "level": "6", "waterlogged": "false" } }, { - "id": 8260, + "id": 9904, "properties": { "level": "7", "waterlogged": "true" } }, { - "id": 8261, + "id": 9905, "properties": { "level": "7", "waterlogged": "false" } }, { - "id": 8262, + "id": 9906, "properties": { "level": "8", "waterlogged": "true" } }, { - "id": 8263, + "id": 9907, "properties": { "level": "8", "waterlogged": "false" } }, { - "id": 8264, + "id": 9908, "properties": { "level": "9", "waterlogged": "true" } }, { - "id": 8265, + "id": 9909, "properties": { "level": "9", "waterlogged": "false" } }, { - "id": 8266, + "id": 9910, "properties": { "level": "10", "waterlogged": "true" } }, { - "id": 8267, + "id": 9911, "properties": { "level": "10", "waterlogged": "false" } }, { - "id": 8268, + "id": 9912, "properties": { "level": "11", "waterlogged": "true" } }, { - "id": 8269, + "id": 9913, "properties": { "level": "11", "waterlogged": "false" } }, { - "id": 8270, + "id": 9914, "properties": { "level": "12", "waterlogged": "true" } }, { - "id": 8271, + "id": 9915, "properties": { "level": "12", "waterlogged": "false" } }, { - "id": 8272, + "id": 9916, "properties": { "level": "13", "waterlogged": "true" } }, { - "id": 8273, + "id": 9917, "properties": { "level": "13", "waterlogged": "false" } }, { - "id": 8274, + "id": 9918, "properties": { "level": "14", "waterlogged": "true" } }, { - "id": 8275, + "id": 9919, "properties": { "level": "14", "waterlogged": "false" } }, { - "id": 8276, + "id": 9920, "properties": { "level": "15", "waterlogged": "true" @@ -91096,7 +102132,7 @@ }, { "default": true, - "id": 8277, + "id": 9921, "properties": { "level": "15", "waterlogged": "false" @@ -91128,97 +102164,97 @@ "states": [ { "default": true, - "id": 8686, + "id": 10330, "properties": { "rotation": "0" } }, { - "id": 8687, + "id": 10331, "properties": { "rotation": "1" } }, { - "id": 8688, + "id": 10332, "properties": { "rotation": "2" } }, { - "id": 8689, + "id": 10333, "properties": { "rotation": "3" } }, { - "id": 8690, + "id": 10334, "properties": { "rotation": "4" } }, { - "id": 8691, + "id": 10335, "properties": { "rotation": "5" } }, { - "id": 8692, + "id": 10336, "properties": { "rotation": "6" } }, { - "id": 8693, + "id": 10337, "properties": { "rotation": "7" } }, { - "id": 8694, + "id": 10338, "properties": { "rotation": "8" } }, { - "id": 8695, + "id": 10339, "properties": { "rotation": "9" } }, { - "id": 8696, + "id": 10340, "properties": { "rotation": "10" } }, { - "id": 8697, + "id": 10341, "properties": { "rotation": "11" } }, { - "id": 8698, + "id": 10342, "properties": { "rotation": "12" } }, { - "id": 8699, + "id": 10343, "properties": { "rotation": "13" } }, { - "id": 8700, + "id": 10344, "properties": { "rotation": "14" } }, { - "id": 8701, + "id": 10345, "properties": { "rotation": "15" } @@ -91244,7 +102280,7 @@ }, "states": [ { - "id": 1327, + "id": 1685, "properties": { "facing": "north", "occupied": "true", @@ -91252,7 +102288,7 @@ } }, { - "id": 1328, + "id": 1686, "properties": { "facing": "north", "occupied": "true", @@ -91260,7 +102296,7 @@ } }, { - "id": 1329, + "id": 1687, "properties": { "facing": "north", "occupied": "false", @@ -91269,7 +102305,7 @@ }, { "default": true, - "id": 1330, + "id": 1688, "properties": { "facing": "north", "occupied": "false", @@ -91277,7 +102313,7 @@ } }, { - "id": 1331, + "id": 1689, "properties": { "facing": "south", "occupied": "true", @@ -91285,7 +102321,7 @@ } }, { - "id": 1332, + "id": 1690, "properties": { "facing": "south", "occupied": "true", @@ -91293,7 +102329,7 @@ } }, { - "id": 1333, + "id": 1691, "properties": { "facing": "south", "occupied": "false", @@ -91301,7 +102337,7 @@ } }, { - "id": 1334, + "id": 1692, "properties": { "facing": "south", "occupied": "false", @@ -91309,7 +102345,7 @@ } }, { - "id": 1335, + "id": 1693, "properties": { "facing": "west", "occupied": "true", @@ -91317,7 +102353,7 @@ } }, { - "id": 1336, + "id": 1694, "properties": { "facing": "west", "occupied": "true", @@ -91325,7 +102361,7 @@ } }, { - "id": 1337, + "id": 1695, "properties": { "facing": "west", "occupied": "false", @@ -91333,7 +102369,7 @@ } }, { - "id": 1338, + "id": 1696, "properties": { "facing": "west", "occupied": "false", @@ -91341,7 +102377,7 @@ } }, { - "id": 1339, + "id": 1697, "properties": { "facing": "east", "occupied": "true", @@ -91349,7 +102385,7 @@ } }, { - "id": 1340, + "id": 1698, "properties": { "facing": "east", "occupied": "true", @@ -91357,7 +102393,7 @@ } }, { - "id": 1341, + "id": 1699, "properties": { "facing": "east", "occupied": "false", @@ -91365,7 +102401,7 @@ } }, { - "id": 1342, + "id": 1700, "properties": { "facing": "east", "occupied": "false", @@ -91393,7 +102429,7 @@ }, "states": [ { - "id": 18377, + "id": 20161, "properties": { "candles": "1", "lit": "true", @@ -91401,7 +102437,7 @@ } }, { - "id": 18378, + "id": 20162, "properties": { "candles": "1", "lit": "true", @@ -91409,7 +102445,7 @@ } }, { - "id": 18379, + "id": 20163, "properties": { "candles": "1", "lit": "false", @@ -91418,7 +102454,7 @@ }, { "default": true, - "id": 18380, + "id": 20164, "properties": { "candles": "1", "lit": "false", @@ -91426,7 +102462,7 @@ } }, { - "id": 18381, + "id": 20165, "properties": { "candles": "2", "lit": "true", @@ -91434,7 +102470,7 @@ } }, { - "id": 18382, + "id": 20166, "properties": { "candles": "2", "lit": "true", @@ -91442,7 +102478,7 @@ } }, { - "id": 18383, + "id": 20167, "properties": { "candles": "2", "lit": "false", @@ -91450,7 +102486,7 @@ } }, { - "id": 18384, + "id": 20168, "properties": { "candles": "2", "lit": "false", @@ -91458,7 +102494,7 @@ } }, { - "id": 18385, + "id": 20169, "properties": { "candles": "3", "lit": "true", @@ -91466,7 +102502,7 @@ } }, { - "id": 18386, + "id": 20170, "properties": { "candles": "3", "lit": "true", @@ -91474,7 +102510,7 @@ } }, { - "id": 18387, + "id": 20171, "properties": { "candles": "3", "lit": "false", @@ -91482,7 +102518,7 @@ } }, { - "id": 18388, + "id": 20172, "properties": { "candles": "3", "lit": "false", @@ -91490,7 +102526,7 @@ } }, { - "id": 18389, + "id": 20173, "properties": { "candles": "4", "lit": "true", @@ -91498,7 +102534,7 @@ } }, { - "id": 18390, + "id": 20174, "properties": { "candles": "4", "lit": "true", @@ -91506,7 +102542,7 @@ } }, { - "id": 18391, + "id": 20175, "properties": { "candles": "4", "lit": "false", @@ -91514,7 +102550,7 @@ } }, { - "id": 18392, + "id": 20176, "properties": { "candles": "4", "lit": "false", @@ -91532,14 +102568,14 @@ }, "states": [ { - "id": 18593, + "id": 20377, "properties": { "lit": "true" } }, { "default": true, - "id": 18594, + "id": 20378, "properties": { "lit": "false" } @@ -91550,7 +102586,7 @@ "states": [ { "default": true, - "id": 8610 + "id": 10254 } ] }, @@ -91558,7 +102594,7 @@ "states": [ { "default": true, - "id": 10322 + "id": 12106 } ] }, @@ -91566,7 +102602,7 @@ "states": [ { "default": true, - "id": 10338 + "id": 12122 } ] }, @@ -91582,25 +102618,25 @@ "states": [ { "default": true, - "id": 10267, + "id": 12051, "properties": { "facing": "north" } }, { - "id": 10268, + "id": 12052, "properties": { "facing": "south" } }, { - "id": 10269, + "id": 12053, "properties": { "facing": "west" } }, { - "id": 10270, + "id": 12054, "properties": { "facing": "east" } @@ -91620,38 +102656,38 @@ }, "states": [ { - "id": 10177, + "id": 11961, "properties": { "facing": "north" } }, { - "id": 10178, + "id": 11962, "properties": { "facing": "east" } }, { - "id": 10179, + "id": 11963, "properties": { "facing": "south" } }, { - "id": 10180, + "id": 11964, "properties": { "facing": "west" } }, { "default": true, - "id": 10181, + "id": 11965, "properties": { "facing": "up" } }, { - "id": 10182, + "id": 11966, "properties": { "facing": "down" } @@ -91662,7 +102698,7 @@ "states": [ { "default": true, - "id": 4407 + "id": 5783 } ] }, @@ -91691,7 +102727,7 @@ }, "states": [ { - "id": 7588, + "id": 9072, "properties": { "east": "true", "north": "true", @@ -91701,7 +102737,7 @@ } }, { - "id": 7589, + "id": 9073, "properties": { "east": "true", "north": "true", @@ -91711,7 +102747,7 @@ } }, { - "id": 7590, + "id": 9074, "properties": { "east": "true", "north": "true", @@ -91721,7 +102757,7 @@ } }, { - "id": 7591, + "id": 9075, "properties": { "east": "true", "north": "true", @@ -91731,7 +102767,7 @@ } }, { - "id": 7592, + "id": 9076, "properties": { "east": "true", "north": "true", @@ -91741,7 +102777,7 @@ } }, { - "id": 7593, + "id": 9077, "properties": { "east": "true", "north": "true", @@ -91751,7 +102787,7 @@ } }, { - "id": 7594, + "id": 9078, "properties": { "east": "true", "north": "true", @@ -91761,7 +102797,7 @@ } }, { - "id": 7595, + "id": 9079, "properties": { "east": "true", "north": "true", @@ -91771,7 +102807,7 @@ } }, { - "id": 7596, + "id": 9080, "properties": { "east": "true", "north": "false", @@ -91781,7 +102817,7 @@ } }, { - "id": 7597, + "id": 9081, "properties": { "east": "true", "north": "false", @@ -91791,7 +102827,7 @@ } }, { - "id": 7598, + "id": 9082, "properties": { "east": "true", "north": "false", @@ -91801,7 +102837,7 @@ } }, { - "id": 7599, + "id": 9083, "properties": { "east": "true", "north": "false", @@ -91811,7 +102847,7 @@ } }, { - "id": 7600, + "id": 9084, "properties": { "east": "true", "north": "false", @@ -91821,7 +102857,7 @@ } }, { - "id": 7601, + "id": 9085, "properties": { "east": "true", "north": "false", @@ -91831,7 +102867,7 @@ } }, { - "id": 7602, + "id": 9086, "properties": { "east": "true", "north": "false", @@ -91841,7 +102877,7 @@ } }, { - "id": 7603, + "id": 9087, "properties": { "east": "true", "north": "false", @@ -91851,7 +102887,7 @@ } }, { - "id": 7604, + "id": 9088, "properties": { "east": "false", "north": "true", @@ -91861,7 +102897,7 @@ } }, { - "id": 7605, + "id": 9089, "properties": { "east": "false", "north": "true", @@ -91871,7 +102907,7 @@ } }, { - "id": 7606, + "id": 9090, "properties": { "east": "false", "north": "true", @@ -91881,7 +102917,7 @@ } }, { - "id": 7607, + "id": 9091, "properties": { "east": "false", "north": "true", @@ -91891,7 +102927,7 @@ } }, { - "id": 7608, + "id": 9092, "properties": { "east": "false", "north": "true", @@ -91901,7 +102937,7 @@ } }, { - "id": 7609, + "id": 9093, "properties": { "east": "false", "north": "true", @@ -91911,7 +102947,7 @@ } }, { - "id": 7610, + "id": 9094, "properties": { "east": "false", "north": "true", @@ -91921,7 +102957,7 @@ } }, { - "id": 7611, + "id": 9095, "properties": { "east": "false", "north": "true", @@ -91931,7 +102967,7 @@ } }, { - "id": 7612, + "id": 9096, "properties": { "east": "false", "north": "false", @@ -91941,7 +102977,7 @@ } }, { - "id": 7613, + "id": 9097, "properties": { "east": "false", "north": "false", @@ -91951,7 +102987,7 @@ } }, { - "id": 7614, + "id": 9098, "properties": { "east": "false", "north": "false", @@ -91961,7 +102997,7 @@ } }, { - "id": 7615, + "id": 9099, "properties": { "east": "false", "north": "false", @@ -91971,7 +103007,7 @@ } }, { - "id": 7616, + "id": 9100, "properties": { "east": "false", "north": "false", @@ -91981,7 +103017,7 @@ } }, { - "id": 7617, + "id": 9101, "properties": { "east": "false", "north": "false", @@ -91991,7 +103027,7 @@ } }, { - "id": 7618, + "id": 9102, "properties": { "east": "false", "north": "false", @@ -92002,7 +103038,7 @@ }, { "default": true, - "id": 7619, + "id": 9103, "properties": { "east": "false", "north": "false", @@ -92017,7 +103053,7 @@ "states": [ { "default": true, - "id": 7479 + "id": 8963 } ] }, @@ -92033,25 +103069,25 @@ "states": [ { "default": true, - "id": 8906, + "id": 10550, "properties": { "facing": "north" } }, { - "id": 8907, + "id": 10551, "properties": { "facing": "south" } }, { - "id": 8908, + "id": 10552, "properties": { "facing": "west" } }, { - "id": 8909, + "id": 10553, "properties": { "facing": "east" } @@ -92062,7 +103098,7 @@ "states": [ { "default": true, - "id": 1641 + "id": 1999 } ] }, @@ -92090,97 +103126,97 @@ "states": [ { "default": true, - "id": 8766, + "id": 10410, "properties": { "rotation": "0" } }, { - "id": 8767, + "id": 10411, "properties": { "rotation": "1" } }, { - "id": 8768, + "id": 10412, "properties": { "rotation": "2" } }, { - "id": 8769, + "id": 10413, "properties": { "rotation": "3" } }, { - "id": 8770, + "id": 10414, "properties": { "rotation": "4" } }, { - "id": 8771, + "id": 10415, "properties": { "rotation": "5" } }, { - "id": 8772, + "id": 10416, "properties": { "rotation": "6" } }, { - "id": 8773, + "id": 10417, "properties": { "rotation": "7" } }, { - "id": 8774, + "id": 10418, "properties": { "rotation": "8" } }, { - "id": 8775, + "id": 10419, "properties": { "rotation": "9" } }, { - "id": 8776, + "id": 10420, "properties": { "rotation": "10" } }, { - "id": 8777, + "id": 10421, "properties": { "rotation": "11" } }, { - "id": 8778, + "id": 10422, "properties": { "rotation": "12" } }, { - "id": 8779, + "id": 10423, "properties": { "rotation": "13" } }, { - "id": 8780, + "id": 10424, "properties": { "rotation": "14" } }, { - "id": 8781, + "id": 10425, "properties": { "rotation": "15" } @@ -92206,7 +103242,7 @@ }, "states": [ { - "id": 1407, + "id": 1765, "properties": { "facing": "north", "occupied": "true", @@ -92214,7 +103250,7 @@ } }, { - "id": 1408, + "id": 1766, "properties": { "facing": "north", "occupied": "true", @@ -92222,7 +103258,7 @@ } }, { - "id": 1409, + "id": 1767, "properties": { "facing": "north", "occupied": "false", @@ -92231,7 +103267,7 @@ }, { "default": true, - "id": 1410, + "id": 1768, "properties": { "facing": "north", "occupied": "false", @@ -92239,7 +103275,7 @@ } }, { - "id": 1411, + "id": 1769, "properties": { "facing": "south", "occupied": "true", @@ -92247,7 +103283,7 @@ } }, { - "id": 1412, + "id": 1770, "properties": { "facing": "south", "occupied": "true", @@ -92255,7 +103291,7 @@ } }, { - "id": 1413, + "id": 1771, "properties": { "facing": "south", "occupied": "false", @@ -92263,7 +103299,7 @@ } }, { - "id": 1414, + "id": 1772, "properties": { "facing": "south", "occupied": "false", @@ -92271,7 +103307,7 @@ } }, { - "id": 1415, + "id": 1773, "properties": { "facing": "west", "occupied": "true", @@ -92279,7 +103315,7 @@ } }, { - "id": 1416, + "id": 1774, "properties": { "facing": "west", "occupied": "true", @@ -92287,7 +103323,7 @@ } }, { - "id": 1417, + "id": 1775, "properties": { "facing": "west", "occupied": "false", @@ -92295,7 +103331,7 @@ } }, { - "id": 1418, + "id": 1776, "properties": { "facing": "west", "occupied": "false", @@ -92303,7 +103339,7 @@ } }, { - "id": 1419, + "id": 1777, "properties": { "facing": "east", "occupied": "true", @@ -92311,7 +103347,7 @@ } }, { - "id": 1420, + "id": 1778, "properties": { "facing": "east", "occupied": "true", @@ -92319,7 +103355,7 @@ } }, { - "id": 1421, + "id": 1779, "properties": { "facing": "east", "occupied": "false", @@ -92327,7 +103363,7 @@ } }, { - "id": 1422, + "id": 1780, "properties": { "facing": "east", "occupied": "false", @@ -92355,7 +103391,7 @@ }, "states": [ { - "id": 18457, + "id": 20241, "properties": { "candles": "1", "lit": "true", @@ -92363,7 +103399,7 @@ } }, { - "id": 18458, + "id": 20242, "properties": { "candles": "1", "lit": "true", @@ -92371,7 +103407,7 @@ } }, { - "id": 18459, + "id": 20243, "properties": { "candles": "1", "lit": "false", @@ -92380,7 +103416,7 @@ }, { "default": true, - "id": 18460, + "id": 20244, "properties": { "candles": "1", "lit": "false", @@ -92388,7 +103424,7 @@ } }, { - "id": 18461, + "id": 20245, "properties": { "candles": "2", "lit": "true", @@ -92396,7 +103432,7 @@ } }, { - "id": 18462, + "id": 20246, "properties": { "candles": "2", "lit": "true", @@ -92404,7 +103440,7 @@ } }, { - "id": 18463, + "id": 20247, "properties": { "candles": "2", "lit": "false", @@ -92412,7 +103448,7 @@ } }, { - "id": 18464, + "id": 20248, "properties": { "candles": "2", "lit": "false", @@ -92420,7 +103456,7 @@ } }, { - "id": 18465, + "id": 20249, "properties": { "candles": "3", "lit": "true", @@ -92428,7 +103464,7 @@ } }, { - "id": 18466, + "id": 20250, "properties": { "candles": "3", "lit": "true", @@ -92436,7 +103472,7 @@ } }, { - "id": 18467, + "id": 20251, "properties": { "candles": "3", "lit": "false", @@ -92444,7 +103480,7 @@ } }, { - "id": 18468, + "id": 20252, "properties": { "candles": "3", "lit": "false", @@ -92452,7 +103488,7 @@ } }, { - "id": 18469, + "id": 20253, "properties": { "candles": "4", "lit": "true", @@ -92460,7 +103496,7 @@ } }, { - "id": 18470, + "id": 20254, "properties": { "candles": "4", "lit": "true", @@ -92468,7 +103504,7 @@ } }, { - "id": 18471, + "id": 20255, "properties": { "candles": "4", "lit": "false", @@ -92476,7 +103512,7 @@ } }, { - "id": 18472, + "id": 20256, "properties": { "candles": "4", "lit": "false", @@ -92494,14 +103530,14 @@ }, "states": [ { - "id": 18603, + "id": 20387, "properties": { "lit": "true" } }, { "default": true, - "id": 18604, + "id": 20388, "properties": { "lit": "false" } @@ -92512,7 +103548,7 @@ "states": [ { "default": true, - "id": 8615 + "id": 10259 } ] }, @@ -92520,7 +103556,7 @@ "states": [ { "default": true, - "id": 10327 + "id": 12111 } ] }, @@ -92528,7 +103564,7 @@ "states": [ { "default": true, - "id": 10343 + "id": 12127 } ] }, @@ -92544,25 +103580,25 @@ "states": [ { "default": true, - "id": 10287, + "id": 12071, "properties": { "facing": "north" } }, { - "id": 10288, + "id": 12072, "properties": { "facing": "south" } }, { - "id": 10289, + "id": 12073, "properties": { "facing": "west" } }, { - "id": 10290, + "id": 12074, "properties": { "facing": "east" } @@ -92582,38 +103618,38 @@ }, "states": [ { - "id": 10207, + "id": 11991, "properties": { "facing": "north" } }, { - "id": 10208, + "id": 11992, "properties": { "facing": "east" } }, { - "id": 10209, + "id": 11993, "properties": { "facing": "south" } }, { - "id": 10210, + "id": 11994, "properties": { "facing": "west" } }, { "default": true, - "id": 10211, + "id": 11995, "properties": { "facing": "up" } }, { - "id": 10212, + "id": 11996, "properties": { "facing": "down" } @@ -92624,7 +103660,7 @@ "states": [ { "default": true, - "id": 4412 + "id": 5788 } ] }, @@ -92653,7 +103689,7 @@ }, "states": [ { - "id": 7748, + "id": 9232, "properties": { "east": "true", "north": "true", @@ -92663,7 +103699,7 @@ } }, { - "id": 7749, + "id": 9233, "properties": { "east": "true", "north": "true", @@ -92673,7 +103709,7 @@ } }, { - "id": 7750, + "id": 9234, "properties": { "east": "true", "north": "true", @@ -92683,7 +103719,7 @@ } }, { - "id": 7751, + "id": 9235, "properties": { "east": "true", "north": "true", @@ -92693,7 +103729,7 @@ } }, { - "id": 7752, + "id": 9236, "properties": { "east": "true", "north": "true", @@ -92703,7 +103739,7 @@ } }, { - "id": 7753, + "id": 9237, "properties": { "east": "true", "north": "true", @@ -92713,7 +103749,7 @@ } }, { - "id": 7754, + "id": 9238, "properties": { "east": "true", "north": "true", @@ -92723,7 +103759,7 @@ } }, { - "id": 7755, + "id": 9239, "properties": { "east": "true", "north": "true", @@ -92733,7 +103769,7 @@ } }, { - "id": 7756, + "id": 9240, "properties": { "east": "true", "north": "false", @@ -92743,7 +103779,7 @@ } }, { - "id": 7757, + "id": 9241, "properties": { "east": "true", "north": "false", @@ -92753,7 +103789,7 @@ } }, { - "id": 7758, + "id": 9242, "properties": { "east": "true", "north": "false", @@ -92763,7 +103799,7 @@ } }, { - "id": 7759, + "id": 9243, "properties": { "east": "true", "north": "false", @@ -92773,7 +103809,7 @@ } }, { - "id": 7760, + "id": 9244, "properties": { "east": "true", "north": "false", @@ -92783,7 +103819,7 @@ } }, { - "id": 7761, + "id": 9245, "properties": { "east": "true", "north": "false", @@ -92793,7 +103829,7 @@ } }, { - "id": 7762, + "id": 9246, "properties": { "east": "true", "north": "false", @@ -92803,7 +103839,7 @@ } }, { - "id": 7763, + "id": 9247, "properties": { "east": "true", "north": "false", @@ -92813,7 +103849,7 @@ } }, { - "id": 7764, + "id": 9248, "properties": { "east": "false", "north": "true", @@ -92823,7 +103859,7 @@ } }, { - "id": 7765, + "id": 9249, "properties": { "east": "false", "north": "true", @@ -92833,7 +103869,7 @@ } }, { - "id": 7766, + "id": 9250, "properties": { "east": "false", "north": "true", @@ -92843,7 +103879,7 @@ } }, { - "id": 7767, + "id": 9251, "properties": { "east": "false", "north": "true", @@ -92853,7 +103889,7 @@ } }, { - "id": 7768, + "id": 9252, "properties": { "east": "false", "north": "true", @@ -92863,7 +103899,7 @@ } }, { - "id": 7769, + "id": 9253, "properties": { "east": "false", "north": "true", @@ -92873,7 +103909,7 @@ } }, { - "id": 7770, + "id": 9254, "properties": { "east": "false", "north": "true", @@ -92883,7 +103919,7 @@ } }, { - "id": 7771, + "id": 9255, "properties": { "east": "false", "north": "true", @@ -92893,7 +103929,7 @@ } }, { - "id": 7772, + "id": 9256, "properties": { "east": "false", "north": "false", @@ -92903,7 +103939,7 @@ } }, { - "id": 7773, + "id": 9257, "properties": { "east": "false", "north": "false", @@ -92913,7 +103949,7 @@ } }, { - "id": 7774, + "id": 9258, "properties": { "east": "false", "north": "false", @@ -92923,7 +103959,7 @@ } }, { - "id": 7775, + "id": 9259, "properties": { "east": "false", "north": "false", @@ -92933,7 +103969,7 @@ } }, { - "id": 7776, + "id": 9260, "properties": { "east": "false", "north": "false", @@ -92943,7 +103979,7 @@ } }, { - "id": 7777, + "id": 9261, "properties": { "east": "false", "north": "false", @@ -92953,7 +103989,7 @@ } }, { - "id": 7778, + "id": 9262, "properties": { "east": "false", "north": "false", @@ -92964,7 +104000,7 @@ }, { "default": true, - "id": 7779, + "id": 9263, "properties": { "east": "false", "north": "false", @@ -92979,7 +104015,7 @@ "states": [ { "default": true, - "id": 7484 + "id": 8968 } ] }, @@ -92995,25 +104031,25 @@ "states": [ { "default": true, - "id": 8926, + "id": 10570, "properties": { "facing": "north" } }, { - "id": 8927, + "id": 10571, "properties": { "facing": "south" } }, { - "id": 8928, + "id": 10572, "properties": { "facing": "west" } }, { - "id": 8929, + "id": 10573, "properties": { "facing": "east" } @@ -93024,7 +104060,7 @@ "states": [ { "default": true, - "id": 1646 + "id": 2004 } ] }, @@ -93052,97 +104088,97 @@ "states": [ { "default": true, - "id": 7263, + "id": 8747, "properties": { "power": "0" } }, { - "id": 7264, + "id": 8748, "properties": { "power": "1" } }, { - "id": 7265, + "id": 8749, "properties": { "power": "2" } }, { - "id": 7266, + "id": 8750, "properties": { "power": "3" } }, { - "id": 7267, + "id": 8751, "properties": { "power": "4" } }, { - "id": 7268, + "id": 8752, "properties": { "power": "5" } }, { - "id": 7269, + "id": 8753, "properties": { "power": "6" } }, { - "id": 7270, + "id": 8754, "properties": { "power": "7" } }, { - "id": 7271, + "id": 8755, "properties": { "power": "8" } }, { - "id": 7272, + "id": 8756, "properties": { "power": "9" } }, { - "id": 7273, + "id": 8757, "properties": { "power": "10" } }, { - "id": 7274, + "id": 8758, "properties": { "power": "11" } }, { - "id": 7275, + "id": 8759, "properties": { "power": "12" } }, { - "id": 7276, + "id": 8760, "properties": { "power": "13" } }, { - "id": 7277, + "id": 8761, "properties": { "power": "14" } }, { - "id": 7278, + "id": 8762, "properties": { "power": "15" } @@ -93170,7 +104206,7 @@ }, "states": [ { - "id": 19614, + "id": 21398, "properties": { "facing": "north", "powered": "true", @@ -93178,7 +104214,7 @@ } }, { - "id": 19615, + "id": 21399, "properties": { "facing": "north", "powered": "true", @@ -93186,7 +104222,7 @@ } }, { - "id": 19616, + "id": 21400, "properties": { "facing": "north", "powered": "false", @@ -93194,7 +104230,7 @@ } }, { - "id": 19617, + "id": 21401, "properties": { "facing": "north", "powered": "false", @@ -93202,7 +104238,7 @@ } }, { - "id": 19618, + "id": 21402, "properties": { "facing": "east", "powered": "true", @@ -93210,7 +104246,7 @@ } }, { - "id": 19619, + "id": 21403, "properties": { "facing": "east", "powered": "true", @@ -93218,7 +104254,7 @@ } }, { - "id": 19620, + "id": 21404, "properties": { "facing": "east", "powered": "false", @@ -93226,7 +104262,7 @@ } }, { - "id": 19621, + "id": 21405, "properties": { "facing": "east", "powered": "false", @@ -93234,7 +104270,7 @@ } }, { - "id": 19622, + "id": 21406, "properties": { "facing": "south", "powered": "true", @@ -93242,7 +104278,7 @@ } }, { - "id": 19623, + "id": 21407, "properties": { "facing": "south", "powered": "true", @@ -93250,7 +104286,7 @@ } }, { - "id": 19624, + "id": 21408, "properties": { "facing": "south", "powered": "false", @@ -93258,7 +104294,7 @@ } }, { - "id": 19625, + "id": 21409, "properties": { "facing": "south", "powered": "false", @@ -93266,7 +104302,7 @@ } }, { - "id": 19626, + "id": 21410, "properties": { "facing": "west", "powered": "true", @@ -93274,7 +104310,7 @@ } }, { - "id": 19627, + "id": 21411, "properties": { "facing": "west", "powered": "true", @@ -93282,7 +104318,7 @@ } }, { - "id": 19628, + "id": 21412, "properties": { "facing": "west", "powered": "false", @@ -93290,7 +104326,7 @@ } }, { - "id": 19629, + "id": 21413, "properties": { "facing": "west", "powered": "false", @@ -93298,7 +104334,7 @@ } }, { - "id": 19630, + "id": 21414, "properties": { "facing": "up", "powered": "true", @@ -93306,7 +104342,7 @@ } }, { - "id": 19631, + "id": 21415, "properties": { "facing": "up", "powered": "true", @@ -93314,7 +104350,7 @@ } }, { - "id": 19632, + "id": 21416, "properties": { "facing": "up", "powered": "false", @@ -93323,7 +104359,7 @@ }, { "default": true, - "id": 19633, + "id": 21417, "properties": { "facing": "up", "powered": "false", @@ -93331,7 +104367,7 @@ } }, { - "id": 19634, + "id": 21418, "properties": { "facing": "down", "powered": "true", @@ -93339,7 +104375,7 @@ } }, { - "id": 19635, + "id": 21419, "properties": { "facing": "down", "powered": "true", @@ -93347,7 +104383,7 @@ } }, { - "id": 19636, + "id": 21420, "properties": { "facing": "down", "powered": "false", @@ -93355,7 +104391,7 @@ } }, { - "id": 19637, + "id": 21421, "properties": { "facing": "down", "powered": "false", @@ -93373,14 +104409,14 @@ }, "states": [ { - "id": 8628, + "id": 10272, "properties": { "half": "upper" } }, { "default": true, - "id": 8629, + "id": 10273, "properties": { "half": "lower" } @@ -93391,7 +104427,7 @@ "states": [ { "default": true, - "id": 1678 + "id": 2036 } ] }, @@ -93399,7 +104435,7 @@ "states": [ { "default": true, - "id": 5601 + "id": 7041 } ] }, @@ -93427,97 +104463,97 @@ "states": [ { "default": true, - "id": 8718, + "id": 10362, "properties": { "rotation": "0" } }, { - "id": 8719, + "id": 10363, "properties": { "rotation": "1" } }, { - "id": 8720, + "id": 10364, "properties": { "rotation": "2" } }, { - "id": 8721, + "id": 10365, "properties": { "rotation": "3" } }, { - "id": 8722, + "id": 10366, "properties": { "rotation": "4" } }, { - "id": 8723, + "id": 10367, "properties": { "rotation": "5" } }, { - "id": 8724, + "id": 10368, "properties": { "rotation": "6" } }, { - "id": 8725, + "id": 10369, "properties": { "rotation": "7" } }, { - "id": 8726, + "id": 10370, "properties": { "rotation": "8" } }, { - "id": 8727, + "id": 10371, "properties": { "rotation": "9" } }, { - "id": 8728, + "id": 10372, "properties": { "rotation": "10" } }, { - "id": 8729, + "id": 10373, "properties": { "rotation": "11" } }, { - "id": 8730, + "id": 10374, "properties": { "rotation": "12" } }, { - "id": 8731, + "id": 10375, "properties": { "rotation": "13" } }, { - "id": 8732, + "id": 10376, "properties": { "rotation": "14" } }, { - "id": 8733, + "id": 10377, "properties": { "rotation": "15" } @@ -93543,7 +104579,7 @@ }, "states": [ { - "id": 1359, + "id": 1717, "properties": { "facing": "north", "occupied": "true", @@ -93551,7 +104587,7 @@ } }, { - "id": 1360, + "id": 1718, "properties": { "facing": "north", "occupied": "true", @@ -93559,7 +104595,7 @@ } }, { - "id": 1361, + "id": 1719, "properties": { "facing": "north", "occupied": "false", @@ -93568,7 +104604,7 @@ }, { "default": true, - "id": 1362, + "id": 1720, "properties": { "facing": "north", "occupied": "false", @@ -93576,7 +104612,7 @@ } }, { - "id": 1363, + "id": 1721, "properties": { "facing": "south", "occupied": "true", @@ -93584,7 +104620,7 @@ } }, { - "id": 1364, + "id": 1722, "properties": { "facing": "south", "occupied": "true", @@ -93592,7 +104628,7 @@ } }, { - "id": 1365, + "id": 1723, "properties": { "facing": "south", "occupied": "false", @@ -93600,7 +104636,7 @@ } }, { - "id": 1366, + "id": 1724, "properties": { "facing": "south", "occupied": "false", @@ -93608,7 +104644,7 @@ } }, { - "id": 1367, + "id": 1725, "properties": { "facing": "west", "occupied": "true", @@ -93616,7 +104652,7 @@ } }, { - "id": 1368, + "id": 1726, "properties": { "facing": "west", "occupied": "true", @@ -93624,7 +104660,7 @@ } }, { - "id": 1369, + "id": 1727, "properties": { "facing": "west", "occupied": "false", @@ -93632,7 +104668,7 @@ } }, { - "id": 1370, + "id": 1728, "properties": { "facing": "west", "occupied": "false", @@ -93640,7 +104676,7 @@ } }, { - "id": 1371, + "id": 1729, "properties": { "facing": "east", "occupied": "true", @@ -93648,7 +104684,7 @@ } }, { - "id": 1372, + "id": 1730, "properties": { "facing": "east", "occupied": "true", @@ -93656,7 +104692,7 @@ } }, { - "id": 1373, + "id": 1731, "properties": { "facing": "east", "occupied": "false", @@ -93664,7 +104700,7 @@ } }, { - "id": 1374, + "id": 1732, "properties": { "facing": "east", "occupied": "false", @@ -93692,7 +104728,7 @@ }, "states": [ { - "id": 18409, + "id": 20193, "properties": { "candles": "1", "lit": "true", @@ -93700,7 +104736,7 @@ } }, { - "id": 18410, + "id": 20194, "properties": { "candles": "1", "lit": "true", @@ -93708,7 +104744,7 @@ } }, { - "id": 18411, + "id": 20195, "properties": { "candles": "1", "lit": "false", @@ -93717,7 +104753,7 @@ }, { "default": true, - "id": 18412, + "id": 20196, "properties": { "candles": "1", "lit": "false", @@ -93725,7 +104761,7 @@ } }, { - "id": 18413, + "id": 20197, "properties": { "candles": "2", "lit": "true", @@ -93733,7 +104769,7 @@ } }, { - "id": 18414, + "id": 20198, "properties": { "candles": "2", "lit": "true", @@ -93741,7 +104777,7 @@ } }, { - "id": 18415, + "id": 20199, "properties": { "candles": "2", "lit": "false", @@ -93749,7 +104785,7 @@ } }, { - "id": 18416, + "id": 20200, "properties": { "candles": "2", "lit": "false", @@ -93757,7 +104793,7 @@ } }, { - "id": 18417, + "id": 20201, "properties": { "candles": "3", "lit": "true", @@ -93765,7 +104801,7 @@ } }, { - "id": 18418, + "id": 20202, "properties": { "candles": "3", "lit": "true", @@ -93773,7 +104809,7 @@ } }, { - "id": 18419, + "id": 20203, "properties": { "candles": "3", "lit": "false", @@ -93781,7 +104817,7 @@ } }, { - "id": 18420, + "id": 20204, "properties": { "candles": "3", "lit": "false", @@ -93789,7 +104825,7 @@ } }, { - "id": 18421, + "id": 20205, "properties": { "candles": "4", "lit": "true", @@ -93797,7 +104833,7 @@ } }, { - "id": 18422, + "id": 20206, "properties": { "candles": "4", "lit": "true", @@ -93805,7 +104841,7 @@ } }, { - "id": 18423, + "id": 20207, "properties": { "candles": "4", "lit": "false", @@ -93813,7 +104849,7 @@ } }, { - "id": 18424, + "id": 20208, "properties": { "candles": "4", "lit": "false", @@ -93831,14 +104867,14 @@ }, "states": [ { - "id": 18597, + "id": 20381, "properties": { "lit": "true" } }, { "default": true, - "id": 18598, + "id": 20382, "properties": { "lit": "false" } @@ -93849,7 +104885,7 @@ "states": [ { "default": true, - "id": 8612 + "id": 10256 } ] }, @@ -93857,7 +104893,7 @@ "states": [ { "default": true, - "id": 10324 + "id": 12108 } ] }, @@ -93865,7 +104901,7 @@ "states": [ { "default": true, - "id": 10340 + "id": 12124 } ] }, @@ -93881,25 +104917,25 @@ "states": [ { "default": true, - "id": 10275, + "id": 12059, "properties": { "facing": "north" } }, { - "id": 10276, + "id": 12060, "properties": { "facing": "south" } }, { - "id": 10277, + "id": 12061, "properties": { "facing": "west" } }, { - "id": 10278, + "id": 12062, "properties": { "facing": "east" } @@ -93919,38 +104955,38 @@ }, "states": [ { - "id": 10189, + "id": 11973, "properties": { "facing": "north" } }, { - "id": 10190, + "id": 11974, "properties": { "facing": "east" } }, { - "id": 10191, + "id": 11975, "properties": { "facing": "south" } }, { - "id": 10192, + "id": 11976, "properties": { "facing": "west" } }, { "default": true, - "id": 10193, + "id": 11977, "properties": { "facing": "up" } }, { - "id": 10194, + "id": 11978, "properties": { "facing": "down" } @@ -93961,7 +104997,7 @@ "states": [ { "default": true, - "id": 4409 + "id": 5785 } ] }, @@ -93990,7 +105026,7 @@ }, "states": [ { - "id": 7652, + "id": 9136, "properties": { "east": "true", "north": "true", @@ -94000,7 +105036,7 @@ } }, { - "id": 7653, + "id": 9137, "properties": { "east": "true", "north": "true", @@ -94010,7 +105046,7 @@ } }, { - "id": 7654, + "id": 9138, "properties": { "east": "true", "north": "true", @@ -94020,7 +105056,7 @@ } }, { - "id": 7655, + "id": 9139, "properties": { "east": "true", "north": "true", @@ -94030,7 +105066,7 @@ } }, { - "id": 7656, + "id": 9140, "properties": { "east": "true", "north": "true", @@ -94040,7 +105076,7 @@ } }, { - "id": 7657, + "id": 9141, "properties": { "east": "true", "north": "true", @@ -94050,7 +105086,7 @@ } }, { - "id": 7658, + "id": 9142, "properties": { "east": "true", "north": "true", @@ -94060,7 +105096,7 @@ } }, { - "id": 7659, + "id": 9143, "properties": { "east": "true", "north": "true", @@ -94070,7 +105106,7 @@ } }, { - "id": 7660, + "id": 9144, "properties": { "east": "true", "north": "false", @@ -94080,7 +105116,7 @@ } }, { - "id": 7661, + "id": 9145, "properties": { "east": "true", "north": "false", @@ -94090,7 +105126,7 @@ } }, { - "id": 7662, + "id": 9146, "properties": { "east": "true", "north": "false", @@ -94100,7 +105136,7 @@ } }, { - "id": 7663, + "id": 9147, "properties": { "east": "true", "north": "false", @@ -94110,7 +105146,7 @@ } }, { - "id": 7664, + "id": 9148, "properties": { "east": "true", "north": "false", @@ -94120,7 +105156,7 @@ } }, { - "id": 7665, + "id": 9149, "properties": { "east": "true", "north": "false", @@ -94130,7 +105166,7 @@ } }, { - "id": 7666, + "id": 9150, "properties": { "east": "true", "north": "false", @@ -94140,7 +105176,7 @@ } }, { - "id": 7667, + "id": 9151, "properties": { "east": "true", "north": "false", @@ -94150,7 +105186,7 @@ } }, { - "id": 7668, + "id": 9152, "properties": { "east": "false", "north": "true", @@ -94160,7 +105196,7 @@ } }, { - "id": 7669, + "id": 9153, "properties": { "east": "false", "north": "true", @@ -94170,7 +105206,7 @@ } }, { - "id": 7670, + "id": 9154, "properties": { "east": "false", "north": "true", @@ -94180,7 +105216,7 @@ } }, { - "id": 7671, + "id": 9155, "properties": { "east": "false", "north": "true", @@ -94190,7 +105226,7 @@ } }, { - "id": 7672, + "id": 9156, "properties": { "east": "false", "north": "true", @@ -94200,7 +105236,7 @@ } }, { - "id": 7673, + "id": 9157, "properties": { "east": "false", "north": "true", @@ -94210,7 +105246,7 @@ } }, { - "id": 7674, + "id": 9158, "properties": { "east": "false", "north": "true", @@ -94220,7 +105256,7 @@ } }, { - "id": 7675, + "id": 9159, "properties": { "east": "false", "north": "true", @@ -94230,7 +105266,7 @@ } }, { - "id": 7676, + "id": 9160, "properties": { "east": "false", "north": "false", @@ -94240,7 +105276,7 @@ } }, { - "id": 7677, + "id": 9161, "properties": { "east": "false", "north": "false", @@ -94250,7 +105286,7 @@ } }, { - "id": 7678, + "id": 9162, "properties": { "east": "false", "north": "false", @@ -94260,7 +105296,7 @@ } }, { - "id": 7679, + "id": 9163, "properties": { "east": "false", "north": "false", @@ -94270,7 +105306,7 @@ } }, { - "id": 7680, + "id": 9164, "properties": { "east": "false", "north": "false", @@ -94280,7 +105316,7 @@ } }, { - "id": 7681, + "id": 9165, "properties": { "east": "false", "north": "false", @@ -94290,7 +105326,7 @@ } }, { - "id": 7682, + "id": 9166, "properties": { "east": "false", "north": "false", @@ -94301,7 +105337,7 @@ }, { "default": true, - "id": 7683, + "id": 9167, "properties": { "east": "false", "north": "false", @@ -94316,7 +105352,7 @@ "states": [ { "default": true, - "id": 7481 + "id": 8965 } ] }, @@ -94332,25 +105368,25 @@ "states": [ { "default": true, - "id": 8914, + "id": 10558, "properties": { "facing": "north" } }, { - "id": 8915, + "id": 10559, "properties": { "facing": "south" } }, { - "id": 8916, + "id": 10560, "properties": { "facing": "west" } }, { - "id": 8917, + "id": 10561, "properties": { "facing": "east" } @@ -94361,7 +105397,7 @@ "states": [ { "default": true, - "id": 1643 + "id": 2001 } ] }, @@ -94369,7 +105405,7 @@ "states": [ { "default": true, - "id": 17047 + "id": 18831 } ] }, @@ -94385,25 +105421,25 @@ "states": [ { "default": true, - "id": 15992, + "id": 17776, "properties": { "facing": "north" } }, { - "id": 15993, + "id": 17777, "properties": { "facing": "south" } }, { - "id": 15994, + "id": 17778, "properties": { "facing": "west" } }, { - "id": 15995, + "id": 17779, "properties": { "facing": "east" } @@ -94434,97 +105470,97 @@ "states": [ { "default": true, - "id": 8670, + "id": 10314, "properties": { "rotation": "0" } }, { - "id": 8671, + "id": 10315, "properties": { "rotation": "1" } }, { - "id": 8672, + "id": 10316, "properties": { "rotation": "2" } }, { - "id": 8673, + "id": 10317, "properties": { "rotation": "3" } }, { - "id": 8674, + "id": 10318, "properties": { "rotation": "4" } }, { - "id": 8675, + "id": 10319, "properties": { "rotation": "5" } }, { - "id": 8676, + "id": 10320, "properties": { "rotation": "6" } }, { - "id": 8677, + "id": 10321, "properties": { "rotation": "7" } }, { - "id": 8678, + "id": 10322, "properties": { "rotation": "8" } }, { - "id": 8679, + "id": 10323, "properties": { "rotation": "9" } }, { - "id": 8680, + "id": 10324, "properties": { "rotation": "10" } }, { - "id": 8681, + "id": 10325, "properties": { "rotation": "11" } }, { - "id": 8682, + "id": 10326, "properties": { "rotation": "12" } }, { - "id": 8683, + "id": 10327, "properties": { "rotation": "13" } }, { - "id": 8684, + "id": 10328, "properties": { "rotation": "14" } }, { - "id": 8685, + "id": 10329, "properties": { "rotation": "15" } @@ -94550,7 +105586,7 @@ }, "states": [ { - "id": 1311, + "id": 1669, "properties": { "facing": "north", "occupied": "true", @@ -94558,7 +105594,7 @@ } }, { - "id": 1312, + "id": 1670, "properties": { "facing": "north", "occupied": "true", @@ -94566,7 +105602,7 @@ } }, { - "id": 1313, + "id": 1671, "properties": { "facing": "north", "occupied": "false", @@ -94575,7 +105611,7 @@ }, { "default": true, - "id": 1314, + "id": 1672, "properties": { "facing": "north", "occupied": "false", @@ -94583,7 +105619,7 @@ } }, { - "id": 1315, + "id": 1673, "properties": { "facing": "south", "occupied": "true", @@ -94591,7 +105627,7 @@ } }, { - "id": 1316, + "id": 1674, "properties": { "facing": "south", "occupied": "true", @@ -94599,7 +105635,7 @@ } }, { - "id": 1317, + "id": 1675, "properties": { "facing": "south", "occupied": "false", @@ -94607,7 +105643,7 @@ } }, { - "id": 1318, + "id": 1676, "properties": { "facing": "south", "occupied": "false", @@ -94615,7 +105651,7 @@ } }, { - "id": 1319, + "id": 1677, "properties": { "facing": "west", "occupied": "true", @@ -94623,7 +105659,7 @@ } }, { - "id": 1320, + "id": 1678, "properties": { "facing": "west", "occupied": "true", @@ -94631,7 +105667,7 @@ } }, { - "id": 1321, + "id": 1679, "properties": { "facing": "west", "occupied": "false", @@ -94639,7 +105675,7 @@ } }, { - "id": 1322, + "id": 1680, "properties": { "facing": "west", "occupied": "false", @@ -94647,7 +105683,7 @@ } }, { - "id": 1323, + "id": 1681, "properties": { "facing": "east", "occupied": "true", @@ -94655,7 +105691,7 @@ } }, { - "id": 1324, + "id": 1682, "properties": { "facing": "east", "occupied": "true", @@ -94663,7 +105699,7 @@ } }, { - "id": 1325, + "id": 1683, "properties": { "facing": "east", "occupied": "false", @@ -94671,7 +105707,7 @@ } }, { - "id": 1326, + "id": 1684, "properties": { "facing": "east", "occupied": "false", @@ -94699,7 +105735,7 @@ }, "states": [ { - "id": 18361, + "id": 20145, "properties": { "candles": "1", "lit": "true", @@ -94707,7 +105743,7 @@ } }, { - "id": 18362, + "id": 20146, "properties": { "candles": "1", "lit": "true", @@ -94715,7 +105751,7 @@ } }, { - "id": 18363, + "id": 20147, "properties": { "candles": "1", "lit": "false", @@ -94724,7 +105760,7 @@ }, { "default": true, - "id": 18364, + "id": 20148, "properties": { "candles": "1", "lit": "false", @@ -94732,7 +105768,7 @@ } }, { - "id": 18365, + "id": 20149, "properties": { "candles": "2", "lit": "true", @@ -94740,7 +105776,7 @@ } }, { - "id": 18366, + "id": 20150, "properties": { "candles": "2", "lit": "true", @@ -94748,7 +105784,7 @@ } }, { - "id": 18367, + "id": 20151, "properties": { "candles": "2", "lit": "false", @@ -94756,7 +105792,7 @@ } }, { - "id": 18368, + "id": 20152, "properties": { "candles": "2", "lit": "false", @@ -94764,7 +105800,7 @@ } }, { - "id": 18369, + "id": 20153, "properties": { "candles": "3", "lit": "true", @@ -94772,7 +105808,7 @@ } }, { - "id": 18370, + "id": 20154, "properties": { "candles": "3", "lit": "true", @@ -94780,7 +105816,7 @@ } }, { - "id": 18371, + "id": 20155, "properties": { "candles": "3", "lit": "false", @@ -94788,7 +105824,7 @@ } }, { - "id": 18372, + "id": 20156, "properties": { "candles": "3", "lit": "false", @@ -94796,7 +105832,7 @@ } }, { - "id": 18373, + "id": 20157, "properties": { "candles": "4", "lit": "true", @@ -94804,7 +105840,7 @@ } }, { - "id": 18374, + "id": 20158, "properties": { "candles": "4", "lit": "true", @@ -94812,7 +105848,7 @@ } }, { - "id": 18375, + "id": 20159, "properties": { "candles": "4", "lit": "false", @@ -94820,7 +105856,7 @@ } }, { - "id": 18376, + "id": 20160, "properties": { "candles": "4", "lit": "false", @@ -94838,14 +105874,14 @@ }, "states": [ { - "id": 18591, + "id": 20375, "properties": { "lit": "true" } }, { "default": true, - "id": 18592, + "id": 20376, "properties": { "lit": "false" } @@ -94856,7 +105892,7 @@ "states": [ { "default": true, - "id": 8609 + "id": 10253 } ] }, @@ -94864,7 +105900,7 @@ "states": [ { "default": true, - "id": 10321 + "id": 12105 } ] }, @@ -94872,7 +105908,7 @@ "states": [ { "default": true, - "id": 10337 + "id": 12121 } ] }, @@ -94888,25 +105924,25 @@ "states": [ { "default": true, - "id": 10263, + "id": 12047, "properties": { "facing": "north" } }, { - "id": 10264, + "id": 12048, "properties": { "facing": "south" } }, { - "id": 10265, + "id": 12049, "properties": { "facing": "west" } }, { - "id": 10266, + "id": 12050, "properties": { "facing": "east" } @@ -94926,38 +105962,38 @@ }, "states": [ { - "id": 10171, + "id": 11955, "properties": { "facing": "north" } }, { - "id": 10172, + "id": 11956, "properties": { "facing": "east" } }, { - "id": 10173, + "id": 11957, "properties": { "facing": "south" } }, { - "id": 10174, + "id": 11958, "properties": { "facing": "west" } }, { "default": true, - "id": 10175, + "id": 11959, "properties": { "facing": "up" } }, { - "id": 10176, + "id": 11960, "properties": { "facing": "down" } @@ -94968,7 +106004,7 @@ "states": [ { "default": true, - "id": 4406 + "id": 5782 } ] }, @@ -94997,7 +106033,7 @@ }, "states": [ { - "id": 7556, + "id": 9040, "properties": { "east": "true", "north": "true", @@ -95007,7 +106043,7 @@ } }, { - "id": 7557, + "id": 9041, "properties": { "east": "true", "north": "true", @@ -95017,7 +106053,7 @@ } }, { - "id": 7558, + "id": 9042, "properties": { "east": "true", "north": "true", @@ -95027,7 +106063,7 @@ } }, { - "id": 7559, + "id": 9043, "properties": { "east": "true", "north": "true", @@ -95037,7 +106073,7 @@ } }, { - "id": 7560, + "id": 9044, "properties": { "east": "true", "north": "true", @@ -95047,7 +106083,7 @@ } }, { - "id": 7561, + "id": 9045, "properties": { "east": "true", "north": "true", @@ -95057,7 +106093,7 @@ } }, { - "id": 7562, + "id": 9046, "properties": { "east": "true", "north": "true", @@ -95067,7 +106103,7 @@ } }, { - "id": 7563, + "id": 9047, "properties": { "east": "true", "north": "true", @@ -95077,7 +106113,7 @@ } }, { - "id": 7564, + "id": 9048, "properties": { "east": "true", "north": "false", @@ -95087,7 +106123,7 @@ } }, { - "id": 7565, + "id": 9049, "properties": { "east": "true", "north": "false", @@ -95097,7 +106133,7 @@ } }, { - "id": 7566, + "id": 9050, "properties": { "east": "true", "north": "false", @@ -95107,7 +106143,7 @@ } }, { - "id": 7567, + "id": 9051, "properties": { "east": "true", "north": "false", @@ -95117,7 +106153,7 @@ } }, { - "id": 7568, + "id": 9052, "properties": { "east": "true", "north": "false", @@ -95127,7 +106163,7 @@ } }, { - "id": 7569, + "id": 9053, "properties": { "east": "true", "north": "false", @@ -95137,7 +106173,7 @@ } }, { - "id": 7570, + "id": 9054, "properties": { "east": "true", "north": "false", @@ -95147,7 +106183,7 @@ } }, { - "id": 7571, + "id": 9055, "properties": { "east": "true", "north": "false", @@ -95157,7 +106193,7 @@ } }, { - "id": 7572, + "id": 9056, "properties": { "east": "false", "north": "true", @@ -95167,7 +106203,7 @@ } }, { - "id": 7573, + "id": 9057, "properties": { "east": "false", "north": "true", @@ -95177,7 +106213,7 @@ } }, { - "id": 7574, + "id": 9058, "properties": { "east": "false", "north": "true", @@ -95187,7 +106223,7 @@ } }, { - "id": 7575, + "id": 9059, "properties": { "east": "false", "north": "true", @@ -95197,7 +106233,7 @@ } }, { - "id": 7576, + "id": 9060, "properties": { "east": "false", "north": "true", @@ -95207,7 +106243,7 @@ } }, { - "id": 7577, + "id": 9061, "properties": { "east": "false", "north": "true", @@ -95217,7 +106253,7 @@ } }, { - "id": 7578, + "id": 9062, "properties": { "east": "false", "north": "true", @@ -95227,7 +106263,7 @@ } }, { - "id": 7579, + "id": 9063, "properties": { "east": "false", "north": "true", @@ -95237,7 +106273,7 @@ } }, { - "id": 7580, + "id": 9064, "properties": { "east": "false", "north": "false", @@ -95247,7 +106283,7 @@ } }, { - "id": 7581, + "id": 9065, "properties": { "east": "false", "north": "false", @@ -95257,7 +106293,7 @@ } }, { - "id": 7582, + "id": 9066, "properties": { "east": "false", "north": "false", @@ -95267,7 +106303,7 @@ } }, { - "id": 7583, + "id": 9067, "properties": { "east": "false", "north": "false", @@ -95277,7 +106313,7 @@ } }, { - "id": 7584, + "id": 9068, "properties": { "east": "false", "north": "false", @@ -95287,7 +106323,7 @@ } }, { - "id": 7585, + "id": 9069, "properties": { "east": "false", "north": "false", @@ -95297,7 +106333,7 @@ } }, { - "id": 7586, + "id": 9070, "properties": { "east": "false", "north": "false", @@ -95308,7 +106344,7 @@ }, { "default": true, - "id": 7587, + "id": 9071, "properties": { "east": "false", "north": "false", @@ -95323,7 +106359,7 @@ "states": [ { "default": true, - "id": 7478 + "id": 8962 } ] }, @@ -95339,25 +106375,25 @@ "states": [ { "default": true, - "id": 8902, + "id": 10546, "properties": { "facing": "north" } }, { - "id": 8903, + "id": 10547, "properties": { "facing": "south" } }, { - "id": 8904, + "id": 10548, "properties": { "facing": "west" } }, { - "id": 8905, + "id": 10549, "properties": { "facing": "east" } @@ -95368,7 +106404,7 @@ "states": [ { "default": true, - "id": 1640 + "id": 1998 } ] }, @@ -95376,7 +106412,7 @@ "states": [ { "default": true, - "id": 10134 + "id": 11918 } ] }, @@ -95400,7 +106436,7 @@ }, "states": [ { - "id": 7083, + "id": 8523, "properties": { "face": "floor", "facing": "north", @@ -95408,7 +106444,7 @@ } }, { - "id": 7084, + "id": 8524, "properties": { "face": "floor", "facing": "north", @@ -95416,7 +106452,7 @@ } }, { - "id": 7085, + "id": 8525, "properties": { "face": "floor", "facing": "south", @@ -95424,7 +106460,7 @@ } }, { - "id": 7086, + "id": 8526, "properties": { "face": "floor", "facing": "south", @@ -95432,7 +106468,7 @@ } }, { - "id": 7087, + "id": 8527, "properties": { "face": "floor", "facing": "west", @@ -95440,7 +106476,7 @@ } }, { - "id": 7088, + "id": 8528, "properties": { "face": "floor", "facing": "west", @@ -95448,7 +106484,7 @@ } }, { - "id": 7089, + "id": 8529, "properties": { "face": "floor", "facing": "east", @@ -95456,7 +106492,7 @@ } }, { - "id": 7090, + "id": 8530, "properties": { "face": "floor", "facing": "east", @@ -95464,7 +106500,7 @@ } }, { - "id": 7091, + "id": 8531, "properties": { "face": "wall", "facing": "north", @@ -95473,7 +106509,7 @@ }, { "default": true, - "id": 7092, + "id": 8532, "properties": { "face": "wall", "facing": "north", @@ -95481,7 +106517,7 @@ } }, { - "id": 7093, + "id": 8533, "properties": { "face": "wall", "facing": "south", @@ -95489,7 +106525,7 @@ } }, { - "id": 7094, + "id": 8534, "properties": { "face": "wall", "facing": "south", @@ -95497,7 +106533,7 @@ } }, { - "id": 7095, + "id": 8535, "properties": { "face": "wall", "facing": "west", @@ -95505,7 +106541,7 @@ } }, { - "id": 7096, + "id": 8536, "properties": { "face": "wall", "facing": "west", @@ -95513,7 +106549,7 @@ } }, { - "id": 7097, + "id": 8537, "properties": { "face": "wall", "facing": "east", @@ -95521,7 +106557,7 @@ } }, { - "id": 7098, + "id": 8538, "properties": { "face": "wall", "facing": "east", @@ -95529,7 +106565,7 @@ } }, { - "id": 7099, + "id": 8539, "properties": { "face": "ceiling", "facing": "north", @@ -95537,7 +106573,7 @@ } }, { - "id": 7100, + "id": 8540, "properties": { "face": "ceiling", "facing": "north", @@ -95545,7 +106581,7 @@ } }, { - "id": 7101, + "id": 8541, "properties": { "face": "ceiling", "facing": "south", @@ -95553,7 +106589,7 @@ } }, { - "id": 7102, + "id": 8542, "properties": { "face": "ceiling", "facing": "south", @@ -95561,7 +106597,7 @@ } }, { - "id": 7103, + "id": 8543, "properties": { "face": "ceiling", "facing": "west", @@ -95569,7 +106605,7 @@ } }, { - "id": 7104, + "id": 8544, "properties": { "face": "ceiling", "facing": "west", @@ -95577,7 +106613,7 @@ } }, { - "id": 7105, + "id": 8545, "properties": { "face": "ceiling", "facing": "east", @@ -95585,7 +106621,7 @@ } }, { - "id": 7106, + "id": 8546, "properties": { "face": "ceiling", "facing": "east", @@ -95621,7 +106657,7 @@ }, "states": [ { - "id": 9875, + "id": 11595, "properties": { "facing": "north", "half": "upper", @@ -95631,7 +106667,7 @@ } }, { - "id": 9876, + "id": 11596, "properties": { "facing": "north", "half": "upper", @@ -95641,7 +106677,7 @@ } }, { - "id": 9877, + "id": 11597, "properties": { "facing": "north", "half": "upper", @@ -95651,7 +106687,7 @@ } }, { - "id": 9878, + "id": 11598, "properties": { "facing": "north", "half": "upper", @@ -95661,7 +106697,7 @@ } }, { - "id": 9879, + "id": 11599, "properties": { "facing": "north", "half": "upper", @@ -95671,7 +106707,7 @@ } }, { - "id": 9880, + "id": 11600, "properties": { "facing": "north", "half": "upper", @@ -95681,7 +106717,7 @@ } }, { - "id": 9881, + "id": 11601, "properties": { "facing": "north", "half": "upper", @@ -95691,7 +106727,7 @@ } }, { - "id": 9882, + "id": 11602, "properties": { "facing": "north", "half": "upper", @@ -95701,7 +106737,7 @@ } }, { - "id": 9883, + "id": 11603, "properties": { "facing": "north", "half": "lower", @@ -95711,7 +106747,7 @@ } }, { - "id": 9884, + "id": 11604, "properties": { "facing": "north", "half": "lower", @@ -95721,7 +106757,7 @@ } }, { - "id": 9885, + "id": 11605, "properties": { "facing": "north", "half": "lower", @@ -95732,7 +106768,7 @@ }, { "default": true, - "id": 9886, + "id": 11606, "properties": { "facing": "north", "half": "lower", @@ -95742,7 +106778,7 @@ } }, { - "id": 9887, + "id": 11607, "properties": { "facing": "north", "half": "lower", @@ -95752,7 +106788,7 @@ } }, { - "id": 9888, + "id": 11608, "properties": { "facing": "north", "half": "lower", @@ -95762,7 +106798,7 @@ } }, { - "id": 9889, + "id": 11609, "properties": { "facing": "north", "half": "lower", @@ -95772,7 +106808,7 @@ } }, { - "id": 9890, + "id": 11610, "properties": { "facing": "north", "half": "lower", @@ -95782,7 +106818,7 @@ } }, { - "id": 9891, + "id": 11611, "properties": { "facing": "south", "half": "upper", @@ -95792,7 +106828,7 @@ } }, { - "id": 9892, + "id": 11612, "properties": { "facing": "south", "half": "upper", @@ -95802,7 +106838,7 @@ } }, { - "id": 9893, + "id": 11613, "properties": { "facing": "south", "half": "upper", @@ -95812,7 +106848,7 @@ } }, { - "id": 9894, + "id": 11614, "properties": { "facing": "south", "half": "upper", @@ -95822,7 +106858,7 @@ } }, { - "id": 9895, + "id": 11615, "properties": { "facing": "south", "half": "upper", @@ -95832,7 +106868,7 @@ } }, { - "id": 9896, + "id": 11616, "properties": { "facing": "south", "half": "upper", @@ -95842,7 +106878,7 @@ } }, { - "id": 9897, + "id": 11617, "properties": { "facing": "south", "half": "upper", @@ -95852,7 +106888,7 @@ } }, { - "id": 9898, + "id": 11618, "properties": { "facing": "south", "half": "upper", @@ -95862,7 +106898,7 @@ } }, { - "id": 9899, + "id": 11619, "properties": { "facing": "south", "half": "lower", @@ -95872,7 +106908,7 @@ } }, { - "id": 9900, + "id": 11620, "properties": { "facing": "south", "half": "lower", @@ -95882,7 +106918,7 @@ } }, { - "id": 9901, + "id": 11621, "properties": { "facing": "south", "half": "lower", @@ -95892,7 +106928,7 @@ } }, { - "id": 9902, + "id": 11622, "properties": { "facing": "south", "half": "lower", @@ -95902,7 +106938,7 @@ } }, { - "id": 9903, + "id": 11623, "properties": { "facing": "south", "half": "lower", @@ -95912,7 +106948,7 @@ } }, { - "id": 9904, + "id": 11624, "properties": { "facing": "south", "half": "lower", @@ -95922,7 +106958,7 @@ } }, { - "id": 9905, + "id": 11625, "properties": { "facing": "south", "half": "lower", @@ -95932,7 +106968,7 @@ } }, { - "id": 9906, + "id": 11626, "properties": { "facing": "south", "half": "lower", @@ -95942,7 +106978,7 @@ } }, { - "id": 9907, + "id": 11627, "properties": { "facing": "west", "half": "upper", @@ -95952,7 +106988,7 @@ } }, { - "id": 9908, + "id": 11628, "properties": { "facing": "west", "half": "upper", @@ -95962,7 +106998,7 @@ } }, { - "id": 9909, + "id": 11629, "properties": { "facing": "west", "half": "upper", @@ -95972,7 +107008,7 @@ } }, { - "id": 9910, + "id": 11630, "properties": { "facing": "west", "half": "upper", @@ -95982,7 +107018,7 @@ } }, { - "id": 9911, + "id": 11631, "properties": { "facing": "west", "half": "upper", @@ -95992,7 +107028,7 @@ } }, { - "id": 9912, + "id": 11632, "properties": { "facing": "west", "half": "upper", @@ -96002,7 +107038,7 @@ } }, { - "id": 9913, + "id": 11633, "properties": { "facing": "west", "half": "upper", @@ -96012,7 +107048,7 @@ } }, { - "id": 9914, + "id": 11634, "properties": { "facing": "west", "half": "upper", @@ -96022,7 +107058,7 @@ } }, { - "id": 9915, + "id": 11635, "properties": { "facing": "west", "half": "lower", @@ -96032,7 +107068,7 @@ } }, { - "id": 9916, + "id": 11636, "properties": { "facing": "west", "half": "lower", @@ -96042,7 +107078,7 @@ } }, { - "id": 9917, + "id": 11637, "properties": { "facing": "west", "half": "lower", @@ -96052,7 +107088,7 @@ } }, { - "id": 9918, + "id": 11638, "properties": { "facing": "west", "half": "lower", @@ -96062,7 +107098,7 @@ } }, { - "id": 9919, + "id": 11639, "properties": { "facing": "west", "half": "lower", @@ -96072,7 +107108,7 @@ } }, { - "id": 9920, + "id": 11640, "properties": { "facing": "west", "half": "lower", @@ -96082,7 +107118,7 @@ } }, { - "id": 9921, + "id": 11641, "properties": { "facing": "west", "half": "lower", @@ -96092,7 +107128,7 @@ } }, { - "id": 9922, + "id": 11642, "properties": { "facing": "west", "half": "lower", @@ -96102,7 +107138,7 @@ } }, { - "id": 9923, + "id": 11643, "properties": { "facing": "east", "half": "upper", @@ -96112,7 +107148,7 @@ } }, { - "id": 9924, + "id": 11644, "properties": { "facing": "east", "half": "upper", @@ -96122,7 +107158,7 @@ } }, { - "id": 9925, + "id": 11645, "properties": { "facing": "east", "half": "upper", @@ -96132,7 +107168,7 @@ } }, { - "id": 9926, + "id": 11646, "properties": { "facing": "east", "half": "upper", @@ -96142,7 +107178,7 @@ } }, { - "id": 9927, + "id": 11647, "properties": { "facing": "east", "half": "upper", @@ -96152,7 +107188,7 @@ } }, { - "id": 9928, + "id": 11648, "properties": { "facing": "east", "half": "upper", @@ -96162,7 +107198,7 @@ } }, { - "id": 9929, + "id": 11649, "properties": { "facing": "east", "half": "upper", @@ -96172,7 +107208,7 @@ } }, { - "id": 9930, + "id": 11650, "properties": { "facing": "east", "half": "upper", @@ -96182,7 +107218,7 @@ } }, { - "id": 9931, + "id": 11651, "properties": { "facing": "east", "half": "lower", @@ -96192,7 +107228,7 @@ } }, { - "id": 9932, + "id": 11652, "properties": { "facing": "east", "half": "lower", @@ -96202,7 +107238,7 @@ } }, { - "id": 9933, + "id": 11653, "properties": { "facing": "east", "half": "lower", @@ -96212,7 +107248,7 @@ } }, { - "id": 9934, + "id": 11654, "properties": { "facing": "east", "half": "lower", @@ -96222,7 +107258,7 @@ } }, { - "id": 9935, + "id": 11655, "properties": { "facing": "east", "half": "lower", @@ -96232,7 +107268,7 @@ } }, { - "id": 9936, + "id": 11656, "properties": { "facing": "east", "half": "lower", @@ -96242,7 +107278,7 @@ } }, { - "id": 9937, + "id": 11657, "properties": { "facing": "east", "half": "lower", @@ -96252,7 +107288,7 @@ } }, { - "id": 9938, + "id": 11658, "properties": { "facing": "east", "half": "lower", @@ -96288,7 +107324,7 @@ }, "states": [ { - "id": 9523, + "id": 11211, "properties": { "east": "true", "north": "true", @@ -96298,7 +107334,7 @@ } }, { - "id": 9524, + "id": 11212, "properties": { "east": "true", "north": "true", @@ -96308,7 +107344,7 @@ } }, { - "id": 9525, + "id": 11213, "properties": { "east": "true", "north": "true", @@ -96318,7 +107354,7 @@ } }, { - "id": 9526, + "id": 11214, "properties": { "east": "true", "north": "true", @@ -96328,7 +107364,7 @@ } }, { - "id": 9527, + "id": 11215, "properties": { "east": "true", "north": "true", @@ -96338,7 +107374,7 @@ } }, { - "id": 9528, + "id": 11216, "properties": { "east": "true", "north": "true", @@ -96348,7 +107384,7 @@ } }, { - "id": 9529, + "id": 11217, "properties": { "east": "true", "north": "true", @@ -96358,7 +107394,7 @@ } }, { - "id": 9530, + "id": 11218, "properties": { "east": "true", "north": "true", @@ -96368,7 +107404,7 @@ } }, { - "id": 9531, + "id": 11219, "properties": { "east": "true", "north": "false", @@ -96378,7 +107414,7 @@ } }, { - "id": 9532, + "id": 11220, "properties": { "east": "true", "north": "false", @@ -96388,7 +107424,7 @@ } }, { - "id": 9533, + "id": 11221, "properties": { "east": "true", "north": "false", @@ -96398,7 +107434,7 @@ } }, { - "id": 9534, + "id": 11222, "properties": { "east": "true", "north": "false", @@ -96408,7 +107444,7 @@ } }, { - "id": 9535, + "id": 11223, "properties": { "east": "true", "north": "false", @@ -96418,7 +107454,7 @@ } }, { - "id": 9536, + "id": 11224, "properties": { "east": "true", "north": "false", @@ -96428,7 +107464,7 @@ } }, { - "id": 9537, + "id": 11225, "properties": { "east": "true", "north": "false", @@ -96438,7 +107474,7 @@ } }, { - "id": 9538, + "id": 11226, "properties": { "east": "true", "north": "false", @@ -96448,7 +107484,7 @@ } }, { - "id": 9539, + "id": 11227, "properties": { "east": "false", "north": "true", @@ -96458,7 +107494,7 @@ } }, { - "id": 9540, + "id": 11228, "properties": { "east": "false", "north": "true", @@ -96468,7 +107504,7 @@ } }, { - "id": 9541, + "id": 11229, "properties": { "east": "false", "north": "true", @@ -96478,7 +107514,7 @@ } }, { - "id": 9542, + "id": 11230, "properties": { "east": "false", "north": "true", @@ -96488,7 +107524,7 @@ } }, { - "id": 9543, + "id": 11231, "properties": { "east": "false", "north": "true", @@ -96498,7 +107534,7 @@ } }, { - "id": 9544, + "id": 11232, "properties": { "east": "false", "north": "true", @@ -96508,7 +107544,7 @@ } }, { - "id": 9545, + "id": 11233, "properties": { "east": "false", "north": "true", @@ -96518,7 +107554,7 @@ } }, { - "id": 9546, + "id": 11234, "properties": { "east": "false", "north": "true", @@ -96528,7 +107564,7 @@ } }, { - "id": 9547, + "id": 11235, "properties": { "east": "false", "north": "false", @@ -96538,7 +107574,7 @@ } }, { - "id": 9548, + "id": 11236, "properties": { "east": "false", "north": "false", @@ -96548,7 +107584,7 @@ } }, { - "id": 9549, + "id": 11237, "properties": { "east": "false", "north": "false", @@ -96558,7 +107594,7 @@ } }, { - "id": 9550, + "id": 11238, "properties": { "east": "false", "north": "false", @@ -96568,7 +107604,7 @@ } }, { - "id": 9551, + "id": 11239, "properties": { "east": "false", "north": "false", @@ -96578,7 +107614,7 @@ } }, { - "id": 9552, + "id": 11240, "properties": { "east": "false", "north": "false", @@ -96588,7 +107624,7 @@ } }, { - "id": 9553, + "id": 11241, "properties": { "east": "false", "north": "false", @@ -96599,7 +107635,7 @@ }, { "default": true, - "id": 9554, + "id": 11242, "properties": { "east": "false", "north": "false", @@ -96633,7 +107669,7 @@ }, "states": [ { - "id": 9331, + "id": 10987, "properties": { "facing": "north", "in_wall": "true", @@ -96642,7 +107678,7 @@ } }, { - "id": 9332, + "id": 10988, "properties": { "facing": "north", "in_wall": "true", @@ -96651,7 +107687,7 @@ } }, { - "id": 9333, + "id": 10989, "properties": { "facing": "north", "in_wall": "true", @@ -96660,7 +107696,7 @@ } }, { - "id": 9334, + "id": 10990, "properties": { "facing": "north", "in_wall": "true", @@ -96669,7 +107705,7 @@ } }, { - "id": 9335, + "id": 10991, "properties": { "facing": "north", "in_wall": "false", @@ -96678,7 +107714,7 @@ } }, { - "id": 9336, + "id": 10992, "properties": { "facing": "north", "in_wall": "false", @@ -96687,7 +107723,7 @@ } }, { - "id": 9337, + "id": 10993, "properties": { "facing": "north", "in_wall": "false", @@ -96697,7 +107733,7 @@ }, { "default": true, - "id": 9338, + "id": 10994, "properties": { "facing": "north", "in_wall": "false", @@ -96706,7 +107742,7 @@ } }, { - "id": 9339, + "id": 10995, "properties": { "facing": "south", "in_wall": "true", @@ -96715,7 +107751,7 @@ } }, { - "id": 9340, + "id": 10996, "properties": { "facing": "south", "in_wall": "true", @@ -96724,7 +107760,7 @@ } }, { - "id": 9341, + "id": 10997, "properties": { "facing": "south", "in_wall": "true", @@ -96733,7 +107769,7 @@ } }, { - "id": 9342, + "id": 10998, "properties": { "facing": "south", "in_wall": "true", @@ -96742,7 +107778,7 @@ } }, { - "id": 9343, + "id": 10999, "properties": { "facing": "south", "in_wall": "false", @@ -96751,7 +107787,7 @@ } }, { - "id": 9344, + "id": 11000, "properties": { "facing": "south", "in_wall": "false", @@ -96760,7 +107796,7 @@ } }, { - "id": 9345, + "id": 11001, "properties": { "facing": "south", "in_wall": "false", @@ -96769,7 +107805,7 @@ } }, { - "id": 9346, + "id": 11002, "properties": { "facing": "south", "in_wall": "false", @@ -96778,7 +107814,7 @@ } }, { - "id": 9347, + "id": 11003, "properties": { "facing": "west", "in_wall": "true", @@ -96787,7 +107823,7 @@ } }, { - "id": 9348, + "id": 11004, "properties": { "facing": "west", "in_wall": "true", @@ -96796,7 +107832,7 @@ } }, { - "id": 9349, + "id": 11005, "properties": { "facing": "west", "in_wall": "true", @@ -96805,7 +107841,7 @@ } }, { - "id": 9350, + "id": 11006, "properties": { "facing": "west", "in_wall": "true", @@ -96814,7 +107850,7 @@ } }, { - "id": 9351, + "id": 11007, "properties": { "facing": "west", "in_wall": "false", @@ -96823,7 +107859,7 @@ } }, { - "id": 9352, + "id": 11008, "properties": { "facing": "west", "in_wall": "false", @@ -96832,7 +107868,7 @@ } }, { - "id": 9353, + "id": 11009, "properties": { "facing": "west", "in_wall": "false", @@ -96841,7 +107877,7 @@ } }, { - "id": 9354, + "id": 11010, "properties": { "facing": "west", "in_wall": "false", @@ -96850,7 +107886,7 @@ } }, { - "id": 9355, + "id": 11011, "properties": { "facing": "east", "in_wall": "true", @@ -96859,7 +107895,7 @@ } }, { - "id": 9356, + "id": 11012, "properties": { "facing": "east", "in_wall": "true", @@ -96868,7 +107904,7 @@ } }, { - "id": 9357, + "id": 11013, "properties": { "facing": "east", "in_wall": "true", @@ -96877,7 +107913,7 @@ } }, { - "id": 9358, + "id": 11014, "properties": { "facing": "east", "in_wall": "true", @@ -96886,7 +107922,7 @@ } }, { - "id": 9359, + "id": 11015, "properties": { "facing": "east", "in_wall": "false", @@ -96895,7 +107931,7 @@ } }, { - "id": 9360, + "id": 11016, "properties": { "facing": "east", "in_wall": "false", @@ -96904,7 +107940,7 @@ } }, { - "id": 9361, + "id": 11017, "properties": { "facing": "east", "in_wall": "false", @@ -96913,7 +107949,7 @@ } }, { - "id": 9362, + "id": 11018, "properties": { "facing": "east", "in_wall": "false", @@ -96923,6 +107959,551 @@ } ] }, + "minecraft:mangrove_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5254, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5255, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5256, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5257, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5258, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5259, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5260, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5261, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5262, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5263, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5264, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5265, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5266, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5267, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5268, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5269, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5270, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5271, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5272, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5273, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5274, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5275, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5276, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5277, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5278, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5279, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5280, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5281, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5282, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5283, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5284, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5285, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5286, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5287, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5288, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5289, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5290, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5291, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5292, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5293, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5294, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5295, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5296, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5297, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5298, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5299, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5300, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5301, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5302, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5303, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5304, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5305, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5306, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5307, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5308, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5309, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5310, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5311, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5312, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5313, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5314, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5315, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5316, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5317, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, "minecraft:mangrove_leaves": { "properties": { "distance": [ @@ -96944,74 +108525,10 @@ ] }, "states": [ - { - "id": 374, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 375, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 376, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 377, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 378, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 379, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 380, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 381, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, { "id": 382, "properties": { - "distance": "3", + "distance": "1", "persistent": "true", "waterlogged": "true" } @@ -97019,7 +108536,7 @@ { "id": 383, "properties": { - "distance": "3", + "distance": "1", "persistent": "true", "waterlogged": "false" } @@ -97027,7 +108544,7 @@ { "id": 384, "properties": { - "distance": "3", + "distance": "1", "persistent": "false", "waterlogged": "true" } @@ -97035,7 +108552,7 @@ { "id": 385, "properties": { - "distance": "3", + "distance": "1", "persistent": "false", "waterlogged": "false" } @@ -97043,7 +108560,7 @@ { "id": 386, "properties": { - "distance": "4", + "distance": "2", "persistent": "true", "waterlogged": "true" } @@ -97051,7 +108568,7 @@ { "id": 387, "properties": { - "distance": "4", + "distance": "2", "persistent": "true", "waterlogged": "false" } @@ -97059,7 +108576,7 @@ { "id": 388, "properties": { - "distance": "4", + "distance": "2", "persistent": "false", "waterlogged": "true" } @@ -97067,7 +108584,7 @@ { "id": 389, "properties": { - "distance": "4", + "distance": "2", "persistent": "false", "waterlogged": "false" } @@ -97075,7 +108592,7 @@ { "id": 390, "properties": { - "distance": "5", + "distance": "3", "persistent": "true", "waterlogged": "true" } @@ -97083,7 +108600,7 @@ { "id": 391, "properties": { - "distance": "5", + "distance": "3", "persistent": "true", "waterlogged": "false" } @@ -97091,7 +108608,7 @@ { "id": 392, "properties": { - "distance": "5", + "distance": "3", "persistent": "false", "waterlogged": "true" } @@ -97099,7 +108616,7 @@ { "id": 393, "properties": { - "distance": "5", + "distance": "3", "persistent": "false", "waterlogged": "false" } @@ -97107,7 +108624,7 @@ { "id": 394, "properties": { - "distance": "6", + "distance": "4", "persistent": "true", "waterlogged": "true" } @@ -97115,7 +108632,7 @@ { "id": 395, "properties": { - "distance": "6", + "distance": "4", "persistent": "true", "waterlogged": "false" } @@ -97123,7 +108640,7 @@ { "id": 396, "properties": { - "distance": "6", + "distance": "4", "persistent": "false", "waterlogged": "true" } @@ -97131,7 +108648,7 @@ { "id": 397, "properties": { - "distance": "6", + "distance": "4", "persistent": "false", "waterlogged": "false" } @@ -97139,7 +108656,7 @@ { "id": 398, "properties": { - "distance": "7", + "distance": "5", "persistent": "true", "waterlogged": "true" } @@ -97147,13 +108664,77 @@ { "id": 399, "properties": { - "distance": "7", + "distance": "5", "persistent": "true", "waterlogged": "false" } }, { "id": 400, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 401, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 402, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 403, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 404, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 405, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 406, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 407, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 408, "properties": { "distance": "7", "persistent": "false", @@ -97162,7 +108743,7 @@ }, { "default": true, - "id": 401, + "id": 409, "properties": { "distance": "7", "persistent": "false", @@ -97181,20 +108762,20 @@ }, "states": [ { - "id": 135, + "id": 137, "properties": { "axis": "x" } }, { "default": true, - "id": 136, + "id": 138, "properties": { "axis": "y" } }, { - "id": 137, + "id": 139, "properties": { "axis": "z" } @@ -97218,14 +108799,14 @@ }, "states": [ { - "id": 4190, + "id": 5564, "properties": { "powered": "true" } }, { "default": true, - "id": 4191, + "id": 5565, "properties": { "powered": "false" } @@ -97255,30 +108836,12 @@ ] }, "states": [ - { - "id": 34, - "properties": { - "age": "0", - "hanging": "true", - "stage": "0", - "waterlogged": "true" - } - }, - { - "id": 35, - "properties": { - "age": "0", - "hanging": "true", - "stage": "0", - "waterlogged": "false" - } - }, { "id": 36, "properties": { "age": "0", "hanging": "true", - "stage": "1", + "stage": "0", "waterlogged": "true" } }, @@ -97287,12 +108850,30 @@ "properties": { "age": "0", "hanging": "true", - "stage": "1", + "stage": "0", "waterlogged": "false" } }, { "id": 38, + "properties": { + "age": "0", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 39, + "properties": { + "age": "0", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 40, "properties": { "age": "0", "hanging": "false", @@ -97302,47 +108883,29 @@ }, { "default": true, - "id": 39, - "properties": { - "age": "0", - "hanging": "false", - "stage": "0", - "waterlogged": "false" - } - }, - { - "id": 40, - "properties": { - "age": "0", - "hanging": "false", - "stage": "1", - "waterlogged": "true" - } - }, - { "id": 41, "properties": { "age": "0", "hanging": "false", - "stage": "1", + "stage": "0", "waterlogged": "false" } }, { "id": 42, "properties": { - "age": "1", - "hanging": "true", - "stage": "0", + "age": "0", + "hanging": "false", + "stage": "1", "waterlogged": "true" } }, { "id": 43, "properties": { - "age": "1", - "hanging": "true", - "stage": "0", + "age": "0", + "hanging": "false", + "stage": "1", "waterlogged": "false" } }, @@ -97351,7 +108914,7 @@ "properties": { "age": "1", "hanging": "true", - "stage": "1", + "stage": "0", "waterlogged": "true" } }, @@ -97360,7 +108923,7 @@ "properties": { "age": "1", "hanging": "true", - "stage": "1", + "stage": "0", "waterlogged": "false" } }, @@ -97368,8 +108931,8 @@ "id": 46, "properties": { "age": "1", - "hanging": "false", - "stage": "0", + "hanging": "true", + "stage": "1", "waterlogged": "true" } }, @@ -97377,8 +108940,8 @@ "id": 47, "properties": { "age": "1", - "hanging": "false", - "stage": "0", + "hanging": "true", + "stage": "1", "waterlogged": "false" } }, @@ -97387,7 +108950,7 @@ "properties": { "age": "1", "hanging": "false", - "stage": "1", + "stage": "0", "waterlogged": "true" } }, @@ -97396,25 +108959,25 @@ "properties": { "age": "1", "hanging": "false", - "stage": "1", + "stage": "0", "waterlogged": "false" } }, { "id": 50, "properties": { - "age": "2", - "hanging": "true", - "stage": "0", + "age": "1", + "hanging": "false", + "stage": "1", "waterlogged": "true" } }, { "id": 51, "properties": { - "age": "2", - "hanging": "true", - "stage": "0", + "age": "1", + "hanging": "false", + "stage": "1", "waterlogged": "false" } }, @@ -97423,7 +108986,7 @@ "properties": { "age": "2", "hanging": "true", - "stage": "1", + "stage": "0", "waterlogged": "true" } }, @@ -97432,7 +108995,7 @@ "properties": { "age": "2", "hanging": "true", - "stage": "1", + "stage": "0", "waterlogged": "false" } }, @@ -97440,8 +109003,8 @@ "id": 54, "properties": { "age": "2", - "hanging": "false", - "stage": "0", + "hanging": "true", + "stage": "1", "waterlogged": "true" } }, @@ -97449,8 +109012,8 @@ "id": 55, "properties": { "age": "2", - "hanging": "false", - "stage": "0", + "hanging": "true", + "stage": "1", "waterlogged": "false" } }, @@ -97459,7 +109022,7 @@ "properties": { "age": "2", "hanging": "false", - "stage": "1", + "stage": "0", "waterlogged": "true" } }, @@ -97468,25 +109031,25 @@ "properties": { "age": "2", "hanging": "false", - "stage": "1", + "stage": "0", "waterlogged": "false" } }, { "id": 58, "properties": { - "age": "3", - "hanging": "true", - "stage": "0", + "age": "2", + "hanging": "false", + "stage": "1", "waterlogged": "true" } }, { "id": 59, "properties": { - "age": "3", - "hanging": "true", - "stage": "0", + "age": "2", + "hanging": "false", + "stage": "1", "waterlogged": "false" } }, @@ -97495,7 +109058,7 @@ "properties": { "age": "3", "hanging": "true", - "stage": "1", + "stage": "0", "waterlogged": "true" } }, @@ -97504,7 +109067,7 @@ "properties": { "age": "3", "hanging": "true", - "stage": "1", + "stage": "0", "waterlogged": "false" } }, @@ -97512,8 +109075,8 @@ "id": 62, "properties": { "age": "3", - "hanging": "false", - "stage": "0", + "hanging": "true", + "stage": "1", "waterlogged": "true" } }, @@ -97521,8 +109084,8 @@ "id": 63, "properties": { "age": "3", - "hanging": "false", - "stage": "0", + "hanging": "true", + "stage": "1", "waterlogged": "false" } }, @@ -97531,7 +109094,7 @@ "properties": { "age": "3", "hanging": "false", - "stage": "1", + "stage": "0", "waterlogged": "true" } }, @@ -97540,25 +109103,25 @@ "properties": { "age": "3", "hanging": "false", - "stage": "1", + "stage": "0", "waterlogged": "false" } }, { "id": 66, "properties": { - "age": "4", - "hanging": "true", - "stage": "0", + "age": "3", + "hanging": "false", + "stage": "1", "waterlogged": "true" } }, { "id": 67, "properties": { - "age": "4", - "hanging": "true", - "stage": "0", + "age": "3", + "hanging": "false", + "stage": "1", "waterlogged": "false" } }, @@ -97567,7 +109130,7 @@ "properties": { "age": "4", "hanging": "true", - "stage": "1", + "stage": "0", "waterlogged": "true" } }, @@ -97576,7 +109139,7 @@ "properties": { "age": "4", "hanging": "true", - "stage": "1", + "stage": "0", "waterlogged": "false" } }, @@ -97584,8 +109147,8 @@ "id": 70, "properties": { "age": "4", - "hanging": "false", - "stage": "0", + "hanging": "true", + "stage": "1", "waterlogged": "true" } }, @@ -97593,8 +109156,8 @@ "id": 71, "properties": { "age": "4", - "hanging": "false", - "stage": "0", + "hanging": "true", + "stage": "1", "waterlogged": "false" } }, @@ -97603,12 +109166,30 @@ "properties": { "age": "4", "hanging": "false", - "stage": "1", + "stage": "0", "waterlogged": "true" } }, { "id": 73, + "properties": { + "age": "4", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 74, + "properties": { + "age": "4", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 75, "properties": { "age": "4", "hanging": "false", @@ -97627,14 +109208,14 @@ }, "states": [ { - "id": 138, + "id": 140, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 139, + "id": 141, "properties": { "waterlogged": "false" } @@ -97668,7 +109249,7 @@ }, "states": [ { - "id": 3828, + "id": 4442, "properties": { "rotation": "0", "waterlogged": "true" @@ -97676,217 +109257,217 @@ }, { "default": true, - "id": 3829, + "id": 4443, "properties": { "rotation": "0", "waterlogged": "false" } }, { - "id": 3830, + "id": 4444, "properties": { "rotation": "1", "waterlogged": "true" } }, { - "id": 3831, + "id": 4445, "properties": { "rotation": "1", "waterlogged": "false" } }, { - "id": 3832, + "id": 4446, "properties": { "rotation": "2", "waterlogged": "true" } }, { - "id": 3833, + "id": 4447, "properties": { "rotation": "2", "waterlogged": "false" } }, { - "id": 3834, + "id": 4448, "properties": { "rotation": "3", "waterlogged": "true" } }, { - "id": 3835, + "id": 4449, "properties": { "rotation": "3", "waterlogged": "false" } }, { - "id": 3836, + "id": 4450, "properties": { "rotation": "4", "waterlogged": "true" } }, { - "id": 3837, + "id": 4451, "properties": { "rotation": "4", "waterlogged": "false" } }, { - "id": 3838, + "id": 4452, "properties": { "rotation": "5", "waterlogged": "true" } }, { - "id": 3839, + "id": 4453, "properties": { "rotation": "5", "waterlogged": "false" } }, { - "id": 3840, + "id": 4454, "properties": { "rotation": "6", "waterlogged": "true" } }, { - "id": 3841, + "id": 4455, "properties": { "rotation": "6", "waterlogged": "false" } }, { - "id": 3842, + "id": 4456, "properties": { "rotation": "7", "waterlogged": "true" } }, { - "id": 3843, + "id": 4457, "properties": { "rotation": "7", "waterlogged": "false" } }, { - "id": 3844, + "id": 4458, "properties": { "rotation": "8", "waterlogged": "true" } }, { - "id": 3845, + "id": 4459, "properties": { "rotation": "8", "waterlogged": "false" } }, { - "id": 3846, + "id": 4460, "properties": { "rotation": "9", "waterlogged": "true" } }, { - "id": 3847, + "id": 4461, "properties": { "rotation": "9", "waterlogged": "false" } }, { - "id": 3848, + "id": 4462, "properties": { "rotation": "10", "waterlogged": "true" } }, { - "id": 3849, + "id": 4463, "properties": { "rotation": "10", "waterlogged": "false" } }, { - "id": 3850, + "id": 4464, "properties": { "rotation": "11", "waterlogged": "true" } }, { - "id": 3851, + "id": 4465, "properties": { "rotation": "11", "waterlogged": "false" } }, { - "id": 3852, + "id": 4466, "properties": { "rotation": "12", "waterlogged": "true" } }, { - "id": 3853, + "id": 4467, "properties": { "rotation": "12", "waterlogged": "false" } }, { - "id": 3854, + "id": 4468, "properties": { "rotation": "13", "waterlogged": "true" } }, { - "id": 3855, + "id": 4469, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 3856, + "id": 4470, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 3857, + "id": 4471, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 3858, + "id": 4472, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 3859, + "id": 4473, "properties": { "rotation": "15", "waterlogged": "false" @@ -97908,21 +109489,21 @@ }, "states": [ { - "id": 9077, + "id": 10721, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 9078, + "id": 10722, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 9079, + "id": 10723, "properties": { "type": "bottom", "waterlogged": "true" @@ -97930,21 +109511,21 @@ }, { "default": true, - "id": 9080, + "id": 10724, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 9081, + "id": 10725, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 9082, + "id": 10726, "properties": { "type": "double", "waterlogged": "false" @@ -97978,7 +109559,7 @@ }, "states": [ { - "id": 8164, + "id": 9648, "properties": { "facing": "north", "half": "top", @@ -97987,7 +109568,7 @@ } }, { - "id": 8165, + "id": 9649, "properties": { "facing": "north", "half": "top", @@ -97996,7 +109577,7 @@ } }, { - "id": 8166, + "id": 9650, "properties": { "facing": "north", "half": "top", @@ -98005,7 +109586,7 @@ } }, { - "id": 8167, + "id": 9651, "properties": { "facing": "north", "half": "top", @@ -98014,7 +109595,7 @@ } }, { - "id": 8168, + "id": 9652, "properties": { "facing": "north", "half": "top", @@ -98023,7 +109604,7 @@ } }, { - "id": 8169, + "id": 9653, "properties": { "facing": "north", "half": "top", @@ -98032,7 +109613,7 @@ } }, { - "id": 8170, + "id": 9654, "properties": { "facing": "north", "half": "top", @@ -98041,7 +109622,7 @@ } }, { - "id": 8171, + "id": 9655, "properties": { "facing": "north", "half": "top", @@ -98050,7 +109631,7 @@ } }, { - "id": 8172, + "id": 9656, "properties": { "facing": "north", "half": "top", @@ -98059,7 +109640,7 @@ } }, { - "id": 8173, + "id": 9657, "properties": { "facing": "north", "half": "top", @@ -98068,7 +109649,7 @@ } }, { - "id": 8174, + "id": 9658, "properties": { "facing": "north", "half": "bottom", @@ -98078,7 +109659,7 @@ }, { "default": true, - "id": 8175, + "id": 9659, "properties": { "facing": "north", "half": "bottom", @@ -98087,7 +109668,7 @@ } }, { - "id": 8176, + "id": 9660, "properties": { "facing": "north", "half": "bottom", @@ -98096,7 +109677,7 @@ } }, { - "id": 8177, + "id": 9661, "properties": { "facing": "north", "half": "bottom", @@ -98105,7 +109686,7 @@ } }, { - "id": 8178, + "id": 9662, "properties": { "facing": "north", "half": "bottom", @@ -98114,7 +109695,7 @@ } }, { - "id": 8179, + "id": 9663, "properties": { "facing": "north", "half": "bottom", @@ -98123,7 +109704,7 @@ } }, { - "id": 8180, + "id": 9664, "properties": { "facing": "north", "half": "bottom", @@ -98132,7 +109713,7 @@ } }, { - "id": 8181, + "id": 9665, "properties": { "facing": "north", "half": "bottom", @@ -98141,7 +109722,7 @@ } }, { - "id": 8182, + "id": 9666, "properties": { "facing": "north", "half": "bottom", @@ -98150,7 +109731,7 @@ } }, { - "id": 8183, + "id": 9667, "properties": { "facing": "north", "half": "bottom", @@ -98159,7 +109740,7 @@ } }, { - "id": 8184, + "id": 9668, "properties": { "facing": "south", "half": "top", @@ -98168,7 +109749,7 @@ } }, { - "id": 8185, + "id": 9669, "properties": { "facing": "south", "half": "top", @@ -98177,7 +109758,7 @@ } }, { - "id": 8186, + "id": 9670, "properties": { "facing": "south", "half": "top", @@ -98186,7 +109767,7 @@ } }, { - "id": 8187, + "id": 9671, "properties": { "facing": "south", "half": "top", @@ -98195,7 +109776,7 @@ } }, { - "id": 8188, + "id": 9672, "properties": { "facing": "south", "half": "top", @@ -98204,7 +109785,7 @@ } }, { - "id": 8189, + "id": 9673, "properties": { "facing": "south", "half": "top", @@ -98213,7 +109794,7 @@ } }, { - "id": 8190, + "id": 9674, "properties": { "facing": "south", "half": "top", @@ -98222,7 +109803,7 @@ } }, { - "id": 8191, + "id": 9675, "properties": { "facing": "south", "half": "top", @@ -98231,7 +109812,7 @@ } }, { - "id": 8192, + "id": 9676, "properties": { "facing": "south", "half": "top", @@ -98240,7 +109821,7 @@ } }, { - "id": 8193, + "id": 9677, "properties": { "facing": "south", "half": "top", @@ -98249,7 +109830,7 @@ } }, { - "id": 8194, + "id": 9678, "properties": { "facing": "south", "half": "bottom", @@ -98258,7 +109839,7 @@ } }, { - "id": 8195, + "id": 9679, "properties": { "facing": "south", "half": "bottom", @@ -98267,7 +109848,7 @@ } }, { - "id": 8196, + "id": 9680, "properties": { "facing": "south", "half": "bottom", @@ -98276,7 +109857,7 @@ } }, { - "id": 8197, + "id": 9681, "properties": { "facing": "south", "half": "bottom", @@ -98285,7 +109866,7 @@ } }, { - "id": 8198, + "id": 9682, "properties": { "facing": "south", "half": "bottom", @@ -98294,7 +109875,7 @@ } }, { - "id": 8199, + "id": 9683, "properties": { "facing": "south", "half": "bottom", @@ -98303,7 +109884,7 @@ } }, { - "id": 8200, + "id": 9684, "properties": { "facing": "south", "half": "bottom", @@ -98312,7 +109893,7 @@ } }, { - "id": 8201, + "id": 9685, "properties": { "facing": "south", "half": "bottom", @@ -98321,7 +109902,7 @@ } }, { - "id": 8202, + "id": 9686, "properties": { "facing": "south", "half": "bottom", @@ -98330,7 +109911,7 @@ } }, { - "id": 8203, + "id": 9687, "properties": { "facing": "south", "half": "bottom", @@ -98339,7 +109920,7 @@ } }, { - "id": 8204, + "id": 9688, "properties": { "facing": "west", "half": "top", @@ -98348,7 +109929,7 @@ } }, { - "id": 8205, + "id": 9689, "properties": { "facing": "west", "half": "top", @@ -98357,7 +109938,7 @@ } }, { - "id": 8206, + "id": 9690, "properties": { "facing": "west", "half": "top", @@ -98366,7 +109947,7 @@ } }, { - "id": 8207, + "id": 9691, "properties": { "facing": "west", "half": "top", @@ -98375,7 +109956,7 @@ } }, { - "id": 8208, + "id": 9692, "properties": { "facing": "west", "half": "top", @@ -98384,7 +109965,7 @@ } }, { - "id": 8209, + "id": 9693, "properties": { "facing": "west", "half": "top", @@ -98393,7 +109974,7 @@ } }, { - "id": 8210, + "id": 9694, "properties": { "facing": "west", "half": "top", @@ -98402,7 +109983,7 @@ } }, { - "id": 8211, + "id": 9695, "properties": { "facing": "west", "half": "top", @@ -98411,7 +109992,7 @@ } }, { - "id": 8212, + "id": 9696, "properties": { "facing": "west", "half": "top", @@ -98420,7 +110001,7 @@ } }, { - "id": 8213, + "id": 9697, "properties": { "facing": "west", "half": "top", @@ -98429,7 +110010,7 @@ } }, { - "id": 8214, + "id": 9698, "properties": { "facing": "west", "half": "bottom", @@ -98438,7 +110019,7 @@ } }, { - "id": 8215, + "id": 9699, "properties": { "facing": "west", "half": "bottom", @@ -98447,7 +110028,7 @@ } }, { - "id": 8216, + "id": 9700, "properties": { "facing": "west", "half": "bottom", @@ -98456,7 +110037,7 @@ } }, { - "id": 8217, + "id": 9701, "properties": { "facing": "west", "half": "bottom", @@ -98465,7 +110046,7 @@ } }, { - "id": 8218, + "id": 9702, "properties": { "facing": "west", "half": "bottom", @@ -98474,7 +110055,7 @@ } }, { - "id": 8219, + "id": 9703, "properties": { "facing": "west", "half": "bottom", @@ -98483,7 +110064,7 @@ } }, { - "id": 8220, + "id": 9704, "properties": { "facing": "west", "half": "bottom", @@ -98492,7 +110073,7 @@ } }, { - "id": 8221, + "id": 9705, "properties": { "facing": "west", "half": "bottom", @@ -98501,7 +110082,7 @@ } }, { - "id": 8222, + "id": 9706, "properties": { "facing": "west", "half": "bottom", @@ -98510,7 +110091,7 @@ } }, { - "id": 8223, + "id": 9707, "properties": { "facing": "west", "half": "bottom", @@ -98519,7 +110100,7 @@ } }, { - "id": 8224, + "id": 9708, "properties": { "facing": "east", "half": "top", @@ -98528,7 +110109,7 @@ } }, { - "id": 8225, + "id": 9709, "properties": { "facing": "east", "half": "top", @@ -98537,7 +110118,7 @@ } }, { - "id": 8226, + "id": 9710, "properties": { "facing": "east", "half": "top", @@ -98546,7 +110127,7 @@ } }, { - "id": 8227, + "id": 9711, "properties": { "facing": "east", "half": "top", @@ -98555,7 +110136,7 @@ } }, { - "id": 8228, + "id": 9712, "properties": { "facing": "east", "half": "top", @@ -98564,7 +110145,7 @@ } }, { - "id": 8229, + "id": 9713, "properties": { "facing": "east", "half": "top", @@ -98573,7 +110154,7 @@ } }, { - "id": 8230, + "id": 9714, "properties": { "facing": "east", "half": "top", @@ -98582,7 +110163,7 @@ } }, { - "id": 8231, + "id": 9715, "properties": { "facing": "east", "half": "top", @@ -98591,7 +110172,7 @@ } }, { - "id": 8232, + "id": 9716, "properties": { "facing": "east", "half": "top", @@ -98600,7 +110181,7 @@ } }, { - "id": 8233, + "id": 9717, "properties": { "facing": "east", "half": "top", @@ -98609,7 +110190,7 @@ } }, { - "id": 8234, + "id": 9718, "properties": { "facing": "east", "half": "bottom", @@ -98618,7 +110199,7 @@ } }, { - "id": 8235, + "id": 9719, "properties": { "facing": "east", "half": "bottom", @@ -98627,7 +110208,7 @@ } }, { - "id": 8236, + "id": 9720, "properties": { "facing": "east", "half": "bottom", @@ -98636,7 +110217,7 @@ } }, { - "id": 8237, + "id": 9721, "properties": { "facing": "east", "half": "bottom", @@ -98645,7 +110226,7 @@ } }, { - "id": 8238, + "id": 9722, "properties": { "facing": "east", "half": "bottom", @@ -98654,7 +110235,7 @@ } }, { - "id": 8239, + "id": 9723, "properties": { "facing": "east", "half": "bottom", @@ -98663,7 +110244,7 @@ } }, { - "id": 8240, + "id": 9724, "properties": { "facing": "east", "half": "bottom", @@ -98672,7 +110253,7 @@ } }, { - "id": 8241, + "id": 9725, "properties": { "facing": "east", "half": "bottom", @@ -98681,7 +110262,7 @@ } }, { - "id": 8242, + "id": 9726, "properties": { "facing": "east", "half": "bottom", @@ -98690,7 +110271,7 @@ } }, { - "id": 8243, + "id": 9727, "properties": { "facing": "east", "half": "bottom", @@ -98727,7 +110308,7 @@ }, "states": [ { - "id": 4804, + "id": 6180, "properties": { "facing": "north", "half": "top", @@ -98737,7 +110318,7 @@ } }, { - "id": 4805, + "id": 6181, "properties": { "facing": "north", "half": "top", @@ -98747,7 +110328,7 @@ } }, { - "id": 4806, + "id": 6182, "properties": { "facing": "north", "half": "top", @@ -98757,7 +110338,7 @@ } }, { - "id": 4807, + "id": 6183, "properties": { "facing": "north", "half": "top", @@ -98767,7 +110348,7 @@ } }, { - "id": 4808, + "id": 6184, "properties": { "facing": "north", "half": "top", @@ -98777,7 +110358,7 @@ } }, { - "id": 4809, + "id": 6185, "properties": { "facing": "north", "half": "top", @@ -98787,7 +110368,7 @@ } }, { - "id": 4810, + "id": 6186, "properties": { "facing": "north", "half": "top", @@ -98797,7 +110378,7 @@ } }, { - "id": 4811, + "id": 6187, "properties": { "facing": "north", "half": "top", @@ -98807,7 +110388,7 @@ } }, { - "id": 4812, + "id": 6188, "properties": { "facing": "north", "half": "bottom", @@ -98817,7 +110398,7 @@ } }, { - "id": 4813, + "id": 6189, "properties": { "facing": "north", "half": "bottom", @@ -98827,7 +110408,7 @@ } }, { - "id": 4814, + "id": 6190, "properties": { "facing": "north", "half": "bottom", @@ -98837,7 +110418,7 @@ } }, { - "id": 4815, + "id": 6191, "properties": { "facing": "north", "half": "bottom", @@ -98847,7 +110428,7 @@ } }, { - "id": 4816, + "id": 6192, "properties": { "facing": "north", "half": "bottom", @@ -98857,7 +110438,7 @@ } }, { - "id": 4817, + "id": 6193, "properties": { "facing": "north", "half": "bottom", @@ -98867,7 +110448,7 @@ } }, { - "id": 4818, + "id": 6194, "properties": { "facing": "north", "half": "bottom", @@ -98878,7 +110459,7 @@ }, { "default": true, - "id": 4819, + "id": 6195, "properties": { "facing": "north", "half": "bottom", @@ -98888,7 +110469,7 @@ } }, { - "id": 4820, + "id": 6196, "properties": { "facing": "south", "half": "top", @@ -98898,7 +110479,7 @@ } }, { - "id": 4821, + "id": 6197, "properties": { "facing": "south", "half": "top", @@ -98908,7 +110489,7 @@ } }, { - "id": 4822, + "id": 6198, "properties": { "facing": "south", "half": "top", @@ -98918,7 +110499,7 @@ } }, { - "id": 4823, + "id": 6199, "properties": { "facing": "south", "half": "top", @@ -98928,7 +110509,7 @@ } }, { - "id": 4824, + "id": 6200, "properties": { "facing": "south", "half": "top", @@ -98938,7 +110519,7 @@ } }, { - "id": 4825, + "id": 6201, "properties": { "facing": "south", "half": "top", @@ -98948,7 +110529,7 @@ } }, { - "id": 4826, + "id": 6202, "properties": { "facing": "south", "half": "top", @@ -98958,7 +110539,7 @@ } }, { - "id": 4827, + "id": 6203, "properties": { "facing": "south", "half": "top", @@ -98968,7 +110549,7 @@ } }, { - "id": 4828, + "id": 6204, "properties": { "facing": "south", "half": "bottom", @@ -98978,7 +110559,7 @@ } }, { - "id": 4829, + "id": 6205, "properties": { "facing": "south", "half": "bottom", @@ -98988,7 +110569,7 @@ } }, { - "id": 4830, + "id": 6206, "properties": { "facing": "south", "half": "bottom", @@ -98998,7 +110579,7 @@ } }, { - "id": 4831, + "id": 6207, "properties": { "facing": "south", "half": "bottom", @@ -99008,7 +110589,7 @@ } }, { - "id": 4832, + "id": 6208, "properties": { "facing": "south", "half": "bottom", @@ -99018,7 +110599,7 @@ } }, { - "id": 4833, + "id": 6209, "properties": { "facing": "south", "half": "bottom", @@ -99028,7 +110609,7 @@ } }, { - "id": 4834, + "id": 6210, "properties": { "facing": "south", "half": "bottom", @@ -99038,7 +110619,7 @@ } }, { - "id": 4835, + "id": 6211, "properties": { "facing": "south", "half": "bottom", @@ -99048,7 +110629,7 @@ } }, { - "id": 4836, + "id": 6212, "properties": { "facing": "west", "half": "top", @@ -99058,7 +110639,7 @@ } }, { - "id": 4837, + "id": 6213, "properties": { "facing": "west", "half": "top", @@ -99068,7 +110649,7 @@ } }, { - "id": 4838, + "id": 6214, "properties": { "facing": "west", "half": "top", @@ -99078,7 +110659,7 @@ } }, { - "id": 4839, + "id": 6215, "properties": { "facing": "west", "half": "top", @@ -99088,7 +110669,7 @@ } }, { - "id": 4840, + "id": 6216, "properties": { "facing": "west", "half": "top", @@ -99098,7 +110679,7 @@ } }, { - "id": 4841, + "id": 6217, "properties": { "facing": "west", "half": "top", @@ -99108,7 +110689,7 @@ } }, { - "id": 4842, + "id": 6218, "properties": { "facing": "west", "half": "top", @@ -99118,7 +110699,7 @@ } }, { - "id": 4843, + "id": 6219, "properties": { "facing": "west", "half": "top", @@ -99128,7 +110709,7 @@ } }, { - "id": 4844, + "id": 6220, "properties": { "facing": "west", "half": "bottom", @@ -99138,7 +110719,7 @@ } }, { - "id": 4845, + "id": 6221, "properties": { "facing": "west", "half": "bottom", @@ -99148,7 +110729,7 @@ } }, { - "id": 4846, + "id": 6222, "properties": { "facing": "west", "half": "bottom", @@ -99158,7 +110739,7 @@ } }, { - "id": 4847, + "id": 6223, "properties": { "facing": "west", "half": "bottom", @@ -99168,7 +110749,7 @@ } }, { - "id": 4848, + "id": 6224, "properties": { "facing": "west", "half": "bottom", @@ -99178,7 +110759,7 @@ } }, { - "id": 4849, + "id": 6225, "properties": { "facing": "west", "half": "bottom", @@ -99188,7 +110769,7 @@ } }, { - "id": 4850, + "id": 6226, "properties": { "facing": "west", "half": "bottom", @@ -99198,7 +110779,7 @@ } }, { - "id": 4851, + "id": 6227, "properties": { "facing": "west", "half": "bottom", @@ -99208,7 +110789,7 @@ } }, { - "id": 4852, + "id": 6228, "properties": { "facing": "east", "half": "top", @@ -99218,7 +110799,7 @@ } }, { - "id": 4853, + "id": 6229, "properties": { "facing": "east", "half": "top", @@ -99228,7 +110809,7 @@ } }, { - "id": 4854, + "id": 6230, "properties": { "facing": "east", "half": "top", @@ -99238,7 +110819,7 @@ } }, { - "id": 4855, + "id": 6231, "properties": { "facing": "east", "half": "top", @@ -99248,7 +110829,7 @@ } }, { - "id": 4856, + "id": 6232, "properties": { "facing": "east", "half": "top", @@ -99258,7 +110839,7 @@ } }, { - "id": 4857, + "id": 6233, "properties": { "facing": "east", "half": "top", @@ -99268,7 +110849,7 @@ } }, { - "id": 4858, + "id": 6234, "properties": { "facing": "east", "half": "top", @@ -99278,7 +110859,7 @@ } }, { - "id": 4859, + "id": 6235, "properties": { "facing": "east", "half": "top", @@ -99288,7 +110869,7 @@ } }, { - "id": 4860, + "id": 6236, "properties": { "facing": "east", "half": "bottom", @@ -99298,7 +110879,7 @@ } }, { - "id": 4861, + "id": 6237, "properties": { "facing": "east", "half": "bottom", @@ -99308,7 +110889,7 @@ } }, { - "id": 4862, + "id": 6238, "properties": { "facing": "east", "half": "bottom", @@ -99318,7 +110899,7 @@ } }, { - "id": 4863, + "id": 6239, "properties": { "facing": "east", "half": "bottom", @@ -99328,7 +110909,7 @@ } }, { - "id": 4864, + "id": 6240, "properties": { "facing": "east", "half": "bottom", @@ -99338,7 +110919,7 @@ } }, { - "id": 4865, + "id": 6241, "properties": { "facing": "east", "half": "bottom", @@ -99348,7 +110929,7 @@ } }, { - "id": 4866, + "id": 6242, "properties": { "facing": "east", "half": "bottom", @@ -99358,7 +110939,7 @@ } }, { - "id": 4867, + "id": 6243, "properties": { "facing": "east", "half": "bottom", @@ -99369,6 +110950,79 @@ } ] }, + "minecraft:mangrove_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5430, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5431, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5432, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5433, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5434, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5435, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5436, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5437, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, "minecraft:mangrove_wall_sign": { "properties": { "facing": [ @@ -99384,7 +111038,7 @@ }, "states": [ { - "id": 4080, + "id": 4726, "properties": { "facing": "north", "waterlogged": "true" @@ -99392,49 +111046,49 @@ }, { "default": true, - "id": 4081, + "id": 4727, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 4082, + "id": 4728, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 4083, + "id": 4729, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 4084, + "id": 4730, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 4085, + "id": 4731, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 4086, + "id": 4732, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4087, + "id": 4733, "properties": { "facing": "east", "waterlogged": "false" @@ -99452,20 +111106,20 @@ }, "states": [ { - "id": 182, + "id": 190, "properties": { "axis": "x" } }, { "default": true, - "id": 183, + "id": 191, "properties": { "axis": "y" } }, { - "id": 184, + "id": 192, "properties": { "axis": "z" } @@ -99489,63 +111143,63 @@ }, "states": [ { - "id": 18645, + "id": 20429, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 18646, + "id": 20430, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 18647, + "id": 20431, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 18648, + "id": 20432, "properties": { "facing": "east", "waterlogged": "false" } }, { - "id": 18649, + "id": 20433, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 18650, + "id": 20434, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 18651, + "id": 20435, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 18652, + "id": 20436, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 18653, + "id": 20437, "properties": { "facing": "up", "waterlogged": "true" @@ -99553,21 +111207,21 @@ }, { "default": true, - "id": 18654, + "id": 20438, "properties": { "facing": "up", "waterlogged": "false" } }, { - "id": 18655, + "id": 20439, "properties": { "facing": "down", "waterlogged": "true" } }, { - "id": 18656, + "id": 20440, "properties": { "facing": "down", "waterlogged": "false" @@ -99579,7 +111233,7 @@ "states": [ { "default": true, - "id": 5142 + "id": 6582 } ] }, @@ -99599,49 +111253,49 @@ "states": [ { "default": true, - "id": 5159, + "id": 6599, "properties": { "age": "0" } }, { - "id": 5160, + "id": 6600, "properties": { "age": "1" } }, { - "id": 5161, + "id": 6601, "properties": { "age": "2" } }, { - "id": 5162, + "id": 6602, "properties": { "age": "3" } }, { - "id": 5163, + "id": 6603, "properties": { "age": "4" } }, { - "id": 5164, + "id": 6604, "properties": { "age": "5" } }, { - "id": 5165, + "id": 6605, "properties": { "age": "6" } }, { - "id": 5166, + "id": 6606, "properties": { "age": "7" } @@ -99652,7 +111306,7 @@ "states": [ { "default": true, - "id": 19717 + "id": 21501 } ] }, @@ -99660,7 +111314,7 @@ "states": [ { "default": true, - "id": 19716 + "id": 21500 } ] }, @@ -99668,7 +111322,7 @@ "states": [ { "default": true, - "id": 1687 + "id": 2301 } ] }, @@ -99686,21 +111340,21 @@ }, "states": [ { - "id": 11694, + "id": 13478, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11695, + "id": 13479, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11696, + "id": 13480, "properties": { "type": "bottom", "waterlogged": "true" @@ -99708,21 +111362,21 @@ }, { "default": true, - "id": 11697, + "id": 13481, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11698, + "id": 13482, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11699, + "id": 13483, "properties": { "type": "double", "waterlogged": "false" @@ -99756,7 +111410,7 @@ }, "states": [ { - "id": 10870, + "id": 12654, "properties": { "facing": "north", "half": "top", @@ -99765,7 +111419,7 @@ } }, { - "id": 10871, + "id": 12655, "properties": { "facing": "north", "half": "top", @@ -99774,7 +111428,7 @@ } }, { - "id": 10872, + "id": 12656, "properties": { "facing": "north", "half": "top", @@ -99783,7 +111437,7 @@ } }, { - "id": 10873, + "id": 12657, "properties": { "facing": "north", "half": "top", @@ -99792,7 +111446,7 @@ } }, { - "id": 10874, + "id": 12658, "properties": { "facing": "north", "half": "top", @@ -99801,7 +111455,7 @@ } }, { - "id": 10875, + "id": 12659, "properties": { "facing": "north", "half": "top", @@ -99810,7 +111464,7 @@ } }, { - "id": 10876, + "id": 12660, "properties": { "facing": "north", "half": "top", @@ -99819,7 +111473,7 @@ } }, { - "id": 10877, + "id": 12661, "properties": { "facing": "north", "half": "top", @@ -99828,7 +111482,7 @@ } }, { - "id": 10878, + "id": 12662, "properties": { "facing": "north", "half": "top", @@ -99837,7 +111491,7 @@ } }, { - "id": 10879, + "id": 12663, "properties": { "facing": "north", "half": "top", @@ -99846,7 +111500,7 @@ } }, { - "id": 10880, + "id": 12664, "properties": { "facing": "north", "half": "bottom", @@ -99856,7 +111510,7 @@ }, { "default": true, - "id": 10881, + "id": 12665, "properties": { "facing": "north", "half": "bottom", @@ -99865,7 +111519,7 @@ } }, { - "id": 10882, + "id": 12666, "properties": { "facing": "north", "half": "bottom", @@ -99874,7 +111528,7 @@ } }, { - "id": 10883, + "id": 12667, "properties": { "facing": "north", "half": "bottom", @@ -99883,7 +111537,7 @@ } }, { - "id": 10884, + "id": 12668, "properties": { "facing": "north", "half": "bottom", @@ -99892,7 +111546,7 @@ } }, { - "id": 10885, + "id": 12669, "properties": { "facing": "north", "half": "bottom", @@ -99901,7 +111555,7 @@ } }, { - "id": 10886, + "id": 12670, "properties": { "facing": "north", "half": "bottom", @@ -99910,7 +111564,7 @@ } }, { - "id": 10887, + "id": 12671, "properties": { "facing": "north", "half": "bottom", @@ -99919,7 +111573,7 @@ } }, { - "id": 10888, + "id": 12672, "properties": { "facing": "north", "half": "bottom", @@ -99928,7 +111582,7 @@ } }, { - "id": 10889, + "id": 12673, "properties": { "facing": "north", "half": "bottom", @@ -99937,7 +111591,7 @@ } }, { - "id": 10890, + "id": 12674, "properties": { "facing": "south", "half": "top", @@ -99946,7 +111600,7 @@ } }, { - "id": 10891, + "id": 12675, "properties": { "facing": "south", "half": "top", @@ -99955,7 +111609,7 @@ } }, { - "id": 10892, + "id": 12676, "properties": { "facing": "south", "half": "top", @@ -99964,7 +111618,7 @@ } }, { - "id": 10893, + "id": 12677, "properties": { "facing": "south", "half": "top", @@ -99973,7 +111627,7 @@ } }, { - "id": 10894, + "id": 12678, "properties": { "facing": "south", "half": "top", @@ -99982,7 +111636,7 @@ } }, { - "id": 10895, + "id": 12679, "properties": { "facing": "south", "half": "top", @@ -99991,7 +111645,7 @@ } }, { - "id": 10896, + "id": 12680, "properties": { "facing": "south", "half": "top", @@ -100000,7 +111654,7 @@ } }, { - "id": 10897, + "id": 12681, "properties": { "facing": "south", "half": "top", @@ -100009,7 +111663,7 @@ } }, { - "id": 10898, + "id": 12682, "properties": { "facing": "south", "half": "top", @@ -100018,7 +111672,7 @@ } }, { - "id": 10899, + "id": 12683, "properties": { "facing": "south", "half": "top", @@ -100027,7 +111681,7 @@ } }, { - "id": 10900, + "id": 12684, "properties": { "facing": "south", "half": "bottom", @@ -100036,7 +111690,7 @@ } }, { - "id": 10901, + "id": 12685, "properties": { "facing": "south", "half": "bottom", @@ -100045,7 +111699,7 @@ } }, { - "id": 10902, + "id": 12686, "properties": { "facing": "south", "half": "bottom", @@ -100054,7 +111708,7 @@ } }, { - "id": 10903, + "id": 12687, "properties": { "facing": "south", "half": "bottom", @@ -100063,7 +111717,7 @@ } }, { - "id": 10904, + "id": 12688, "properties": { "facing": "south", "half": "bottom", @@ -100072,7 +111726,7 @@ } }, { - "id": 10905, + "id": 12689, "properties": { "facing": "south", "half": "bottom", @@ -100081,7 +111735,7 @@ } }, { - "id": 10906, + "id": 12690, "properties": { "facing": "south", "half": "bottom", @@ -100090,7 +111744,7 @@ } }, { - "id": 10907, + "id": 12691, "properties": { "facing": "south", "half": "bottom", @@ -100099,7 +111753,7 @@ } }, { - "id": 10908, + "id": 12692, "properties": { "facing": "south", "half": "bottom", @@ -100108,7 +111762,7 @@ } }, { - "id": 10909, + "id": 12693, "properties": { "facing": "south", "half": "bottom", @@ -100117,7 +111771,7 @@ } }, { - "id": 10910, + "id": 12694, "properties": { "facing": "west", "half": "top", @@ -100126,7 +111780,7 @@ } }, { - "id": 10911, + "id": 12695, "properties": { "facing": "west", "half": "top", @@ -100135,7 +111789,7 @@ } }, { - "id": 10912, + "id": 12696, "properties": { "facing": "west", "half": "top", @@ -100144,7 +111798,7 @@ } }, { - "id": 10913, + "id": 12697, "properties": { "facing": "west", "half": "top", @@ -100153,7 +111807,7 @@ } }, { - "id": 10914, + "id": 12698, "properties": { "facing": "west", "half": "top", @@ -100162,7 +111816,7 @@ } }, { - "id": 10915, + "id": 12699, "properties": { "facing": "west", "half": "top", @@ -100171,7 +111825,7 @@ } }, { - "id": 10916, + "id": 12700, "properties": { "facing": "west", "half": "top", @@ -100180,7 +111834,7 @@ } }, { - "id": 10917, + "id": 12701, "properties": { "facing": "west", "half": "top", @@ -100189,7 +111843,7 @@ } }, { - "id": 10918, + "id": 12702, "properties": { "facing": "west", "half": "top", @@ -100198,7 +111852,7 @@ } }, { - "id": 10919, + "id": 12703, "properties": { "facing": "west", "half": "top", @@ -100207,7 +111861,7 @@ } }, { - "id": 10920, + "id": 12704, "properties": { "facing": "west", "half": "bottom", @@ -100216,7 +111870,7 @@ } }, { - "id": 10921, + "id": 12705, "properties": { "facing": "west", "half": "bottom", @@ -100225,7 +111879,7 @@ } }, { - "id": 10922, + "id": 12706, "properties": { "facing": "west", "half": "bottom", @@ -100234,7 +111888,7 @@ } }, { - "id": 10923, + "id": 12707, "properties": { "facing": "west", "half": "bottom", @@ -100243,7 +111897,7 @@ } }, { - "id": 10924, + "id": 12708, "properties": { "facing": "west", "half": "bottom", @@ -100252,7 +111906,7 @@ } }, { - "id": 10925, + "id": 12709, "properties": { "facing": "west", "half": "bottom", @@ -100261,7 +111915,7 @@ } }, { - "id": 10926, + "id": 12710, "properties": { "facing": "west", "half": "bottom", @@ -100270,7 +111924,7 @@ } }, { - "id": 10927, + "id": 12711, "properties": { "facing": "west", "half": "bottom", @@ -100279,7 +111933,7 @@ } }, { - "id": 10928, + "id": 12712, "properties": { "facing": "west", "half": "bottom", @@ -100288,7 +111942,7 @@ } }, { - "id": 10929, + "id": 12713, "properties": { "facing": "west", "half": "bottom", @@ -100297,7 +111951,7 @@ } }, { - "id": 10930, + "id": 12714, "properties": { "facing": "east", "half": "top", @@ -100306,7 +111960,7 @@ } }, { - "id": 10931, + "id": 12715, "properties": { "facing": "east", "half": "top", @@ -100315,7 +111969,7 @@ } }, { - "id": 10932, + "id": 12716, "properties": { "facing": "east", "half": "top", @@ -100324,7 +111978,7 @@ } }, { - "id": 10933, + "id": 12717, "properties": { "facing": "east", "half": "top", @@ -100333,7 +111987,7 @@ } }, { - "id": 10934, + "id": 12718, "properties": { "facing": "east", "half": "top", @@ -100342,7 +111996,7 @@ } }, { - "id": 10935, + "id": 12719, "properties": { "facing": "east", "half": "top", @@ -100351,7 +112005,7 @@ } }, { - "id": 10936, + "id": 12720, "properties": { "facing": "east", "half": "top", @@ -100360,7 +112014,7 @@ } }, { - "id": 10937, + "id": 12721, "properties": { "facing": "east", "half": "top", @@ -100369,7 +112023,7 @@ } }, { - "id": 10938, + "id": 12722, "properties": { "facing": "east", "half": "top", @@ -100378,7 +112032,7 @@ } }, { - "id": 10939, + "id": 12723, "properties": { "facing": "east", "half": "top", @@ -100387,7 +112041,7 @@ } }, { - "id": 10940, + "id": 12724, "properties": { "facing": "east", "half": "bottom", @@ -100396,7 +112050,7 @@ } }, { - "id": 10941, + "id": 12725, "properties": { "facing": "east", "half": "bottom", @@ -100405,7 +112059,7 @@ } }, { - "id": 10942, + "id": 12726, "properties": { "facing": "east", "half": "bottom", @@ -100414,7 +112068,7 @@ } }, { - "id": 10943, + "id": 12727, "properties": { "facing": "east", "half": "bottom", @@ -100423,7 +112077,7 @@ } }, { - "id": 10944, + "id": 12728, "properties": { "facing": "east", "half": "bottom", @@ -100432,7 +112086,7 @@ } }, { - "id": 10945, + "id": 12729, "properties": { "facing": "east", "half": "bottom", @@ -100441,7 +112095,7 @@ } }, { - "id": 10946, + "id": 12730, "properties": { "facing": "east", "half": "bottom", @@ -100450,7 +112104,7 @@ } }, { - "id": 10947, + "id": 12731, "properties": { "facing": "east", "half": "bottom", @@ -100459,7 +112113,7 @@ } }, { - "id": 10948, + "id": 12732, "properties": { "facing": "east", "half": "bottom", @@ -100468,7 +112122,7 @@ } }, { - "id": 10949, + "id": 12733, "properties": { "facing": "east", "half": "bottom", @@ -100511,7 +112165,7 @@ }, "states": [ { - "id": 6573, + "id": 8013, "properties": { "east": "none", "north": "none", @@ -100522,7 +112176,7 @@ } }, { - "id": 6574, + "id": 8014, "properties": { "east": "none", "north": "none", @@ -100533,7 +112187,7 @@ } }, { - "id": 6575, + "id": 8015, "properties": { "east": "none", "north": "none", @@ -100545,7 +112199,7 @@ }, { "default": true, - "id": 6576, + "id": 8016, "properties": { "east": "none", "north": "none", @@ -100556,7 +112210,7 @@ } }, { - "id": 6577, + "id": 8017, "properties": { "east": "none", "north": "none", @@ -100567,7 +112221,7 @@ } }, { - "id": 6578, + "id": 8018, "properties": { "east": "none", "north": "none", @@ -100578,7 +112232,7 @@ } }, { - "id": 6579, + "id": 8019, "properties": { "east": "none", "north": "none", @@ -100589,7 +112243,7 @@ } }, { - "id": 6580, + "id": 8020, "properties": { "east": "none", "north": "none", @@ -100600,7 +112254,7 @@ } }, { - "id": 6581, + "id": 8021, "properties": { "east": "none", "north": "none", @@ -100611,7 +112265,7 @@ } }, { - "id": 6582, + "id": 8022, "properties": { "east": "none", "north": "none", @@ -100622,7 +112276,7 @@ } }, { - "id": 6583, + "id": 8023, "properties": { "east": "none", "north": "none", @@ -100633,7 +112287,7 @@ } }, { - "id": 6584, + "id": 8024, "properties": { "east": "none", "north": "none", @@ -100644,7 +112298,7 @@ } }, { - "id": 6585, + "id": 8025, "properties": { "east": "none", "north": "none", @@ -100655,7 +112309,7 @@ } }, { - "id": 6586, + "id": 8026, "properties": { "east": "none", "north": "none", @@ -100666,7 +112320,7 @@ } }, { - "id": 6587, + "id": 8027, "properties": { "east": "none", "north": "none", @@ -100677,7 +112331,7 @@ } }, { - "id": 6588, + "id": 8028, "properties": { "east": "none", "north": "none", @@ -100688,7 +112342,7 @@ } }, { - "id": 6589, + "id": 8029, "properties": { "east": "none", "north": "none", @@ -100699,7 +112353,7 @@ } }, { - "id": 6590, + "id": 8030, "properties": { "east": "none", "north": "none", @@ -100710,7 +112364,7 @@ } }, { - "id": 6591, + "id": 8031, "properties": { "east": "none", "north": "none", @@ -100721,7 +112375,7 @@ } }, { - "id": 6592, + "id": 8032, "properties": { "east": "none", "north": "none", @@ -100732,7 +112386,7 @@ } }, { - "id": 6593, + "id": 8033, "properties": { "east": "none", "north": "none", @@ -100743,7 +112397,7 @@ } }, { - "id": 6594, + "id": 8034, "properties": { "east": "none", "north": "none", @@ -100754,7 +112408,7 @@ } }, { - "id": 6595, + "id": 8035, "properties": { "east": "none", "north": "none", @@ -100765,7 +112419,7 @@ } }, { - "id": 6596, + "id": 8036, "properties": { "east": "none", "north": "none", @@ -100776,7 +112430,7 @@ } }, { - "id": 6597, + "id": 8037, "properties": { "east": "none", "north": "none", @@ -100787,7 +112441,7 @@ } }, { - "id": 6598, + "id": 8038, "properties": { "east": "none", "north": "none", @@ -100798,7 +112452,7 @@ } }, { - "id": 6599, + "id": 8039, "properties": { "east": "none", "north": "none", @@ -100809,7 +112463,7 @@ } }, { - "id": 6600, + "id": 8040, "properties": { "east": "none", "north": "none", @@ -100820,7 +112474,7 @@ } }, { - "id": 6601, + "id": 8041, "properties": { "east": "none", "north": "none", @@ -100831,7 +112485,7 @@ } }, { - "id": 6602, + "id": 8042, "properties": { "east": "none", "north": "none", @@ -100842,7 +112496,7 @@ } }, { - "id": 6603, + "id": 8043, "properties": { "east": "none", "north": "none", @@ -100853,7 +112507,7 @@ } }, { - "id": 6604, + "id": 8044, "properties": { "east": "none", "north": "none", @@ -100864,7 +112518,7 @@ } }, { - "id": 6605, + "id": 8045, "properties": { "east": "none", "north": "none", @@ -100875,7 +112529,7 @@ } }, { - "id": 6606, + "id": 8046, "properties": { "east": "none", "north": "none", @@ -100886,7 +112540,7 @@ } }, { - "id": 6607, + "id": 8047, "properties": { "east": "none", "north": "none", @@ -100897,7 +112551,7 @@ } }, { - "id": 6608, + "id": 8048, "properties": { "east": "none", "north": "none", @@ -100908,7 +112562,7 @@ } }, { - "id": 6609, + "id": 8049, "properties": { "east": "none", "north": "low", @@ -100919,7 +112573,7 @@ } }, { - "id": 6610, + "id": 8050, "properties": { "east": "none", "north": "low", @@ -100930,7 +112584,7 @@ } }, { - "id": 6611, + "id": 8051, "properties": { "east": "none", "north": "low", @@ -100941,7 +112595,7 @@ } }, { - "id": 6612, + "id": 8052, "properties": { "east": "none", "north": "low", @@ -100952,7 +112606,7 @@ } }, { - "id": 6613, + "id": 8053, "properties": { "east": "none", "north": "low", @@ -100963,7 +112617,7 @@ } }, { - "id": 6614, + "id": 8054, "properties": { "east": "none", "north": "low", @@ -100974,7 +112628,7 @@ } }, { - "id": 6615, + "id": 8055, "properties": { "east": "none", "north": "low", @@ -100985,7 +112639,7 @@ } }, { - "id": 6616, + "id": 8056, "properties": { "east": "none", "north": "low", @@ -100996,7 +112650,7 @@ } }, { - "id": 6617, + "id": 8057, "properties": { "east": "none", "north": "low", @@ -101007,7 +112661,7 @@ } }, { - "id": 6618, + "id": 8058, "properties": { "east": "none", "north": "low", @@ -101018,7 +112672,7 @@ } }, { - "id": 6619, + "id": 8059, "properties": { "east": "none", "north": "low", @@ -101029,7 +112683,7 @@ } }, { - "id": 6620, + "id": 8060, "properties": { "east": "none", "north": "low", @@ -101040,7 +112694,7 @@ } }, { - "id": 6621, + "id": 8061, "properties": { "east": "none", "north": "low", @@ -101051,7 +112705,7 @@ } }, { - "id": 6622, + "id": 8062, "properties": { "east": "none", "north": "low", @@ -101062,7 +112716,7 @@ } }, { - "id": 6623, + "id": 8063, "properties": { "east": "none", "north": "low", @@ -101073,7 +112727,7 @@ } }, { - "id": 6624, + "id": 8064, "properties": { "east": "none", "north": "low", @@ -101084,7 +112738,7 @@ } }, { - "id": 6625, + "id": 8065, "properties": { "east": "none", "north": "low", @@ -101095,7 +112749,7 @@ } }, { - "id": 6626, + "id": 8066, "properties": { "east": "none", "north": "low", @@ -101106,7 +112760,7 @@ } }, { - "id": 6627, + "id": 8067, "properties": { "east": "none", "north": "low", @@ -101117,7 +112771,7 @@ } }, { - "id": 6628, + "id": 8068, "properties": { "east": "none", "north": "low", @@ -101128,7 +112782,7 @@ } }, { - "id": 6629, + "id": 8069, "properties": { "east": "none", "north": "low", @@ -101139,7 +112793,7 @@ } }, { - "id": 6630, + "id": 8070, "properties": { "east": "none", "north": "low", @@ -101150,7 +112804,7 @@ } }, { - "id": 6631, + "id": 8071, "properties": { "east": "none", "north": "low", @@ -101161,7 +112815,7 @@ } }, { - "id": 6632, + "id": 8072, "properties": { "east": "none", "north": "low", @@ -101172,7 +112826,7 @@ } }, { - "id": 6633, + "id": 8073, "properties": { "east": "none", "north": "low", @@ -101183,7 +112837,7 @@ } }, { - "id": 6634, + "id": 8074, "properties": { "east": "none", "north": "low", @@ -101194,7 +112848,7 @@ } }, { - "id": 6635, + "id": 8075, "properties": { "east": "none", "north": "low", @@ -101205,7 +112859,7 @@ } }, { - "id": 6636, + "id": 8076, "properties": { "east": "none", "north": "low", @@ -101216,7 +112870,7 @@ } }, { - "id": 6637, + "id": 8077, "properties": { "east": "none", "north": "low", @@ -101227,7 +112881,7 @@ } }, { - "id": 6638, + "id": 8078, "properties": { "east": "none", "north": "low", @@ -101238,7 +112892,7 @@ } }, { - "id": 6639, + "id": 8079, "properties": { "east": "none", "north": "low", @@ -101249,7 +112903,7 @@ } }, { - "id": 6640, + "id": 8080, "properties": { "east": "none", "north": "low", @@ -101260,7 +112914,7 @@ } }, { - "id": 6641, + "id": 8081, "properties": { "east": "none", "north": "low", @@ -101271,7 +112925,7 @@ } }, { - "id": 6642, + "id": 8082, "properties": { "east": "none", "north": "low", @@ -101282,7 +112936,7 @@ } }, { - "id": 6643, + "id": 8083, "properties": { "east": "none", "north": "low", @@ -101293,7 +112947,7 @@ } }, { - "id": 6644, + "id": 8084, "properties": { "east": "none", "north": "low", @@ -101304,7 +112958,7 @@ } }, { - "id": 6645, + "id": 8085, "properties": { "east": "none", "north": "tall", @@ -101315,7 +112969,7 @@ } }, { - "id": 6646, + "id": 8086, "properties": { "east": "none", "north": "tall", @@ -101326,7 +112980,7 @@ } }, { - "id": 6647, + "id": 8087, "properties": { "east": "none", "north": "tall", @@ -101337,7 +112991,7 @@ } }, { - "id": 6648, + "id": 8088, "properties": { "east": "none", "north": "tall", @@ -101348,7 +113002,7 @@ } }, { - "id": 6649, + "id": 8089, "properties": { "east": "none", "north": "tall", @@ -101359,7 +113013,7 @@ } }, { - "id": 6650, + "id": 8090, "properties": { "east": "none", "north": "tall", @@ -101370,7 +113024,7 @@ } }, { - "id": 6651, + "id": 8091, "properties": { "east": "none", "north": "tall", @@ -101381,7 +113035,7 @@ } }, { - "id": 6652, + "id": 8092, "properties": { "east": "none", "north": "tall", @@ -101392,7 +113046,7 @@ } }, { - "id": 6653, + "id": 8093, "properties": { "east": "none", "north": "tall", @@ -101403,7 +113057,7 @@ } }, { - "id": 6654, + "id": 8094, "properties": { "east": "none", "north": "tall", @@ -101414,7 +113068,7 @@ } }, { - "id": 6655, + "id": 8095, "properties": { "east": "none", "north": "tall", @@ -101425,7 +113079,7 @@ } }, { - "id": 6656, + "id": 8096, "properties": { "east": "none", "north": "tall", @@ -101436,7 +113090,7 @@ } }, { - "id": 6657, + "id": 8097, "properties": { "east": "none", "north": "tall", @@ -101447,7 +113101,7 @@ } }, { - "id": 6658, + "id": 8098, "properties": { "east": "none", "north": "tall", @@ -101458,7 +113112,7 @@ } }, { - "id": 6659, + "id": 8099, "properties": { "east": "none", "north": "tall", @@ -101469,7 +113123,7 @@ } }, { - "id": 6660, + "id": 8100, "properties": { "east": "none", "north": "tall", @@ -101480,7 +113134,7 @@ } }, { - "id": 6661, + "id": 8101, "properties": { "east": "none", "north": "tall", @@ -101491,7 +113145,7 @@ } }, { - "id": 6662, + "id": 8102, "properties": { "east": "none", "north": "tall", @@ -101502,7 +113156,7 @@ } }, { - "id": 6663, + "id": 8103, "properties": { "east": "none", "north": "tall", @@ -101513,7 +113167,7 @@ } }, { - "id": 6664, + "id": 8104, "properties": { "east": "none", "north": "tall", @@ -101524,7 +113178,7 @@ } }, { - "id": 6665, + "id": 8105, "properties": { "east": "none", "north": "tall", @@ -101535,7 +113189,7 @@ } }, { - "id": 6666, + "id": 8106, "properties": { "east": "none", "north": "tall", @@ -101546,7 +113200,7 @@ } }, { - "id": 6667, + "id": 8107, "properties": { "east": "none", "north": "tall", @@ -101557,7 +113211,7 @@ } }, { - "id": 6668, + "id": 8108, "properties": { "east": "none", "north": "tall", @@ -101568,7 +113222,7 @@ } }, { - "id": 6669, + "id": 8109, "properties": { "east": "none", "north": "tall", @@ -101579,7 +113233,7 @@ } }, { - "id": 6670, + "id": 8110, "properties": { "east": "none", "north": "tall", @@ -101590,7 +113244,7 @@ } }, { - "id": 6671, + "id": 8111, "properties": { "east": "none", "north": "tall", @@ -101601,7 +113255,7 @@ } }, { - "id": 6672, + "id": 8112, "properties": { "east": "none", "north": "tall", @@ -101612,7 +113266,7 @@ } }, { - "id": 6673, + "id": 8113, "properties": { "east": "none", "north": "tall", @@ -101623,7 +113277,7 @@ } }, { - "id": 6674, + "id": 8114, "properties": { "east": "none", "north": "tall", @@ -101634,7 +113288,7 @@ } }, { - "id": 6675, + "id": 8115, "properties": { "east": "none", "north": "tall", @@ -101645,7 +113299,7 @@ } }, { - "id": 6676, + "id": 8116, "properties": { "east": "none", "north": "tall", @@ -101656,7 +113310,7 @@ } }, { - "id": 6677, + "id": 8117, "properties": { "east": "none", "north": "tall", @@ -101667,7 +113321,7 @@ } }, { - "id": 6678, + "id": 8118, "properties": { "east": "none", "north": "tall", @@ -101678,7 +113332,7 @@ } }, { - "id": 6679, + "id": 8119, "properties": { "east": "none", "north": "tall", @@ -101689,7 +113343,7 @@ } }, { - "id": 6680, + "id": 8120, "properties": { "east": "none", "north": "tall", @@ -101700,7 +113354,7 @@ } }, { - "id": 6681, + "id": 8121, "properties": { "east": "low", "north": "none", @@ -101711,7 +113365,7 @@ } }, { - "id": 6682, + "id": 8122, "properties": { "east": "low", "north": "none", @@ -101722,7 +113376,7 @@ } }, { - "id": 6683, + "id": 8123, "properties": { "east": "low", "north": "none", @@ -101733,7 +113387,7 @@ } }, { - "id": 6684, + "id": 8124, "properties": { "east": "low", "north": "none", @@ -101744,7 +113398,7 @@ } }, { - "id": 6685, + "id": 8125, "properties": { "east": "low", "north": "none", @@ -101755,7 +113409,7 @@ } }, { - "id": 6686, + "id": 8126, "properties": { "east": "low", "north": "none", @@ -101766,7 +113420,7 @@ } }, { - "id": 6687, + "id": 8127, "properties": { "east": "low", "north": "none", @@ -101777,7 +113431,7 @@ } }, { - "id": 6688, + "id": 8128, "properties": { "east": "low", "north": "none", @@ -101788,7 +113442,7 @@ } }, { - "id": 6689, + "id": 8129, "properties": { "east": "low", "north": "none", @@ -101799,7 +113453,7 @@ } }, { - "id": 6690, + "id": 8130, "properties": { "east": "low", "north": "none", @@ -101810,7 +113464,7 @@ } }, { - "id": 6691, + "id": 8131, "properties": { "east": "low", "north": "none", @@ -101821,7 +113475,7 @@ } }, { - "id": 6692, + "id": 8132, "properties": { "east": "low", "north": "none", @@ -101832,7 +113486,7 @@ } }, { - "id": 6693, + "id": 8133, "properties": { "east": "low", "north": "none", @@ -101843,7 +113497,7 @@ } }, { - "id": 6694, + "id": 8134, "properties": { "east": "low", "north": "none", @@ -101854,7 +113508,7 @@ } }, { - "id": 6695, + "id": 8135, "properties": { "east": "low", "north": "none", @@ -101865,7 +113519,7 @@ } }, { - "id": 6696, + "id": 8136, "properties": { "east": "low", "north": "none", @@ -101876,7 +113530,7 @@ } }, { - "id": 6697, + "id": 8137, "properties": { "east": "low", "north": "none", @@ -101887,7 +113541,7 @@ } }, { - "id": 6698, + "id": 8138, "properties": { "east": "low", "north": "none", @@ -101898,7 +113552,7 @@ } }, { - "id": 6699, + "id": 8139, "properties": { "east": "low", "north": "none", @@ -101909,7 +113563,7 @@ } }, { - "id": 6700, + "id": 8140, "properties": { "east": "low", "north": "none", @@ -101920,7 +113574,7 @@ } }, { - "id": 6701, + "id": 8141, "properties": { "east": "low", "north": "none", @@ -101931,7 +113585,7 @@ } }, { - "id": 6702, + "id": 8142, "properties": { "east": "low", "north": "none", @@ -101942,7 +113596,7 @@ } }, { - "id": 6703, + "id": 8143, "properties": { "east": "low", "north": "none", @@ -101953,7 +113607,7 @@ } }, { - "id": 6704, + "id": 8144, "properties": { "east": "low", "north": "none", @@ -101964,7 +113618,7 @@ } }, { - "id": 6705, + "id": 8145, "properties": { "east": "low", "north": "none", @@ -101975,7 +113629,7 @@ } }, { - "id": 6706, + "id": 8146, "properties": { "east": "low", "north": "none", @@ -101986,7 +113640,7 @@ } }, { - "id": 6707, + "id": 8147, "properties": { "east": "low", "north": "none", @@ -101997,7 +113651,7 @@ } }, { - "id": 6708, + "id": 8148, "properties": { "east": "low", "north": "none", @@ -102008,7 +113662,7 @@ } }, { - "id": 6709, + "id": 8149, "properties": { "east": "low", "north": "none", @@ -102019,7 +113673,7 @@ } }, { - "id": 6710, + "id": 8150, "properties": { "east": "low", "north": "none", @@ -102030,7 +113684,7 @@ } }, { - "id": 6711, + "id": 8151, "properties": { "east": "low", "north": "none", @@ -102041,7 +113695,7 @@ } }, { - "id": 6712, + "id": 8152, "properties": { "east": "low", "north": "none", @@ -102052,7 +113706,7 @@ } }, { - "id": 6713, + "id": 8153, "properties": { "east": "low", "north": "none", @@ -102063,7 +113717,7 @@ } }, { - "id": 6714, + "id": 8154, "properties": { "east": "low", "north": "none", @@ -102074,7 +113728,7 @@ } }, { - "id": 6715, + "id": 8155, "properties": { "east": "low", "north": "none", @@ -102085,7 +113739,7 @@ } }, { - "id": 6716, + "id": 8156, "properties": { "east": "low", "north": "none", @@ -102096,7 +113750,7 @@ } }, { - "id": 6717, + "id": 8157, "properties": { "east": "low", "north": "low", @@ -102107,7 +113761,7 @@ } }, { - "id": 6718, + "id": 8158, "properties": { "east": "low", "north": "low", @@ -102118,7 +113772,7 @@ } }, { - "id": 6719, + "id": 8159, "properties": { "east": "low", "north": "low", @@ -102129,7 +113783,7 @@ } }, { - "id": 6720, + "id": 8160, "properties": { "east": "low", "north": "low", @@ -102140,7 +113794,7 @@ } }, { - "id": 6721, + "id": 8161, "properties": { "east": "low", "north": "low", @@ -102151,7 +113805,7 @@ } }, { - "id": 6722, + "id": 8162, "properties": { "east": "low", "north": "low", @@ -102162,7 +113816,7 @@ } }, { - "id": 6723, + "id": 8163, "properties": { "east": "low", "north": "low", @@ -102173,7 +113827,7 @@ } }, { - "id": 6724, + "id": 8164, "properties": { "east": "low", "north": "low", @@ -102184,7 +113838,7 @@ } }, { - "id": 6725, + "id": 8165, "properties": { "east": "low", "north": "low", @@ -102195,7 +113849,7 @@ } }, { - "id": 6726, + "id": 8166, "properties": { "east": "low", "north": "low", @@ -102206,7 +113860,7 @@ } }, { - "id": 6727, + "id": 8167, "properties": { "east": "low", "north": "low", @@ -102217,7 +113871,7 @@ } }, { - "id": 6728, + "id": 8168, "properties": { "east": "low", "north": "low", @@ -102228,7 +113882,7 @@ } }, { - "id": 6729, + "id": 8169, "properties": { "east": "low", "north": "low", @@ -102239,7 +113893,7 @@ } }, { - "id": 6730, + "id": 8170, "properties": { "east": "low", "north": "low", @@ -102250,7 +113904,7 @@ } }, { - "id": 6731, + "id": 8171, "properties": { "east": "low", "north": "low", @@ -102261,7 +113915,7 @@ } }, { - "id": 6732, + "id": 8172, "properties": { "east": "low", "north": "low", @@ -102272,7 +113926,7 @@ } }, { - "id": 6733, + "id": 8173, "properties": { "east": "low", "north": "low", @@ -102283,7 +113937,7 @@ } }, { - "id": 6734, + "id": 8174, "properties": { "east": "low", "north": "low", @@ -102294,7 +113948,7 @@ } }, { - "id": 6735, + "id": 8175, "properties": { "east": "low", "north": "low", @@ -102305,7 +113959,7 @@ } }, { - "id": 6736, + "id": 8176, "properties": { "east": "low", "north": "low", @@ -102316,7 +113970,7 @@ } }, { - "id": 6737, + "id": 8177, "properties": { "east": "low", "north": "low", @@ -102327,7 +113981,7 @@ } }, { - "id": 6738, + "id": 8178, "properties": { "east": "low", "north": "low", @@ -102338,7 +113992,7 @@ } }, { - "id": 6739, + "id": 8179, "properties": { "east": "low", "north": "low", @@ -102349,7 +114003,7 @@ } }, { - "id": 6740, + "id": 8180, "properties": { "east": "low", "north": "low", @@ -102360,7 +114014,7 @@ } }, { - "id": 6741, + "id": 8181, "properties": { "east": "low", "north": "low", @@ -102371,7 +114025,7 @@ } }, { - "id": 6742, + "id": 8182, "properties": { "east": "low", "north": "low", @@ -102382,7 +114036,7 @@ } }, { - "id": 6743, + "id": 8183, "properties": { "east": "low", "north": "low", @@ -102393,7 +114047,7 @@ } }, { - "id": 6744, + "id": 8184, "properties": { "east": "low", "north": "low", @@ -102404,7 +114058,7 @@ } }, { - "id": 6745, + "id": 8185, "properties": { "east": "low", "north": "low", @@ -102415,7 +114069,7 @@ } }, { - "id": 6746, + "id": 8186, "properties": { "east": "low", "north": "low", @@ -102426,7 +114080,7 @@ } }, { - "id": 6747, + "id": 8187, "properties": { "east": "low", "north": "low", @@ -102437,7 +114091,7 @@ } }, { - "id": 6748, + "id": 8188, "properties": { "east": "low", "north": "low", @@ -102448,7 +114102,7 @@ } }, { - "id": 6749, + "id": 8189, "properties": { "east": "low", "north": "low", @@ -102459,7 +114113,7 @@ } }, { - "id": 6750, + "id": 8190, "properties": { "east": "low", "north": "low", @@ -102470,7 +114124,7 @@ } }, { - "id": 6751, + "id": 8191, "properties": { "east": "low", "north": "low", @@ -102481,7 +114135,7 @@ } }, { - "id": 6752, + "id": 8192, "properties": { "east": "low", "north": "low", @@ -102492,7 +114146,7 @@ } }, { - "id": 6753, + "id": 8193, "properties": { "east": "low", "north": "tall", @@ -102503,7 +114157,7 @@ } }, { - "id": 6754, + "id": 8194, "properties": { "east": "low", "north": "tall", @@ -102514,7 +114168,7 @@ } }, { - "id": 6755, + "id": 8195, "properties": { "east": "low", "north": "tall", @@ -102525,7 +114179,7 @@ } }, { - "id": 6756, + "id": 8196, "properties": { "east": "low", "north": "tall", @@ -102536,7 +114190,7 @@ } }, { - "id": 6757, + "id": 8197, "properties": { "east": "low", "north": "tall", @@ -102547,7 +114201,7 @@ } }, { - "id": 6758, + "id": 8198, "properties": { "east": "low", "north": "tall", @@ -102558,7 +114212,7 @@ } }, { - "id": 6759, + "id": 8199, "properties": { "east": "low", "north": "tall", @@ -102569,7 +114223,7 @@ } }, { - "id": 6760, + "id": 8200, "properties": { "east": "low", "north": "tall", @@ -102580,7 +114234,7 @@ } }, { - "id": 6761, + "id": 8201, "properties": { "east": "low", "north": "tall", @@ -102591,7 +114245,7 @@ } }, { - "id": 6762, + "id": 8202, "properties": { "east": "low", "north": "tall", @@ -102602,7 +114256,7 @@ } }, { - "id": 6763, + "id": 8203, "properties": { "east": "low", "north": "tall", @@ -102613,7 +114267,7 @@ } }, { - "id": 6764, + "id": 8204, "properties": { "east": "low", "north": "tall", @@ -102624,7 +114278,7 @@ } }, { - "id": 6765, + "id": 8205, "properties": { "east": "low", "north": "tall", @@ -102635,7 +114289,7 @@ } }, { - "id": 6766, + "id": 8206, "properties": { "east": "low", "north": "tall", @@ -102646,7 +114300,7 @@ } }, { - "id": 6767, + "id": 8207, "properties": { "east": "low", "north": "tall", @@ -102657,7 +114311,7 @@ } }, { - "id": 6768, + "id": 8208, "properties": { "east": "low", "north": "tall", @@ -102668,7 +114322,7 @@ } }, { - "id": 6769, + "id": 8209, "properties": { "east": "low", "north": "tall", @@ -102679,7 +114333,7 @@ } }, { - "id": 6770, + "id": 8210, "properties": { "east": "low", "north": "tall", @@ -102690,7 +114344,7 @@ } }, { - "id": 6771, + "id": 8211, "properties": { "east": "low", "north": "tall", @@ -102701,7 +114355,7 @@ } }, { - "id": 6772, + "id": 8212, "properties": { "east": "low", "north": "tall", @@ -102712,7 +114366,7 @@ } }, { - "id": 6773, + "id": 8213, "properties": { "east": "low", "north": "tall", @@ -102723,7 +114377,7 @@ } }, { - "id": 6774, + "id": 8214, "properties": { "east": "low", "north": "tall", @@ -102734,7 +114388,7 @@ } }, { - "id": 6775, + "id": 8215, "properties": { "east": "low", "north": "tall", @@ -102745,7 +114399,7 @@ } }, { - "id": 6776, + "id": 8216, "properties": { "east": "low", "north": "tall", @@ -102756,7 +114410,7 @@ } }, { - "id": 6777, + "id": 8217, "properties": { "east": "low", "north": "tall", @@ -102767,7 +114421,7 @@ } }, { - "id": 6778, + "id": 8218, "properties": { "east": "low", "north": "tall", @@ -102778,7 +114432,7 @@ } }, { - "id": 6779, + "id": 8219, "properties": { "east": "low", "north": "tall", @@ -102789,7 +114443,7 @@ } }, { - "id": 6780, + "id": 8220, "properties": { "east": "low", "north": "tall", @@ -102800,7 +114454,7 @@ } }, { - "id": 6781, + "id": 8221, "properties": { "east": "low", "north": "tall", @@ -102811,7 +114465,7 @@ } }, { - "id": 6782, + "id": 8222, "properties": { "east": "low", "north": "tall", @@ -102822,7 +114476,7 @@ } }, { - "id": 6783, + "id": 8223, "properties": { "east": "low", "north": "tall", @@ -102833,7 +114487,7 @@ } }, { - "id": 6784, + "id": 8224, "properties": { "east": "low", "north": "tall", @@ -102844,7 +114498,7 @@ } }, { - "id": 6785, + "id": 8225, "properties": { "east": "low", "north": "tall", @@ -102855,7 +114509,7 @@ } }, { - "id": 6786, + "id": 8226, "properties": { "east": "low", "north": "tall", @@ -102866,7 +114520,7 @@ } }, { - "id": 6787, + "id": 8227, "properties": { "east": "low", "north": "tall", @@ -102877,7 +114531,7 @@ } }, { - "id": 6788, + "id": 8228, "properties": { "east": "low", "north": "tall", @@ -102888,7 +114542,7 @@ } }, { - "id": 6789, + "id": 8229, "properties": { "east": "tall", "north": "none", @@ -102899,7 +114553,7 @@ } }, { - "id": 6790, + "id": 8230, "properties": { "east": "tall", "north": "none", @@ -102910,7 +114564,7 @@ } }, { - "id": 6791, + "id": 8231, "properties": { "east": "tall", "north": "none", @@ -102921,7 +114575,7 @@ } }, { - "id": 6792, + "id": 8232, "properties": { "east": "tall", "north": "none", @@ -102932,7 +114586,7 @@ } }, { - "id": 6793, + "id": 8233, "properties": { "east": "tall", "north": "none", @@ -102943,7 +114597,7 @@ } }, { - "id": 6794, + "id": 8234, "properties": { "east": "tall", "north": "none", @@ -102954,7 +114608,7 @@ } }, { - "id": 6795, + "id": 8235, "properties": { "east": "tall", "north": "none", @@ -102965,7 +114619,7 @@ } }, { - "id": 6796, + "id": 8236, "properties": { "east": "tall", "north": "none", @@ -102976,7 +114630,7 @@ } }, { - "id": 6797, + "id": 8237, "properties": { "east": "tall", "north": "none", @@ -102987,7 +114641,7 @@ } }, { - "id": 6798, + "id": 8238, "properties": { "east": "tall", "north": "none", @@ -102998,7 +114652,7 @@ } }, { - "id": 6799, + "id": 8239, "properties": { "east": "tall", "north": "none", @@ -103009,7 +114663,7 @@ } }, { - "id": 6800, + "id": 8240, "properties": { "east": "tall", "north": "none", @@ -103020,7 +114674,7 @@ } }, { - "id": 6801, + "id": 8241, "properties": { "east": "tall", "north": "none", @@ -103031,7 +114685,7 @@ } }, { - "id": 6802, + "id": 8242, "properties": { "east": "tall", "north": "none", @@ -103042,7 +114696,7 @@ } }, { - "id": 6803, + "id": 8243, "properties": { "east": "tall", "north": "none", @@ -103053,7 +114707,7 @@ } }, { - "id": 6804, + "id": 8244, "properties": { "east": "tall", "north": "none", @@ -103064,7 +114718,7 @@ } }, { - "id": 6805, + "id": 8245, "properties": { "east": "tall", "north": "none", @@ -103075,7 +114729,7 @@ } }, { - "id": 6806, + "id": 8246, "properties": { "east": "tall", "north": "none", @@ -103086,7 +114740,7 @@ } }, { - "id": 6807, + "id": 8247, "properties": { "east": "tall", "north": "none", @@ -103097,7 +114751,7 @@ } }, { - "id": 6808, + "id": 8248, "properties": { "east": "tall", "north": "none", @@ -103108,7 +114762,7 @@ } }, { - "id": 6809, + "id": 8249, "properties": { "east": "tall", "north": "none", @@ -103119,7 +114773,7 @@ } }, { - "id": 6810, + "id": 8250, "properties": { "east": "tall", "north": "none", @@ -103130,7 +114784,7 @@ } }, { - "id": 6811, + "id": 8251, "properties": { "east": "tall", "north": "none", @@ -103141,7 +114795,7 @@ } }, { - "id": 6812, + "id": 8252, "properties": { "east": "tall", "north": "none", @@ -103152,7 +114806,7 @@ } }, { - "id": 6813, + "id": 8253, "properties": { "east": "tall", "north": "none", @@ -103163,7 +114817,7 @@ } }, { - "id": 6814, + "id": 8254, "properties": { "east": "tall", "north": "none", @@ -103174,7 +114828,7 @@ } }, { - "id": 6815, + "id": 8255, "properties": { "east": "tall", "north": "none", @@ -103185,7 +114839,7 @@ } }, { - "id": 6816, + "id": 8256, "properties": { "east": "tall", "north": "none", @@ -103196,7 +114850,7 @@ } }, { - "id": 6817, + "id": 8257, "properties": { "east": "tall", "north": "none", @@ -103207,7 +114861,7 @@ } }, { - "id": 6818, + "id": 8258, "properties": { "east": "tall", "north": "none", @@ -103218,7 +114872,7 @@ } }, { - "id": 6819, + "id": 8259, "properties": { "east": "tall", "north": "none", @@ -103229,7 +114883,7 @@ } }, { - "id": 6820, + "id": 8260, "properties": { "east": "tall", "north": "none", @@ -103240,7 +114894,7 @@ } }, { - "id": 6821, + "id": 8261, "properties": { "east": "tall", "north": "none", @@ -103251,7 +114905,7 @@ } }, { - "id": 6822, + "id": 8262, "properties": { "east": "tall", "north": "none", @@ -103262,7 +114916,7 @@ } }, { - "id": 6823, + "id": 8263, "properties": { "east": "tall", "north": "none", @@ -103273,7 +114927,7 @@ } }, { - "id": 6824, + "id": 8264, "properties": { "east": "tall", "north": "none", @@ -103284,7 +114938,7 @@ } }, { - "id": 6825, + "id": 8265, "properties": { "east": "tall", "north": "low", @@ -103295,7 +114949,7 @@ } }, { - "id": 6826, + "id": 8266, "properties": { "east": "tall", "north": "low", @@ -103306,7 +114960,7 @@ } }, { - "id": 6827, + "id": 8267, "properties": { "east": "tall", "north": "low", @@ -103317,7 +114971,7 @@ } }, { - "id": 6828, + "id": 8268, "properties": { "east": "tall", "north": "low", @@ -103328,7 +114982,7 @@ } }, { - "id": 6829, + "id": 8269, "properties": { "east": "tall", "north": "low", @@ -103339,7 +114993,7 @@ } }, { - "id": 6830, + "id": 8270, "properties": { "east": "tall", "north": "low", @@ -103350,7 +115004,7 @@ } }, { - "id": 6831, + "id": 8271, "properties": { "east": "tall", "north": "low", @@ -103361,7 +115015,7 @@ } }, { - "id": 6832, + "id": 8272, "properties": { "east": "tall", "north": "low", @@ -103372,7 +115026,7 @@ } }, { - "id": 6833, + "id": 8273, "properties": { "east": "tall", "north": "low", @@ -103383,7 +115037,7 @@ } }, { - "id": 6834, + "id": 8274, "properties": { "east": "tall", "north": "low", @@ -103394,7 +115048,7 @@ } }, { - "id": 6835, + "id": 8275, "properties": { "east": "tall", "north": "low", @@ -103405,7 +115059,7 @@ } }, { - "id": 6836, + "id": 8276, "properties": { "east": "tall", "north": "low", @@ -103416,7 +115070,7 @@ } }, { - "id": 6837, + "id": 8277, "properties": { "east": "tall", "north": "low", @@ -103427,7 +115081,7 @@ } }, { - "id": 6838, + "id": 8278, "properties": { "east": "tall", "north": "low", @@ -103438,7 +115092,7 @@ } }, { - "id": 6839, + "id": 8279, "properties": { "east": "tall", "north": "low", @@ -103449,7 +115103,7 @@ } }, { - "id": 6840, + "id": 8280, "properties": { "east": "tall", "north": "low", @@ -103460,7 +115114,7 @@ } }, { - "id": 6841, + "id": 8281, "properties": { "east": "tall", "north": "low", @@ -103471,7 +115125,7 @@ } }, { - "id": 6842, + "id": 8282, "properties": { "east": "tall", "north": "low", @@ -103482,7 +115136,7 @@ } }, { - "id": 6843, + "id": 8283, "properties": { "east": "tall", "north": "low", @@ -103493,7 +115147,7 @@ } }, { - "id": 6844, + "id": 8284, "properties": { "east": "tall", "north": "low", @@ -103504,7 +115158,7 @@ } }, { - "id": 6845, + "id": 8285, "properties": { "east": "tall", "north": "low", @@ -103515,7 +115169,7 @@ } }, { - "id": 6846, + "id": 8286, "properties": { "east": "tall", "north": "low", @@ -103526,7 +115180,7 @@ } }, { - "id": 6847, + "id": 8287, "properties": { "east": "tall", "north": "low", @@ -103537,7 +115191,7 @@ } }, { - "id": 6848, + "id": 8288, "properties": { "east": "tall", "north": "low", @@ -103548,7 +115202,7 @@ } }, { - "id": 6849, + "id": 8289, "properties": { "east": "tall", "north": "low", @@ -103559,7 +115213,7 @@ } }, { - "id": 6850, + "id": 8290, "properties": { "east": "tall", "north": "low", @@ -103570,7 +115224,7 @@ } }, { - "id": 6851, + "id": 8291, "properties": { "east": "tall", "north": "low", @@ -103581,7 +115235,7 @@ } }, { - "id": 6852, + "id": 8292, "properties": { "east": "tall", "north": "low", @@ -103592,7 +115246,7 @@ } }, { - "id": 6853, + "id": 8293, "properties": { "east": "tall", "north": "low", @@ -103603,7 +115257,7 @@ } }, { - "id": 6854, + "id": 8294, "properties": { "east": "tall", "north": "low", @@ -103614,7 +115268,7 @@ } }, { - "id": 6855, + "id": 8295, "properties": { "east": "tall", "north": "low", @@ -103625,7 +115279,7 @@ } }, { - "id": 6856, + "id": 8296, "properties": { "east": "tall", "north": "low", @@ -103636,7 +115290,7 @@ } }, { - "id": 6857, + "id": 8297, "properties": { "east": "tall", "north": "low", @@ -103647,7 +115301,7 @@ } }, { - "id": 6858, + "id": 8298, "properties": { "east": "tall", "north": "low", @@ -103658,7 +115312,7 @@ } }, { - "id": 6859, + "id": 8299, "properties": { "east": "tall", "north": "low", @@ -103669,7 +115323,7 @@ } }, { - "id": 6860, + "id": 8300, "properties": { "east": "tall", "north": "low", @@ -103680,7 +115334,7 @@ } }, { - "id": 6861, + "id": 8301, "properties": { "east": "tall", "north": "tall", @@ -103691,7 +115345,7 @@ } }, { - "id": 6862, + "id": 8302, "properties": { "east": "tall", "north": "tall", @@ -103702,7 +115356,7 @@ } }, { - "id": 6863, + "id": 8303, "properties": { "east": "tall", "north": "tall", @@ -103713,7 +115367,7 @@ } }, { - "id": 6864, + "id": 8304, "properties": { "east": "tall", "north": "tall", @@ -103724,7 +115378,7 @@ } }, { - "id": 6865, + "id": 8305, "properties": { "east": "tall", "north": "tall", @@ -103735,7 +115389,7 @@ } }, { - "id": 6866, + "id": 8306, "properties": { "east": "tall", "north": "tall", @@ -103746,7 +115400,7 @@ } }, { - "id": 6867, + "id": 8307, "properties": { "east": "tall", "north": "tall", @@ -103757,7 +115411,7 @@ } }, { - "id": 6868, + "id": 8308, "properties": { "east": "tall", "north": "tall", @@ -103768,7 +115422,7 @@ } }, { - "id": 6869, + "id": 8309, "properties": { "east": "tall", "north": "tall", @@ -103779,7 +115433,7 @@ } }, { - "id": 6870, + "id": 8310, "properties": { "east": "tall", "north": "tall", @@ -103790,7 +115444,7 @@ } }, { - "id": 6871, + "id": 8311, "properties": { "east": "tall", "north": "tall", @@ -103801,7 +115455,7 @@ } }, { - "id": 6872, + "id": 8312, "properties": { "east": "tall", "north": "tall", @@ -103812,7 +115466,7 @@ } }, { - "id": 6873, + "id": 8313, "properties": { "east": "tall", "north": "tall", @@ -103823,7 +115477,7 @@ } }, { - "id": 6874, + "id": 8314, "properties": { "east": "tall", "north": "tall", @@ -103834,7 +115488,7 @@ } }, { - "id": 6875, + "id": 8315, "properties": { "east": "tall", "north": "tall", @@ -103845,7 +115499,7 @@ } }, { - "id": 6876, + "id": 8316, "properties": { "east": "tall", "north": "tall", @@ -103856,7 +115510,7 @@ } }, { - "id": 6877, + "id": 8317, "properties": { "east": "tall", "north": "tall", @@ -103867,7 +115521,7 @@ } }, { - "id": 6878, + "id": 8318, "properties": { "east": "tall", "north": "tall", @@ -103878,7 +115532,7 @@ } }, { - "id": 6879, + "id": 8319, "properties": { "east": "tall", "north": "tall", @@ -103889,7 +115543,7 @@ } }, { - "id": 6880, + "id": 8320, "properties": { "east": "tall", "north": "tall", @@ -103900,7 +115554,7 @@ } }, { - "id": 6881, + "id": 8321, "properties": { "east": "tall", "north": "tall", @@ -103911,7 +115565,7 @@ } }, { - "id": 6882, + "id": 8322, "properties": { "east": "tall", "north": "tall", @@ -103922,7 +115576,7 @@ } }, { - "id": 6883, + "id": 8323, "properties": { "east": "tall", "north": "tall", @@ -103933,7 +115587,7 @@ } }, { - "id": 6884, + "id": 8324, "properties": { "east": "tall", "north": "tall", @@ -103944,7 +115598,7 @@ } }, { - "id": 6885, + "id": 8325, "properties": { "east": "tall", "north": "tall", @@ -103955,7 +115609,7 @@ } }, { - "id": 6886, + "id": 8326, "properties": { "east": "tall", "north": "tall", @@ -103966,7 +115620,7 @@ } }, { - "id": 6887, + "id": 8327, "properties": { "east": "tall", "north": "tall", @@ -103977,7 +115631,7 @@ } }, { - "id": 6888, + "id": 8328, "properties": { "east": "tall", "north": "tall", @@ -103988,7 +115642,7 @@ } }, { - "id": 6889, + "id": 8329, "properties": { "east": "tall", "north": "tall", @@ -103999,7 +115653,7 @@ } }, { - "id": 6890, + "id": 8330, "properties": { "east": "tall", "north": "tall", @@ -104010,7 +115664,7 @@ } }, { - "id": 6891, + "id": 8331, "properties": { "east": "tall", "north": "tall", @@ -104021,7 +115675,7 @@ } }, { - "id": 6892, + "id": 8332, "properties": { "east": "tall", "north": "tall", @@ -104032,7 +115686,7 @@ } }, { - "id": 6893, + "id": 8333, "properties": { "east": "tall", "north": "tall", @@ -104043,7 +115697,7 @@ } }, { - "id": 6894, + "id": 8334, "properties": { "east": "tall", "north": "tall", @@ -104054,7 +115708,7 @@ } }, { - "id": 6895, + "id": 8335, "properties": { "east": "tall", "north": "tall", @@ -104065,7 +115719,7 @@ } }, { - "id": 6896, + "id": 8336, "properties": { "east": "tall", "north": "tall", @@ -104091,21 +115745,21 @@ }, "states": [ { - "id": 11682, + "id": 13466, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11683, + "id": 13467, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11684, + "id": 13468, "properties": { "type": "bottom", "waterlogged": "true" @@ -104113,21 +115767,21 @@ }, { "default": true, - "id": 11685, + "id": 13469, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11686, + "id": 13470, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11687, + "id": 13471, "properties": { "type": "double", "waterlogged": "false" @@ -104161,7 +115815,7 @@ }, "states": [ { - "id": 10710, + "id": 12494, "properties": { "facing": "north", "half": "top", @@ -104170,7 +115824,7 @@ } }, { - "id": 10711, + "id": 12495, "properties": { "facing": "north", "half": "top", @@ -104179,7 +115833,7 @@ } }, { - "id": 10712, + "id": 12496, "properties": { "facing": "north", "half": "top", @@ -104188,7 +115842,7 @@ } }, { - "id": 10713, + "id": 12497, "properties": { "facing": "north", "half": "top", @@ -104197,7 +115851,7 @@ } }, { - "id": 10714, + "id": 12498, "properties": { "facing": "north", "half": "top", @@ -104206,7 +115860,7 @@ } }, { - "id": 10715, + "id": 12499, "properties": { "facing": "north", "half": "top", @@ -104215,7 +115869,7 @@ } }, { - "id": 10716, + "id": 12500, "properties": { "facing": "north", "half": "top", @@ -104224,7 +115878,7 @@ } }, { - "id": 10717, + "id": 12501, "properties": { "facing": "north", "half": "top", @@ -104233,7 +115887,7 @@ } }, { - "id": 10718, + "id": 12502, "properties": { "facing": "north", "half": "top", @@ -104242,7 +115896,7 @@ } }, { - "id": 10719, + "id": 12503, "properties": { "facing": "north", "half": "top", @@ -104251,7 +115905,7 @@ } }, { - "id": 10720, + "id": 12504, "properties": { "facing": "north", "half": "bottom", @@ -104261,7 +115915,7 @@ }, { "default": true, - "id": 10721, + "id": 12505, "properties": { "facing": "north", "half": "bottom", @@ -104270,7 +115924,7 @@ } }, { - "id": 10722, + "id": 12506, "properties": { "facing": "north", "half": "bottom", @@ -104279,7 +115933,7 @@ } }, { - "id": 10723, + "id": 12507, "properties": { "facing": "north", "half": "bottom", @@ -104288,7 +115942,7 @@ } }, { - "id": 10724, + "id": 12508, "properties": { "facing": "north", "half": "bottom", @@ -104297,7 +115951,7 @@ } }, { - "id": 10725, + "id": 12509, "properties": { "facing": "north", "half": "bottom", @@ -104306,7 +115960,7 @@ } }, { - "id": 10726, + "id": 12510, "properties": { "facing": "north", "half": "bottom", @@ -104315,7 +115969,7 @@ } }, { - "id": 10727, + "id": 12511, "properties": { "facing": "north", "half": "bottom", @@ -104324,7 +115978,7 @@ } }, { - "id": 10728, + "id": 12512, "properties": { "facing": "north", "half": "bottom", @@ -104333,7 +115987,7 @@ } }, { - "id": 10729, + "id": 12513, "properties": { "facing": "north", "half": "bottom", @@ -104342,7 +115996,7 @@ } }, { - "id": 10730, + "id": 12514, "properties": { "facing": "south", "half": "top", @@ -104351,7 +116005,7 @@ } }, { - "id": 10731, + "id": 12515, "properties": { "facing": "south", "half": "top", @@ -104360,7 +116014,7 @@ } }, { - "id": 10732, + "id": 12516, "properties": { "facing": "south", "half": "top", @@ -104369,7 +116023,7 @@ } }, { - "id": 10733, + "id": 12517, "properties": { "facing": "south", "half": "top", @@ -104378,7 +116032,7 @@ } }, { - "id": 10734, + "id": 12518, "properties": { "facing": "south", "half": "top", @@ -104387,7 +116041,7 @@ } }, { - "id": 10735, + "id": 12519, "properties": { "facing": "south", "half": "top", @@ -104396,7 +116050,7 @@ } }, { - "id": 10736, + "id": 12520, "properties": { "facing": "south", "half": "top", @@ -104405,7 +116059,7 @@ } }, { - "id": 10737, + "id": 12521, "properties": { "facing": "south", "half": "top", @@ -104414,7 +116068,7 @@ } }, { - "id": 10738, + "id": 12522, "properties": { "facing": "south", "half": "top", @@ -104423,7 +116077,7 @@ } }, { - "id": 10739, + "id": 12523, "properties": { "facing": "south", "half": "top", @@ -104432,7 +116086,7 @@ } }, { - "id": 10740, + "id": 12524, "properties": { "facing": "south", "half": "bottom", @@ -104441,7 +116095,7 @@ } }, { - "id": 10741, + "id": 12525, "properties": { "facing": "south", "half": "bottom", @@ -104450,7 +116104,7 @@ } }, { - "id": 10742, + "id": 12526, "properties": { "facing": "south", "half": "bottom", @@ -104459,7 +116113,7 @@ } }, { - "id": 10743, + "id": 12527, "properties": { "facing": "south", "half": "bottom", @@ -104468,7 +116122,7 @@ } }, { - "id": 10744, + "id": 12528, "properties": { "facing": "south", "half": "bottom", @@ -104477,7 +116131,7 @@ } }, { - "id": 10745, + "id": 12529, "properties": { "facing": "south", "half": "bottom", @@ -104486,7 +116140,7 @@ } }, { - "id": 10746, + "id": 12530, "properties": { "facing": "south", "half": "bottom", @@ -104495,7 +116149,7 @@ } }, { - "id": 10747, + "id": 12531, "properties": { "facing": "south", "half": "bottom", @@ -104504,7 +116158,7 @@ } }, { - "id": 10748, + "id": 12532, "properties": { "facing": "south", "half": "bottom", @@ -104513,7 +116167,7 @@ } }, { - "id": 10749, + "id": 12533, "properties": { "facing": "south", "half": "bottom", @@ -104522,7 +116176,7 @@ } }, { - "id": 10750, + "id": 12534, "properties": { "facing": "west", "half": "top", @@ -104531,7 +116185,7 @@ } }, { - "id": 10751, + "id": 12535, "properties": { "facing": "west", "half": "top", @@ -104540,7 +116194,7 @@ } }, { - "id": 10752, + "id": 12536, "properties": { "facing": "west", "half": "top", @@ -104549,7 +116203,7 @@ } }, { - "id": 10753, + "id": 12537, "properties": { "facing": "west", "half": "top", @@ -104558,7 +116212,7 @@ } }, { - "id": 10754, + "id": 12538, "properties": { "facing": "west", "half": "top", @@ -104567,7 +116221,7 @@ } }, { - "id": 10755, + "id": 12539, "properties": { "facing": "west", "half": "top", @@ -104576,7 +116230,7 @@ } }, { - "id": 10756, + "id": 12540, "properties": { "facing": "west", "half": "top", @@ -104585,7 +116239,7 @@ } }, { - "id": 10757, + "id": 12541, "properties": { "facing": "west", "half": "top", @@ -104594,7 +116248,7 @@ } }, { - "id": 10758, + "id": 12542, "properties": { "facing": "west", "half": "top", @@ -104603,7 +116257,7 @@ } }, { - "id": 10759, + "id": 12543, "properties": { "facing": "west", "half": "top", @@ -104612,7 +116266,7 @@ } }, { - "id": 10760, + "id": 12544, "properties": { "facing": "west", "half": "bottom", @@ -104621,7 +116275,7 @@ } }, { - "id": 10761, + "id": 12545, "properties": { "facing": "west", "half": "bottom", @@ -104630,7 +116284,7 @@ } }, { - "id": 10762, + "id": 12546, "properties": { "facing": "west", "half": "bottom", @@ -104639,7 +116293,7 @@ } }, { - "id": 10763, + "id": 12547, "properties": { "facing": "west", "half": "bottom", @@ -104648,7 +116302,7 @@ } }, { - "id": 10764, + "id": 12548, "properties": { "facing": "west", "half": "bottom", @@ -104657,7 +116311,7 @@ } }, { - "id": 10765, + "id": 12549, "properties": { "facing": "west", "half": "bottom", @@ -104666,7 +116320,7 @@ } }, { - "id": 10766, + "id": 12550, "properties": { "facing": "west", "half": "bottom", @@ -104675,7 +116329,7 @@ } }, { - "id": 10767, + "id": 12551, "properties": { "facing": "west", "half": "bottom", @@ -104684,7 +116338,7 @@ } }, { - "id": 10768, + "id": 12552, "properties": { "facing": "west", "half": "bottom", @@ -104693,7 +116347,7 @@ } }, { - "id": 10769, + "id": 12553, "properties": { "facing": "west", "half": "bottom", @@ -104702,7 +116356,7 @@ } }, { - "id": 10770, + "id": 12554, "properties": { "facing": "east", "half": "top", @@ -104711,7 +116365,7 @@ } }, { - "id": 10771, + "id": 12555, "properties": { "facing": "east", "half": "top", @@ -104720,7 +116374,7 @@ } }, { - "id": 10772, + "id": 12556, "properties": { "facing": "east", "half": "top", @@ -104729,7 +116383,7 @@ } }, { - "id": 10773, + "id": 12557, "properties": { "facing": "east", "half": "top", @@ -104738,7 +116392,7 @@ } }, { - "id": 10774, + "id": 12558, "properties": { "facing": "east", "half": "top", @@ -104747,7 +116401,7 @@ } }, { - "id": 10775, + "id": 12559, "properties": { "facing": "east", "half": "top", @@ -104756,7 +116410,7 @@ } }, { - "id": 10776, + "id": 12560, "properties": { "facing": "east", "half": "top", @@ -104765,7 +116419,7 @@ } }, { - "id": 10777, + "id": 12561, "properties": { "facing": "east", "half": "top", @@ -104774,7 +116428,7 @@ } }, { - "id": 10778, + "id": 12562, "properties": { "facing": "east", "half": "top", @@ -104783,7 +116437,7 @@ } }, { - "id": 10779, + "id": 12563, "properties": { "facing": "east", "half": "top", @@ -104792,7 +116446,7 @@ } }, { - "id": 10780, + "id": 12564, "properties": { "facing": "east", "half": "bottom", @@ -104801,7 +116455,7 @@ } }, { - "id": 10781, + "id": 12565, "properties": { "facing": "east", "half": "bottom", @@ -104810,7 +116464,7 @@ } }, { - "id": 10782, + "id": 12566, "properties": { "facing": "east", "half": "bottom", @@ -104819,7 +116473,7 @@ } }, { - "id": 10783, + "id": 12567, "properties": { "facing": "east", "half": "bottom", @@ -104828,7 +116482,7 @@ } }, { - "id": 10784, + "id": 12568, "properties": { "facing": "east", "half": "bottom", @@ -104837,7 +116491,7 @@ } }, { - "id": 10785, + "id": 12569, "properties": { "facing": "east", "half": "bottom", @@ -104846,7 +116500,7 @@ } }, { - "id": 10786, + "id": 12570, "properties": { "facing": "east", "half": "bottom", @@ -104855,7 +116509,7 @@ } }, { - "id": 10787, + "id": 12571, "properties": { "facing": "east", "half": "bottom", @@ -104864,7 +116518,7 @@ } }, { - "id": 10788, + "id": 12572, "properties": { "facing": "east", "half": "bottom", @@ -104873,7 +116527,7 @@ } }, { - "id": 10789, + "id": 12573, "properties": { "facing": "east", "half": "bottom", @@ -104916,7 +116570,7 @@ }, "states": [ { - "id": 12720, + "id": 14504, "properties": { "east": "none", "north": "none", @@ -104927,7 +116581,7 @@ } }, { - "id": 12721, + "id": 14505, "properties": { "east": "none", "north": "none", @@ -104938,7 +116592,7 @@ } }, { - "id": 12722, + "id": 14506, "properties": { "east": "none", "north": "none", @@ -104950,7 +116604,7 @@ }, { "default": true, - "id": 12723, + "id": 14507, "properties": { "east": "none", "north": "none", @@ -104961,7 +116615,7 @@ } }, { - "id": 12724, + "id": 14508, "properties": { "east": "none", "north": "none", @@ -104972,7 +116626,7 @@ } }, { - "id": 12725, + "id": 14509, "properties": { "east": "none", "north": "none", @@ -104983,7 +116637,7 @@ } }, { - "id": 12726, + "id": 14510, "properties": { "east": "none", "north": "none", @@ -104994,7 +116648,7 @@ } }, { - "id": 12727, + "id": 14511, "properties": { "east": "none", "north": "none", @@ -105005,7 +116659,7 @@ } }, { - "id": 12728, + "id": 14512, "properties": { "east": "none", "north": "none", @@ -105016,7 +116670,7 @@ } }, { - "id": 12729, + "id": 14513, "properties": { "east": "none", "north": "none", @@ -105027,7 +116681,7 @@ } }, { - "id": 12730, + "id": 14514, "properties": { "east": "none", "north": "none", @@ -105038,7 +116692,7 @@ } }, { - "id": 12731, + "id": 14515, "properties": { "east": "none", "north": "none", @@ -105049,7 +116703,7 @@ } }, { - "id": 12732, + "id": 14516, "properties": { "east": "none", "north": "none", @@ -105060,7 +116714,7 @@ } }, { - "id": 12733, + "id": 14517, "properties": { "east": "none", "north": "none", @@ -105071,7 +116725,7 @@ } }, { - "id": 12734, + "id": 14518, "properties": { "east": "none", "north": "none", @@ -105082,7 +116736,7 @@ } }, { - "id": 12735, + "id": 14519, "properties": { "east": "none", "north": "none", @@ -105093,7 +116747,7 @@ } }, { - "id": 12736, + "id": 14520, "properties": { "east": "none", "north": "none", @@ -105104,7 +116758,7 @@ } }, { - "id": 12737, + "id": 14521, "properties": { "east": "none", "north": "none", @@ -105115,7 +116769,7 @@ } }, { - "id": 12738, + "id": 14522, "properties": { "east": "none", "north": "none", @@ -105126,7 +116780,7 @@ } }, { - "id": 12739, + "id": 14523, "properties": { "east": "none", "north": "none", @@ -105137,7 +116791,7 @@ } }, { - "id": 12740, + "id": 14524, "properties": { "east": "none", "north": "none", @@ -105148,7 +116802,7 @@ } }, { - "id": 12741, + "id": 14525, "properties": { "east": "none", "north": "none", @@ -105159,7 +116813,7 @@ } }, { - "id": 12742, + "id": 14526, "properties": { "east": "none", "north": "none", @@ -105170,7 +116824,7 @@ } }, { - "id": 12743, + "id": 14527, "properties": { "east": "none", "north": "none", @@ -105181,7 +116835,7 @@ } }, { - "id": 12744, + "id": 14528, "properties": { "east": "none", "north": "none", @@ -105192,7 +116846,7 @@ } }, { - "id": 12745, + "id": 14529, "properties": { "east": "none", "north": "none", @@ -105203,7 +116857,7 @@ } }, { - "id": 12746, + "id": 14530, "properties": { "east": "none", "north": "none", @@ -105214,7 +116868,7 @@ } }, { - "id": 12747, + "id": 14531, "properties": { "east": "none", "north": "none", @@ -105225,7 +116879,7 @@ } }, { - "id": 12748, + "id": 14532, "properties": { "east": "none", "north": "none", @@ -105236,7 +116890,7 @@ } }, { - "id": 12749, + "id": 14533, "properties": { "east": "none", "north": "none", @@ -105247,7 +116901,7 @@ } }, { - "id": 12750, + "id": 14534, "properties": { "east": "none", "north": "none", @@ -105258,7 +116912,7 @@ } }, { - "id": 12751, + "id": 14535, "properties": { "east": "none", "north": "none", @@ -105269,7 +116923,7 @@ } }, { - "id": 12752, + "id": 14536, "properties": { "east": "none", "north": "none", @@ -105280,7 +116934,7 @@ } }, { - "id": 12753, + "id": 14537, "properties": { "east": "none", "north": "none", @@ -105291,7 +116945,7 @@ } }, { - "id": 12754, + "id": 14538, "properties": { "east": "none", "north": "none", @@ -105302,7 +116956,7 @@ } }, { - "id": 12755, + "id": 14539, "properties": { "east": "none", "north": "none", @@ -105313,7 +116967,7 @@ } }, { - "id": 12756, + "id": 14540, "properties": { "east": "none", "north": "low", @@ -105324,7 +116978,7 @@ } }, { - "id": 12757, + "id": 14541, "properties": { "east": "none", "north": "low", @@ -105335,7 +116989,7 @@ } }, { - "id": 12758, + "id": 14542, "properties": { "east": "none", "north": "low", @@ -105346,7 +117000,7 @@ } }, { - "id": 12759, + "id": 14543, "properties": { "east": "none", "north": "low", @@ -105357,7 +117011,7 @@ } }, { - "id": 12760, + "id": 14544, "properties": { "east": "none", "north": "low", @@ -105368,7 +117022,7 @@ } }, { - "id": 12761, + "id": 14545, "properties": { "east": "none", "north": "low", @@ -105379,7 +117033,7 @@ } }, { - "id": 12762, + "id": 14546, "properties": { "east": "none", "north": "low", @@ -105390,7 +117044,7 @@ } }, { - "id": 12763, + "id": 14547, "properties": { "east": "none", "north": "low", @@ -105401,7 +117055,7 @@ } }, { - "id": 12764, + "id": 14548, "properties": { "east": "none", "north": "low", @@ -105412,7 +117066,7 @@ } }, { - "id": 12765, + "id": 14549, "properties": { "east": "none", "north": "low", @@ -105423,7 +117077,7 @@ } }, { - "id": 12766, + "id": 14550, "properties": { "east": "none", "north": "low", @@ -105434,7 +117088,7 @@ } }, { - "id": 12767, + "id": 14551, "properties": { "east": "none", "north": "low", @@ -105445,7 +117099,7 @@ } }, { - "id": 12768, + "id": 14552, "properties": { "east": "none", "north": "low", @@ -105456,7 +117110,7 @@ } }, { - "id": 12769, + "id": 14553, "properties": { "east": "none", "north": "low", @@ -105467,7 +117121,7 @@ } }, { - "id": 12770, + "id": 14554, "properties": { "east": "none", "north": "low", @@ -105478,7 +117132,7 @@ } }, { - "id": 12771, + "id": 14555, "properties": { "east": "none", "north": "low", @@ -105489,7 +117143,7 @@ } }, { - "id": 12772, + "id": 14556, "properties": { "east": "none", "north": "low", @@ -105500,7 +117154,7 @@ } }, { - "id": 12773, + "id": 14557, "properties": { "east": "none", "north": "low", @@ -105511,7 +117165,7 @@ } }, { - "id": 12774, + "id": 14558, "properties": { "east": "none", "north": "low", @@ -105522,7 +117176,7 @@ } }, { - "id": 12775, + "id": 14559, "properties": { "east": "none", "north": "low", @@ -105533,7 +117187,7 @@ } }, { - "id": 12776, + "id": 14560, "properties": { "east": "none", "north": "low", @@ -105544,7 +117198,7 @@ } }, { - "id": 12777, + "id": 14561, "properties": { "east": "none", "north": "low", @@ -105555,7 +117209,7 @@ } }, { - "id": 12778, + "id": 14562, "properties": { "east": "none", "north": "low", @@ -105566,7 +117220,7 @@ } }, { - "id": 12779, + "id": 14563, "properties": { "east": "none", "north": "low", @@ -105577,7 +117231,7 @@ } }, { - "id": 12780, + "id": 14564, "properties": { "east": "none", "north": "low", @@ -105588,7 +117242,7 @@ } }, { - "id": 12781, + "id": 14565, "properties": { "east": "none", "north": "low", @@ -105599,7 +117253,7 @@ } }, { - "id": 12782, + "id": 14566, "properties": { "east": "none", "north": "low", @@ -105610,7 +117264,7 @@ } }, { - "id": 12783, + "id": 14567, "properties": { "east": "none", "north": "low", @@ -105621,7 +117275,7 @@ } }, { - "id": 12784, + "id": 14568, "properties": { "east": "none", "north": "low", @@ -105632,7 +117286,7 @@ } }, { - "id": 12785, + "id": 14569, "properties": { "east": "none", "north": "low", @@ -105643,7 +117297,7 @@ } }, { - "id": 12786, + "id": 14570, "properties": { "east": "none", "north": "low", @@ -105654,7 +117308,7 @@ } }, { - "id": 12787, + "id": 14571, "properties": { "east": "none", "north": "low", @@ -105665,7 +117319,7 @@ } }, { - "id": 12788, + "id": 14572, "properties": { "east": "none", "north": "low", @@ -105676,7 +117330,7 @@ } }, { - "id": 12789, + "id": 14573, "properties": { "east": "none", "north": "low", @@ -105687,7 +117341,7 @@ } }, { - "id": 12790, + "id": 14574, "properties": { "east": "none", "north": "low", @@ -105698,7 +117352,7 @@ } }, { - "id": 12791, + "id": 14575, "properties": { "east": "none", "north": "low", @@ -105709,7 +117363,7 @@ } }, { - "id": 12792, + "id": 14576, "properties": { "east": "none", "north": "tall", @@ -105720,7 +117374,7 @@ } }, { - "id": 12793, + "id": 14577, "properties": { "east": "none", "north": "tall", @@ -105731,7 +117385,7 @@ } }, { - "id": 12794, + "id": 14578, "properties": { "east": "none", "north": "tall", @@ -105742,7 +117396,7 @@ } }, { - "id": 12795, + "id": 14579, "properties": { "east": "none", "north": "tall", @@ -105753,7 +117407,7 @@ } }, { - "id": 12796, + "id": 14580, "properties": { "east": "none", "north": "tall", @@ -105764,7 +117418,7 @@ } }, { - "id": 12797, + "id": 14581, "properties": { "east": "none", "north": "tall", @@ -105775,7 +117429,7 @@ } }, { - "id": 12798, + "id": 14582, "properties": { "east": "none", "north": "tall", @@ -105786,7 +117440,7 @@ } }, { - "id": 12799, + "id": 14583, "properties": { "east": "none", "north": "tall", @@ -105797,7 +117451,7 @@ } }, { - "id": 12800, + "id": 14584, "properties": { "east": "none", "north": "tall", @@ -105808,7 +117462,7 @@ } }, { - "id": 12801, + "id": 14585, "properties": { "east": "none", "north": "tall", @@ -105819,7 +117473,7 @@ } }, { - "id": 12802, + "id": 14586, "properties": { "east": "none", "north": "tall", @@ -105830,7 +117484,7 @@ } }, { - "id": 12803, + "id": 14587, "properties": { "east": "none", "north": "tall", @@ -105841,7 +117495,7 @@ } }, { - "id": 12804, + "id": 14588, "properties": { "east": "none", "north": "tall", @@ -105852,7 +117506,7 @@ } }, { - "id": 12805, + "id": 14589, "properties": { "east": "none", "north": "tall", @@ -105863,7 +117517,7 @@ } }, { - "id": 12806, + "id": 14590, "properties": { "east": "none", "north": "tall", @@ -105874,7 +117528,7 @@ } }, { - "id": 12807, + "id": 14591, "properties": { "east": "none", "north": "tall", @@ -105885,7 +117539,7 @@ } }, { - "id": 12808, + "id": 14592, "properties": { "east": "none", "north": "tall", @@ -105896,7 +117550,7 @@ } }, { - "id": 12809, + "id": 14593, "properties": { "east": "none", "north": "tall", @@ -105907,7 +117561,7 @@ } }, { - "id": 12810, + "id": 14594, "properties": { "east": "none", "north": "tall", @@ -105918,7 +117572,7 @@ } }, { - "id": 12811, + "id": 14595, "properties": { "east": "none", "north": "tall", @@ -105929,7 +117583,7 @@ } }, { - "id": 12812, + "id": 14596, "properties": { "east": "none", "north": "tall", @@ -105940,7 +117594,7 @@ } }, { - "id": 12813, + "id": 14597, "properties": { "east": "none", "north": "tall", @@ -105951,7 +117605,7 @@ } }, { - "id": 12814, + "id": 14598, "properties": { "east": "none", "north": "tall", @@ -105962,7 +117616,7 @@ } }, { - "id": 12815, + "id": 14599, "properties": { "east": "none", "north": "tall", @@ -105973,7 +117627,7 @@ } }, { - "id": 12816, + "id": 14600, "properties": { "east": "none", "north": "tall", @@ -105984,7 +117638,7 @@ } }, { - "id": 12817, + "id": 14601, "properties": { "east": "none", "north": "tall", @@ -105995,7 +117649,7 @@ } }, { - "id": 12818, + "id": 14602, "properties": { "east": "none", "north": "tall", @@ -106006,7 +117660,7 @@ } }, { - "id": 12819, + "id": 14603, "properties": { "east": "none", "north": "tall", @@ -106017,7 +117671,7 @@ } }, { - "id": 12820, + "id": 14604, "properties": { "east": "none", "north": "tall", @@ -106028,7 +117682,7 @@ } }, { - "id": 12821, + "id": 14605, "properties": { "east": "none", "north": "tall", @@ -106039,7 +117693,7 @@ } }, { - "id": 12822, + "id": 14606, "properties": { "east": "none", "north": "tall", @@ -106050,7 +117704,7 @@ } }, { - "id": 12823, + "id": 14607, "properties": { "east": "none", "north": "tall", @@ -106061,7 +117715,7 @@ } }, { - "id": 12824, + "id": 14608, "properties": { "east": "none", "north": "tall", @@ -106072,7 +117726,7 @@ } }, { - "id": 12825, + "id": 14609, "properties": { "east": "none", "north": "tall", @@ -106083,7 +117737,7 @@ } }, { - "id": 12826, + "id": 14610, "properties": { "east": "none", "north": "tall", @@ -106094,7 +117748,7 @@ } }, { - "id": 12827, + "id": 14611, "properties": { "east": "none", "north": "tall", @@ -106105,7 +117759,7 @@ } }, { - "id": 12828, + "id": 14612, "properties": { "east": "low", "north": "none", @@ -106116,7 +117770,7 @@ } }, { - "id": 12829, + "id": 14613, "properties": { "east": "low", "north": "none", @@ -106127,7 +117781,7 @@ } }, { - "id": 12830, + "id": 14614, "properties": { "east": "low", "north": "none", @@ -106138,7 +117792,7 @@ } }, { - "id": 12831, + "id": 14615, "properties": { "east": "low", "north": "none", @@ -106149,7 +117803,7 @@ } }, { - "id": 12832, + "id": 14616, "properties": { "east": "low", "north": "none", @@ -106160,7 +117814,7 @@ } }, { - "id": 12833, + "id": 14617, "properties": { "east": "low", "north": "none", @@ -106171,7 +117825,7 @@ } }, { - "id": 12834, + "id": 14618, "properties": { "east": "low", "north": "none", @@ -106182,7 +117836,7 @@ } }, { - "id": 12835, + "id": 14619, "properties": { "east": "low", "north": "none", @@ -106193,7 +117847,7 @@ } }, { - "id": 12836, + "id": 14620, "properties": { "east": "low", "north": "none", @@ -106204,7 +117858,7 @@ } }, { - "id": 12837, + "id": 14621, "properties": { "east": "low", "north": "none", @@ -106215,7 +117869,7 @@ } }, { - "id": 12838, + "id": 14622, "properties": { "east": "low", "north": "none", @@ -106226,7 +117880,7 @@ } }, { - "id": 12839, + "id": 14623, "properties": { "east": "low", "north": "none", @@ -106237,7 +117891,7 @@ } }, { - "id": 12840, + "id": 14624, "properties": { "east": "low", "north": "none", @@ -106248,7 +117902,7 @@ } }, { - "id": 12841, + "id": 14625, "properties": { "east": "low", "north": "none", @@ -106259,7 +117913,7 @@ } }, { - "id": 12842, + "id": 14626, "properties": { "east": "low", "north": "none", @@ -106270,7 +117924,7 @@ } }, { - "id": 12843, + "id": 14627, "properties": { "east": "low", "north": "none", @@ -106281,7 +117935,7 @@ } }, { - "id": 12844, + "id": 14628, "properties": { "east": "low", "north": "none", @@ -106292,7 +117946,7 @@ } }, { - "id": 12845, + "id": 14629, "properties": { "east": "low", "north": "none", @@ -106303,7 +117957,7 @@ } }, { - "id": 12846, + "id": 14630, "properties": { "east": "low", "north": "none", @@ -106314,7 +117968,7 @@ } }, { - "id": 12847, + "id": 14631, "properties": { "east": "low", "north": "none", @@ -106325,7 +117979,7 @@ } }, { - "id": 12848, + "id": 14632, "properties": { "east": "low", "north": "none", @@ -106336,7 +117990,7 @@ } }, { - "id": 12849, + "id": 14633, "properties": { "east": "low", "north": "none", @@ -106347,7 +118001,7 @@ } }, { - "id": 12850, + "id": 14634, "properties": { "east": "low", "north": "none", @@ -106358,7 +118012,7 @@ } }, { - "id": 12851, + "id": 14635, "properties": { "east": "low", "north": "none", @@ -106369,7 +118023,7 @@ } }, { - "id": 12852, + "id": 14636, "properties": { "east": "low", "north": "none", @@ -106380,7 +118034,7 @@ } }, { - "id": 12853, + "id": 14637, "properties": { "east": "low", "north": "none", @@ -106391,7 +118045,7 @@ } }, { - "id": 12854, + "id": 14638, "properties": { "east": "low", "north": "none", @@ -106402,7 +118056,7 @@ } }, { - "id": 12855, + "id": 14639, "properties": { "east": "low", "north": "none", @@ -106413,7 +118067,7 @@ } }, { - "id": 12856, + "id": 14640, "properties": { "east": "low", "north": "none", @@ -106424,7 +118078,7 @@ } }, { - "id": 12857, + "id": 14641, "properties": { "east": "low", "north": "none", @@ -106435,7 +118089,7 @@ } }, { - "id": 12858, + "id": 14642, "properties": { "east": "low", "north": "none", @@ -106446,7 +118100,7 @@ } }, { - "id": 12859, + "id": 14643, "properties": { "east": "low", "north": "none", @@ -106457,7 +118111,7 @@ } }, { - "id": 12860, + "id": 14644, "properties": { "east": "low", "north": "none", @@ -106468,7 +118122,7 @@ } }, { - "id": 12861, + "id": 14645, "properties": { "east": "low", "north": "none", @@ -106479,7 +118133,7 @@ } }, { - "id": 12862, + "id": 14646, "properties": { "east": "low", "north": "none", @@ -106490,7 +118144,7 @@ } }, { - "id": 12863, + "id": 14647, "properties": { "east": "low", "north": "none", @@ -106501,7 +118155,7 @@ } }, { - "id": 12864, + "id": 14648, "properties": { "east": "low", "north": "low", @@ -106512,7 +118166,7 @@ } }, { - "id": 12865, + "id": 14649, "properties": { "east": "low", "north": "low", @@ -106523,7 +118177,7 @@ } }, { - "id": 12866, + "id": 14650, "properties": { "east": "low", "north": "low", @@ -106534,7 +118188,7 @@ } }, { - "id": 12867, + "id": 14651, "properties": { "east": "low", "north": "low", @@ -106545,7 +118199,7 @@ } }, { - "id": 12868, + "id": 14652, "properties": { "east": "low", "north": "low", @@ -106556,7 +118210,7 @@ } }, { - "id": 12869, + "id": 14653, "properties": { "east": "low", "north": "low", @@ -106567,7 +118221,7 @@ } }, { - "id": 12870, + "id": 14654, "properties": { "east": "low", "north": "low", @@ -106578,7 +118232,7 @@ } }, { - "id": 12871, + "id": 14655, "properties": { "east": "low", "north": "low", @@ -106589,7 +118243,7 @@ } }, { - "id": 12872, + "id": 14656, "properties": { "east": "low", "north": "low", @@ -106600,7 +118254,7 @@ } }, { - "id": 12873, + "id": 14657, "properties": { "east": "low", "north": "low", @@ -106611,7 +118265,7 @@ } }, { - "id": 12874, + "id": 14658, "properties": { "east": "low", "north": "low", @@ -106622,7 +118276,7 @@ } }, { - "id": 12875, + "id": 14659, "properties": { "east": "low", "north": "low", @@ -106633,7 +118287,7 @@ } }, { - "id": 12876, + "id": 14660, "properties": { "east": "low", "north": "low", @@ -106644,7 +118298,7 @@ } }, { - "id": 12877, + "id": 14661, "properties": { "east": "low", "north": "low", @@ -106655,7 +118309,7 @@ } }, { - "id": 12878, + "id": 14662, "properties": { "east": "low", "north": "low", @@ -106666,7 +118320,7 @@ } }, { - "id": 12879, + "id": 14663, "properties": { "east": "low", "north": "low", @@ -106677,7 +118331,7 @@ } }, { - "id": 12880, + "id": 14664, "properties": { "east": "low", "north": "low", @@ -106688,7 +118342,7 @@ } }, { - "id": 12881, + "id": 14665, "properties": { "east": "low", "north": "low", @@ -106699,7 +118353,7 @@ } }, { - "id": 12882, + "id": 14666, "properties": { "east": "low", "north": "low", @@ -106710,7 +118364,7 @@ } }, { - "id": 12883, + "id": 14667, "properties": { "east": "low", "north": "low", @@ -106721,7 +118375,7 @@ } }, { - "id": 12884, + "id": 14668, "properties": { "east": "low", "north": "low", @@ -106732,7 +118386,7 @@ } }, { - "id": 12885, + "id": 14669, "properties": { "east": "low", "north": "low", @@ -106743,7 +118397,7 @@ } }, { - "id": 12886, + "id": 14670, "properties": { "east": "low", "north": "low", @@ -106754,7 +118408,7 @@ } }, { - "id": 12887, + "id": 14671, "properties": { "east": "low", "north": "low", @@ -106765,7 +118419,7 @@ } }, { - "id": 12888, + "id": 14672, "properties": { "east": "low", "north": "low", @@ -106776,7 +118430,7 @@ } }, { - "id": 12889, + "id": 14673, "properties": { "east": "low", "north": "low", @@ -106787,7 +118441,7 @@ } }, { - "id": 12890, + "id": 14674, "properties": { "east": "low", "north": "low", @@ -106798,7 +118452,7 @@ } }, { - "id": 12891, + "id": 14675, "properties": { "east": "low", "north": "low", @@ -106809,7 +118463,7 @@ } }, { - "id": 12892, + "id": 14676, "properties": { "east": "low", "north": "low", @@ -106820,7 +118474,7 @@ } }, { - "id": 12893, + "id": 14677, "properties": { "east": "low", "north": "low", @@ -106831,7 +118485,7 @@ } }, { - "id": 12894, + "id": 14678, "properties": { "east": "low", "north": "low", @@ -106842,7 +118496,7 @@ } }, { - "id": 12895, + "id": 14679, "properties": { "east": "low", "north": "low", @@ -106853,7 +118507,7 @@ } }, { - "id": 12896, + "id": 14680, "properties": { "east": "low", "north": "low", @@ -106864,7 +118518,7 @@ } }, { - "id": 12897, + "id": 14681, "properties": { "east": "low", "north": "low", @@ -106875,7 +118529,7 @@ } }, { - "id": 12898, + "id": 14682, "properties": { "east": "low", "north": "low", @@ -106886,7 +118540,7 @@ } }, { - "id": 12899, + "id": 14683, "properties": { "east": "low", "north": "low", @@ -106897,7 +118551,7 @@ } }, { - "id": 12900, + "id": 14684, "properties": { "east": "low", "north": "tall", @@ -106908,7 +118562,7 @@ } }, { - "id": 12901, + "id": 14685, "properties": { "east": "low", "north": "tall", @@ -106919,7 +118573,7 @@ } }, { - "id": 12902, + "id": 14686, "properties": { "east": "low", "north": "tall", @@ -106930,7 +118584,7 @@ } }, { - "id": 12903, + "id": 14687, "properties": { "east": "low", "north": "tall", @@ -106941,7 +118595,7 @@ } }, { - "id": 12904, + "id": 14688, "properties": { "east": "low", "north": "tall", @@ -106952,7 +118606,7 @@ } }, { - "id": 12905, + "id": 14689, "properties": { "east": "low", "north": "tall", @@ -106963,7 +118617,7 @@ } }, { - "id": 12906, + "id": 14690, "properties": { "east": "low", "north": "tall", @@ -106974,7 +118628,7 @@ } }, { - "id": 12907, + "id": 14691, "properties": { "east": "low", "north": "tall", @@ -106985,7 +118639,7 @@ } }, { - "id": 12908, + "id": 14692, "properties": { "east": "low", "north": "tall", @@ -106996,7 +118650,7 @@ } }, { - "id": 12909, + "id": 14693, "properties": { "east": "low", "north": "tall", @@ -107007,7 +118661,7 @@ } }, { - "id": 12910, + "id": 14694, "properties": { "east": "low", "north": "tall", @@ -107018,7 +118672,7 @@ } }, { - "id": 12911, + "id": 14695, "properties": { "east": "low", "north": "tall", @@ -107029,7 +118683,7 @@ } }, { - "id": 12912, + "id": 14696, "properties": { "east": "low", "north": "tall", @@ -107040,7 +118694,7 @@ } }, { - "id": 12913, + "id": 14697, "properties": { "east": "low", "north": "tall", @@ -107051,7 +118705,7 @@ } }, { - "id": 12914, + "id": 14698, "properties": { "east": "low", "north": "tall", @@ -107062,7 +118716,7 @@ } }, { - "id": 12915, + "id": 14699, "properties": { "east": "low", "north": "tall", @@ -107073,7 +118727,7 @@ } }, { - "id": 12916, + "id": 14700, "properties": { "east": "low", "north": "tall", @@ -107084,7 +118738,7 @@ } }, { - "id": 12917, + "id": 14701, "properties": { "east": "low", "north": "tall", @@ -107095,7 +118749,7 @@ } }, { - "id": 12918, + "id": 14702, "properties": { "east": "low", "north": "tall", @@ -107106,7 +118760,7 @@ } }, { - "id": 12919, + "id": 14703, "properties": { "east": "low", "north": "tall", @@ -107117,7 +118771,7 @@ } }, { - "id": 12920, + "id": 14704, "properties": { "east": "low", "north": "tall", @@ -107128,7 +118782,7 @@ } }, { - "id": 12921, + "id": 14705, "properties": { "east": "low", "north": "tall", @@ -107139,7 +118793,7 @@ } }, { - "id": 12922, + "id": 14706, "properties": { "east": "low", "north": "tall", @@ -107150,7 +118804,7 @@ } }, { - "id": 12923, + "id": 14707, "properties": { "east": "low", "north": "tall", @@ -107161,7 +118815,7 @@ } }, { - "id": 12924, + "id": 14708, "properties": { "east": "low", "north": "tall", @@ -107172,7 +118826,7 @@ } }, { - "id": 12925, + "id": 14709, "properties": { "east": "low", "north": "tall", @@ -107183,7 +118837,7 @@ } }, { - "id": 12926, + "id": 14710, "properties": { "east": "low", "north": "tall", @@ -107194,7 +118848,7 @@ } }, { - "id": 12927, + "id": 14711, "properties": { "east": "low", "north": "tall", @@ -107205,7 +118859,7 @@ } }, { - "id": 12928, + "id": 14712, "properties": { "east": "low", "north": "tall", @@ -107216,7 +118870,7 @@ } }, { - "id": 12929, + "id": 14713, "properties": { "east": "low", "north": "tall", @@ -107227,7 +118881,7 @@ } }, { - "id": 12930, + "id": 14714, "properties": { "east": "low", "north": "tall", @@ -107238,7 +118892,7 @@ } }, { - "id": 12931, + "id": 14715, "properties": { "east": "low", "north": "tall", @@ -107249,7 +118903,7 @@ } }, { - "id": 12932, + "id": 14716, "properties": { "east": "low", "north": "tall", @@ -107260,7 +118914,7 @@ } }, { - "id": 12933, + "id": 14717, "properties": { "east": "low", "north": "tall", @@ -107271,7 +118925,7 @@ } }, { - "id": 12934, + "id": 14718, "properties": { "east": "low", "north": "tall", @@ -107282,7 +118936,7 @@ } }, { - "id": 12935, + "id": 14719, "properties": { "east": "low", "north": "tall", @@ -107293,7 +118947,7 @@ } }, { - "id": 12936, + "id": 14720, "properties": { "east": "tall", "north": "none", @@ -107304,7 +118958,7 @@ } }, { - "id": 12937, + "id": 14721, "properties": { "east": "tall", "north": "none", @@ -107315,7 +118969,7 @@ } }, { - "id": 12938, + "id": 14722, "properties": { "east": "tall", "north": "none", @@ -107326,7 +118980,7 @@ } }, { - "id": 12939, + "id": 14723, "properties": { "east": "tall", "north": "none", @@ -107337,7 +118991,7 @@ } }, { - "id": 12940, + "id": 14724, "properties": { "east": "tall", "north": "none", @@ -107348,7 +119002,7 @@ } }, { - "id": 12941, + "id": 14725, "properties": { "east": "tall", "north": "none", @@ -107359,7 +119013,7 @@ } }, { - "id": 12942, + "id": 14726, "properties": { "east": "tall", "north": "none", @@ -107370,7 +119024,7 @@ } }, { - "id": 12943, + "id": 14727, "properties": { "east": "tall", "north": "none", @@ -107381,7 +119035,7 @@ } }, { - "id": 12944, + "id": 14728, "properties": { "east": "tall", "north": "none", @@ -107392,7 +119046,7 @@ } }, { - "id": 12945, + "id": 14729, "properties": { "east": "tall", "north": "none", @@ -107403,7 +119057,7 @@ } }, { - "id": 12946, + "id": 14730, "properties": { "east": "tall", "north": "none", @@ -107414,7 +119068,7 @@ } }, { - "id": 12947, + "id": 14731, "properties": { "east": "tall", "north": "none", @@ -107425,7 +119079,7 @@ } }, { - "id": 12948, + "id": 14732, "properties": { "east": "tall", "north": "none", @@ -107436,7 +119090,7 @@ } }, { - "id": 12949, + "id": 14733, "properties": { "east": "tall", "north": "none", @@ -107447,7 +119101,7 @@ } }, { - "id": 12950, + "id": 14734, "properties": { "east": "tall", "north": "none", @@ -107458,7 +119112,7 @@ } }, { - "id": 12951, + "id": 14735, "properties": { "east": "tall", "north": "none", @@ -107469,7 +119123,7 @@ } }, { - "id": 12952, + "id": 14736, "properties": { "east": "tall", "north": "none", @@ -107480,7 +119134,7 @@ } }, { - "id": 12953, + "id": 14737, "properties": { "east": "tall", "north": "none", @@ -107491,7 +119145,7 @@ } }, { - "id": 12954, + "id": 14738, "properties": { "east": "tall", "north": "none", @@ -107502,7 +119156,7 @@ } }, { - "id": 12955, + "id": 14739, "properties": { "east": "tall", "north": "none", @@ -107513,7 +119167,7 @@ } }, { - "id": 12956, + "id": 14740, "properties": { "east": "tall", "north": "none", @@ -107524,7 +119178,7 @@ } }, { - "id": 12957, + "id": 14741, "properties": { "east": "tall", "north": "none", @@ -107535,7 +119189,7 @@ } }, { - "id": 12958, + "id": 14742, "properties": { "east": "tall", "north": "none", @@ -107546,7 +119200,7 @@ } }, { - "id": 12959, + "id": 14743, "properties": { "east": "tall", "north": "none", @@ -107557,7 +119211,7 @@ } }, { - "id": 12960, + "id": 14744, "properties": { "east": "tall", "north": "none", @@ -107568,7 +119222,7 @@ } }, { - "id": 12961, + "id": 14745, "properties": { "east": "tall", "north": "none", @@ -107579,7 +119233,7 @@ } }, { - "id": 12962, + "id": 14746, "properties": { "east": "tall", "north": "none", @@ -107590,7 +119244,7 @@ } }, { - "id": 12963, + "id": 14747, "properties": { "east": "tall", "north": "none", @@ -107601,7 +119255,7 @@ } }, { - "id": 12964, + "id": 14748, "properties": { "east": "tall", "north": "none", @@ -107612,7 +119266,7 @@ } }, { - "id": 12965, + "id": 14749, "properties": { "east": "tall", "north": "none", @@ -107623,7 +119277,7 @@ } }, { - "id": 12966, + "id": 14750, "properties": { "east": "tall", "north": "none", @@ -107634,7 +119288,7 @@ } }, { - "id": 12967, + "id": 14751, "properties": { "east": "tall", "north": "none", @@ -107645,7 +119299,7 @@ } }, { - "id": 12968, + "id": 14752, "properties": { "east": "tall", "north": "none", @@ -107656,7 +119310,7 @@ } }, { - "id": 12969, + "id": 14753, "properties": { "east": "tall", "north": "none", @@ -107667,7 +119321,7 @@ } }, { - "id": 12970, + "id": 14754, "properties": { "east": "tall", "north": "none", @@ -107678,7 +119332,7 @@ } }, { - "id": 12971, + "id": 14755, "properties": { "east": "tall", "north": "none", @@ -107689,7 +119343,7 @@ } }, { - "id": 12972, + "id": 14756, "properties": { "east": "tall", "north": "low", @@ -107700,7 +119354,7 @@ } }, { - "id": 12973, + "id": 14757, "properties": { "east": "tall", "north": "low", @@ -107711,7 +119365,7 @@ } }, { - "id": 12974, + "id": 14758, "properties": { "east": "tall", "north": "low", @@ -107722,7 +119376,7 @@ } }, { - "id": 12975, + "id": 14759, "properties": { "east": "tall", "north": "low", @@ -107733,7 +119387,7 @@ } }, { - "id": 12976, + "id": 14760, "properties": { "east": "tall", "north": "low", @@ -107744,7 +119398,7 @@ } }, { - "id": 12977, + "id": 14761, "properties": { "east": "tall", "north": "low", @@ -107755,7 +119409,7 @@ } }, { - "id": 12978, + "id": 14762, "properties": { "east": "tall", "north": "low", @@ -107766,7 +119420,7 @@ } }, { - "id": 12979, + "id": 14763, "properties": { "east": "tall", "north": "low", @@ -107777,7 +119431,7 @@ } }, { - "id": 12980, + "id": 14764, "properties": { "east": "tall", "north": "low", @@ -107788,7 +119442,7 @@ } }, { - "id": 12981, + "id": 14765, "properties": { "east": "tall", "north": "low", @@ -107799,7 +119453,7 @@ } }, { - "id": 12982, + "id": 14766, "properties": { "east": "tall", "north": "low", @@ -107810,7 +119464,7 @@ } }, { - "id": 12983, + "id": 14767, "properties": { "east": "tall", "north": "low", @@ -107821,7 +119475,7 @@ } }, { - "id": 12984, + "id": 14768, "properties": { "east": "tall", "north": "low", @@ -107832,7 +119486,7 @@ } }, { - "id": 12985, + "id": 14769, "properties": { "east": "tall", "north": "low", @@ -107843,7 +119497,7 @@ } }, { - "id": 12986, + "id": 14770, "properties": { "east": "tall", "north": "low", @@ -107854,7 +119508,7 @@ } }, { - "id": 12987, + "id": 14771, "properties": { "east": "tall", "north": "low", @@ -107865,7 +119519,7 @@ } }, { - "id": 12988, + "id": 14772, "properties": { "east": "tall", "north": "low", @@ -107876,7 +119530,7 @@ } }, { - "id": 12989, + "id": 14773, "properties": { "east": "tall", "north": "low", @@ -107887,7 +119541,7 @@ } }, { - "id": 12990, + "id": 14774, "properties": { "east": "tall", "north": "low", @@ -107898,7 +119552,7 @@ } }, { - "id": 12991, + "id": 14775, "properties": { "east": "tall", "north": "low", @@ -107909,7 +119563,7 @@ } }, { - "id": 12992, + "id": 14776, "properties": { "east": "tall", "north": "low", @@ -107920,7 +119574,7 @@ } }, { - "id": 12993, + "id": 14777, "properties": { "east": "tall", "north": "low", @@ -107931,7 +119585,7 @@ } }, { - "id": 12994, + "id": 14778, "properties": { "east": "tall", "north": "low", @@ -107942,7 +119596,7 @@ } }, { - "id": 12995, + "id": 14779, "properties": { "east": "tall", "north": "low", @@ -107953,7 +119607,7 @@ } }, { - "id": 12996, + "id": 14780, "properties": { "east": "tall", "north": "low", @@ -107964,7 +119618,7 @@ } }, { - "id": 12997, + "id": 14781, "properties": { "east": "tall", "north": "low", @@ -107975,7 +119629,7 @@ } }, { - "id": 12998, + "id": 14782, "properties": { "east": "tall", "north": "low", @@ -107986,7 +119640,7 @@ } }, { - "id": 12999, + "id": 14783, "properties": { "east": "tall", "north": "low", @@ -107997,7 +119651,7 @@ } }, { - "id": 13000, + "id": 14784, "properties": { "east": "tall", "north": "low", @@ -108008,7 +119662,7 @@ } }, { - "id": 13001, + "id": 14785, "properties": { "east": "tall", "north": "low", @@ -108019,7 +119673,7 @@ } }, { - "id": 13002, + "id": 14786, "properties": { "east": "tall", "north": "low", @@ -108030,7 +119684,7 @@ } }, { - "id": 13003, + "id": 14787, "properties": { "east": "tall", "north": "low", @@ -108041,7 +119695,7 @@ } }, { - "id": 13004, + "id": 14788, "properties": { "east": "tall", "north": "low", @@ -108052,7 +119706,7 @@ } }, { - "id": 13005, + "id": 14789, "properties": { "east": "tall", "north": "low", @@ -108063,7 +119717,7 @@ } }, { - "id": 13006, + "id": 14790, "properties": { "east": "tall", "north": "low", @@ -108074,7 +119728,7 @@ } }, { - "id": 13007, + "id": 14791, "properties": { "east": "tall", "north": "low", @@ -108085,7 +119739,7 @@ } }, { - "id": 13008, + "id": 14792, "properties": { "east": "tall", "north": "tall", @@ -108096,7 +119750,7 @@ } }, { - "id": 13009, + "id": 14793, "properties": { "east": "tall", "north": "tall", @@ -108107,7 +119761,7 @@ } }, { - "id": 13010, + "id": 14794, "properties": { "east": "tall", "north": "tall", @@ -108118,7 +119772,7 @@ } }, { - "id": 13011, + "id": 14795, "properties": { "east": "tall", "north": "tall", @@ -108129,7 +119783,7 @@ } }, { - "id": 13012, + "id": 14796, "properties": { "east": "tall", "north": "tall", @@ -108140,7 +119794,7 @@ } }, { - "id": 13013, + "id": 14797, "properties": { "east": "tall", "north": "tall", @@ -108151,7 +119805,7 @@ } }, { - "id": 13014, + "id": 14798, "properties": { "east": "tall", "north": "tall", @@ -108162,7 +119816,7 @@ } }, { - "id": 13015, + "id": 14799, "properties": { "east": "tall", "north": "tall", @@ -108173,7 +119827,7 @@ } }, { - "id": 13016, + "id": 14800, "properties": { "east": "tall", "north": "tall", @@ -108184,7 +119838,7 @@ } }, { - "id": 13017, + "id": 14801, "properties": { "east": "tall", "north": "tall", @@ -108195,7 +119849,7 @@ } }, { - "id": 13018, + "id": 14802, "properties": { "east": "tall", "north": "tall", @@ -108206,7 +119860,7 @@ } }, { - "id": 13019, + "id": 14803, "properties": { "east": "tall", "north": "tall", @@ -108217,7 +119871,7 @@ } }, { - "id": 13020, + "id": 14804, "properties": { "east": "tall", "north": "tall", @@ -108228,7 +119882,7 @@ } }, { - "id": 13021, + "id": 14805, "properties": { "east": "tall", "north": "tall", @@ -108239,7 +119893,7 @@ } }, { - "id": 13022, + "id": 14806, "properties": { "east": "tall", "north": "tall", @@ -108250,7 +119904,7 @@ } }, { - "id": 13023, + "id": 14807, "properties": { "east": "tall", "north": "tall", @@ -108261,7 +119915,7 @@ } }, { - "id": 13024, + "id": 14808, "properties": { "east": "tall", "north": "tall", @@ -108272,7 +119926,7 @@ } }, { - "id": 13025, + "id": 14809, "properties": { "east": "tall", "north": "tall", @@ -108283,7 +119937,7 @@ } }, { - "id": 13026, + "id": 14810, "properties": { "east": "tall", "north": "tall", @@ -108294,7 +119948,7 @@ } }, { - "id": 13027, + "id": 14811, "properties": { "east": "tall", "north": "tall", @@ -108305,7 +119959,7 @@ } }, { - "id": 13028, + "id": 14812, "properties": { "east": "tall", "north": "tall", @@ -108316,7 +119970,7 @@ } }, { - "id": 13029, + "id": 14813, "properties": { "east": "tall", "north": "tall", @@ -108327,7 +119981,7 @@ } }, { - "id": 13030, + "id": 14814, "properties": { "east": "tall", "north": "tall", @@ -108338,7 +119992,7 @@ } }, { - "id": 13031, + "id": 14815, "properties": { "east": "tall", "north": "tall", @@ -108349,7 +120003,7 @@ } }, { - "id": 13032, + "id": 14816, "properties": { "east": "tall", "north": "tall", @@ -108360,7 +120014,7 @@ } }, { - "id": 13033, + "id": 14817, "properties": { "east": "tall", "north": "tall", @@ -108371,7 +120025,7 @@ } }, { - "id": 13034, + "id": 14818, "properties": { "east": "tall", "north": "tall", @@ -108382,7 +120036,7 @@ } }, { - "id": 13035, + "id": 14819, "properties": { "east": "tall", "north": "tall", @@ -108393,7 +120047,7 @@ } }, { - "id": 13036, + "id": 14820, "properties": { "east": "tall", "north": "tall", @@ -108404,7 +120058,7 @@ } }, { - "id": 13037, + "id": 14821, "properties": { "east": "tall", "north": "tall", @@ -108415,7 +120069,7 @@ } }, { - "id": 13038, + "id": 14822, "properties": { "east": "tall", "north": "tall", @@ -108426,7 +120080,7 @@ } }, { - "id": 13039, + "id": 14823, "properties": { "east": "tall", "north": "tall", @@ -108437,7 +120091,7 @@ } }, { - "id": 13040, + "id": 14824, "properties": { "east": "tall", "north": "tall", @@ -108448,7 +120102,7 @@ } }, { - "id": 13041, + "id": 14825, "properties": { "east": "tall", "north": "tall", @@ -108459,7 +120113,7 @@ } }, { - "id": 13042, + "id": 14826, "properties": { "east": "tall", "north": "tall", @@ -108470,7 +120124,7 @@ } }, { - "id": 13043, + "id": 14827, "properties": { "east": "tall", "north": "tall", @@ -108486,7 +120140,7 @@ "states": [ { "default": true, - "id": 4869 + "id": 6309 } ] }, @@ -108508,84 +120162,84 @@ "states": [ { "default": true, - "id": 1654, + "id": 2012, "properties": { "type": "normal", "facing": "north" } }, { - "id": 1655, + "id": 2013, "properties": { "type": "sticky", "facing": "north" } }, { - "id": 1656, + "id": 2014, "properties": { "type": "normal", "facing": "east" } }, { - "id": 1657, + "id": 2015, "properties": { "type": "sticky", "facing": "east" } }, { - "id": 1658, + "id": 2016, "properties": { "type": "normal", "facing": "south" } }, { - "id": 1659, + "id": 2017, "properties": { "type": "sticky", "facing": "south" } }, { - "id": 1660, + "id": 2018, "properties": { "type": "normal", "facing": "west" } }, { - "id": 1661, + "id": 2019, "properties": { "type": "sticky", "facing": "west" } }, { - "id": 1662, + "id": 2020, "properties": { "type": "normal", "facing": "up" } }, { - "id": 1663, + "id": 2021, "properties": { "type": "sticky", "facing": "up" } }, { - "id": 1664, + "id": 2022, "properties": { "type": "normal", "facing": "down" } }, { - "id": 1665, + "id": 2023, "properties": { "type": "sticky", "facing": "down" @@ -108597,7 +120251,7 @@ "states": [ { "default": true, - "id": 19777 + "id": 21561 } ] }, @@ -108615,21 +120269,21 @@ }, "states": [ { - "id": 9131, + "id": 10787, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 9132, + "id": 10788, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 9133, + "id": 10789, "properties": { "type": "bottom", "waterlogged": "true" @@ -108637,21 +120291,21 @@ }, { "default": true, - "id": 9134, + "id": 10790, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 9135, + "id": 10791, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 9136, + "id": 10792, "properties": { "type": "double", "waterlogged": "false" @@ -108685,7 +120339,7 @@ }, "states": [ { - "id": 5519, + "id": 6959, "properties": { "facing": "north", "half": "top", @@ -108694,7 +120348,7 @@ } }, { - "id": 5520, + "id": 6960, "properties": { "facing": "north", "half": "top", @@ -108703,7 +120357,7 @@ } }, { - "id": 5521, + "id": 6961, "properties": { "facing": "north", "half": "top", @@ -108712,7 +120366,7 @@ } }, { - "id": 5522, + "id": 6962, "properties": { "facing": "north", "half": "top", @@ -108721,7 +120375,7 @@ } }, { - "id": 5523, + "id": 6963, "properties": { "facing": "north", "half": "top", @@ -108730,7 +120384,7 @@ } }, { - "id": 5524, + "id": 6964, "properties": { "facing": "north", "half": "top", @@ -108739,7 +120393,7 @@ } }, { - "id": 5525, + "id": 6965, "properties": { "facing": "north", "half": "top", @@ -108748,7 +120402,7 @@ } }, { - "id": 5526, + "id": 6966, "properties": { "facing": "north", "half": "top", @@ -108757,7 +120411,7 @@ } }, { - "id": 5527, + "id": 6967, "properties": { "facing": "north", "half": "top", @@ -108766,7 +120420,7 @@ } }, { - "id": 5528, + "id": 6968, "properties": { "facing": "north", "half": "top", @@ -108775,7 +120429,7 @@ } }, { - "id": 5529, + "id": 6969, "properties": { "facing": "north", "half": "bottom", @@ -108785,7 +120439,7 @@ }, { "default": true, - "id": 5530, + "id": 6970, "properties": { "facing": "north", "half": "bottom", @@ -108794,7 +120448,7 @@ } }, { - "id": 5531, + "id": 6971, "properties": { "facing": "north", "half": "bottom", @@ -108803,7 +120457,7 @@ } }, { - "id": 5532, + "id": 6972, "properties": { "facing": "north", "half": "bottom", @@ -108812,7 +120466,7 @@ } }, { - "id": 5533, + "id": 6973, "properties": { "facing": "north", "half": "bottom", @@ -108821,7 +120475,7 @@ } }, { - "id": 5534, + "id": 6974, "properties": { "facing": "north", "half": "bottom", @@ -108830,7 +120484,7 @@ } }, { - "id": 5535, + "id": 6975, "properties": { "facing": "north", "half": "bottom", @@ -108839,7 +120493,7 @@ } }, { - "id": 5536, + "id": 6976, "properties": { "facing": "north", "half": "bottom", @@ -108848,7 +120502,7 @@ } }, { - "id": 5537, + "id": 6977, "properties": { "facing": "north", "half": "bottom", @@ -108857,7 +120511,7 @@ } }, { - "id": 5538, + "id": 6978, "properties": { "facing": "north", "half": "bottom", @@ -108866,7 +120520,7 @@ } }, { - "id": 5539, + "id": 6979, "properties": { "facing": "south", "half": "top", @@ -108875,7 +120529,7 @@ } }, { - "id": 5540, + "id": 6980, "properties": { "facing": "south", "half": "top", @@ -108884,7 +120538,7 @@ } }, { - "id": 5541, + "id": 6981, "properties": { "facing": "south", "half": "top", @@ -108893,7 +120547,7 @@ } }, { - "id": 5542, + "id": 6982, "properties": { "facing": "south", "half": "top", @@ -108902,7 +120556,7 @@ } }, { - "id": 5543, + "id": 6983, "properties": { "facing": "south", "half": "top", @@ -108911,7 +120565,7 @@ } }, { - "id": 5544, + "id": 6984, "properties": { "facing": "south", "half": "top", @@ -108920,7 +120574,7 @@ } }, { - "id": 5545, + "id": 6985, "properties": { "facing": "south", "half": "top", @@ -108929,7 +120583,7 @@ } }, { - "id": 5546, + "id": 6986, "properties": { "facing": "south", "half": "top", @@ -108938,7 +120592,7 @@ } }, { - "id": 5547, + "id": 6987, "properties": { "facing": "south", "half": "top", @@ -108947,7 +120601,7 @@ } }, { - "id": 5548, + "id": 6988, "properties": { "facing": "south", "half": "top", @@ -108956,7 +120610,7 @@ } }, { - "id": 5549, + "id": 6989, "properties": { "facing": "south", "half": "bottom", @@ -108965,7 +120619,7 @@ } }, { - "id": 5550, + "id": 6990, "properties": { "facing": "south", "half": "bottom", @@ -108974,7 +120628,7 @@ } }, { - "id": 5551, + "id": 6991, "properties": { "facing": "south", "half": "bottom", @@ -108983,7 +120637,7 @@ } }, { - "id": 5552, + "id": 6992, "properties": { "facing": "south", "half": "bottom", @@ -108992,7 +120646,7 @@ } }, { - "id": 5553, + "id": 6993, "properties": { "facing": "south", "half": "bottom", @@ -109001,7 +120655,7 @@ } }, { - "id": 5554, + "id": 6994, "properties": { "facing": "south", "half": "bottom", @@ -109010,7 +120664,7 @@ } }, { - "id": 5555, + "id": 6995, "properties": { "facing": "south", "half": "bottom", @@ -109019,7 +120673,7 @@ } }, { - "id": 5556, + "id": 6996, "properties": { "facing": "south", "half": "bottom", @@ -109028,7 +120682,7 @@ } }, { - "id": 5557, + "id": 6997, "properties": { "facing": "south", "half": "bottom", @@ -109037,7 +120691,7 @@ } }, { - "id": 5558, + "id": 6998, "properties": { "facing": "south", "half": "bottom", @@ -109046,7 +120700,7 @@ } }, { - "id": 5559, + "id": 6999, "properties": { "facing": "west", "half": "top", @@ -109055,7 +120709,7 @@ } }, { - "id": 5560, + "id": 7000, "properties": { "facing": "west", "half": "top", @@ -109064,7 +120718,7 @@ } }, { - "id": 5561, + "id": 7001, "properties": { "facing": "west", "half": "top", @@ -109073,7 +120727,7 @@ } }, { - "id": 5562, + "id": 7002, "properties": { "facing": "west", "half": "top", @@ -109082,7 +120736,7 @@ } }, { - "id": 5563, + "id": 7003, "properties": { "facing": "west", "half": "top", @@ -109091,7 +120745,7 @@ } }, { - "id": 5564, + "id": 7004, "properties": { "facing": "west", "half": "top", @@ -109100,7 +120754,7 @@ } }, { - "id": 5565, + "id": 7005, "properties": { "facing": "west", "half": "top", @@ -109109,7 +120763,7 @@ } }, { - "id": 5566, + "id": 7006, "properties": { "facing": "west", "half": "top", @@ -109118,7 +120772,7 @@ } }, { - "id": 5567, + "id": 7007, "properties": { "facing": "west", "half": "top", @@ -109127,7 +120781,7 @@ } }, { - "id": 5568, + "id": 7008, "properties": { "facing": "west", "half": "top", @@ -109136,7 +120790,7 @@ } }, { - "id": 5569, + "id": 7009, "properties": { "facing": "west", "half": "bottom", @@ -109145,7 +120799,7 @@ } }, { - "id": 5570, + "id": 7010, "properties": { "facing": "west", "half": "bottom", @@ -109154,7 +120808,7 @@ } }, { - "id": 5571, + "id": 7011, "properties": { "facing": "west", "half": "bottom", @@ -109163,7 +120817,7 @@ } }, { - "id": 5572, + "id": 7012, "properties": { "facing": "west", "half": "bottom", @@ -109172,7 +120826,7 @@ } }, { - "id": 5573, + "id": 7013, "properties": { "facing": "west", "half": "bottom", @@ -109181,7 +120835,7 @@ } }, { - "id": 5574, + "id": 7014, "properties": { "facing": "west", "half": "bottom", @@ -109190,7 +120844,7 @@ } }, { - "id": 5575, + "id": 7015, "properties": { "facing": "west", "half": "bottom", @@ -109199,7 +120853,7 @@ } }, { - "id": 5576, + "id": 7016, "properties": { "facing": "west", "half": "bottom", @@ -109208,7 +120862,7 @@ } }, { - "id": 5577, + "id": 7017, "properties": { "facing": "west", "half": "bottom", @@ -109217,7 +120871,7 @@ } }, { - "id": 5578, + "id": 7018, "properties": { "facing": "west", "half": "bottom", @@ -109226,7 +120880,7 @@ } }, { - "id": 5579, + "id": 7019, "properties": { "facing": "east", "half": "top", @@ -109235,7 +120889,7 @@ } }, { - "id": 5580, + "id": 7020, "properties": { "facing": "east", "half": "top", @@ -109244,7 +120898,7 @@ } }, { - "id": 5581, + "id": 7021, "properties": { "facing": "east", "half": "top", @@ -109253,7 +120907,7 @@ } }, { - "id": 5582, + "id": 7022, "properties": { "facing": "east", "half": "top", @@ -109262,7 +120916,7 @@ } }, { - "id": 5583, + "id": 7023, "properties": { "facing": "east", "half": "top", @@ -109271,7 +120925,7 @@ } }, { - "id": 5584, + "id": 7024, "properties": { "facing": "east", "half": "top", @@ -109280,7 +120934,7 @@ } }, { - "id": 5585, + "id": 7025, "properties": { "facing": "east", "half": "top", @@ -109289,7 +120943,7 @@ } }, { - "id": 5586, + "id": 7026, "properties": { "facing": "east", "half": "top", @@ -109298,7 +120952,7 @@ } }, { - "id": 5587, + "id": 7027, "properties": { "facing": "east", "half": "top", @@ -109307,7 +120961,7 @@ } }, { - "id": 5588, + "id": 7028, "properties": { "facing": "east", "half": "top", @@ -109316,7 +120970,7 @@ } }, { - "id": 5589, + "id": 7029, "properties": { "facing": "east", "half": "bottom", @@ -109325,7 +120979,7 @@ } }, { - "id": 5590, + "id": 7030, "properties": { "facing": "east", "half": "bottom", @@ -109334,7 +120988,7 @@ } }, { - "id": 5591, + "id": 7031, "properties": { "facing": "east", "half": "bottom", @@ -109343,7 +120997,7 @@ } }, { - "id": 5592, + "id": 7032, "properties": { "facing": "east", "half": "bottom", @@ -109352,7 +121006,7 @@ } }, { - "id": 5593, + "id": 7033, "properties": { "facing": "east", "half": "bottom", @@ -109361,7 +121015,7 @@ } }, { - "id": 5594, + "id": 7034, "properties": { "facing": "east", "half": "bottom", @@ -109370,7 +121024,7 @@ } }, { - "id": 5595, + "id": 7035, "properties": { "facing": "east", "half": "bottom", @@ -109379,7 +121033,7 @@ } }, { - "id": 5596, + "id": 7036, "properties": { "facing": "east", "half": "bottom", @@ -109388,7 +121042,7 @@ } }, { - "id": 5597, + "id": 7037, "properties": { "facing": "east", "half": "bottom", @@ -109397,7 +121051,7 @@ } }, { - "id": 5598, + "id": 7038, "properties": { "facing": "east", "half": "bottom", @@ -109440,7 +121094,7 @@ }, "states": [ { - "id": 13692, + "id": 15476, "properties": { "east": "none", "north": "none", @@ -109451,7 +121105,7 @@ } }, { - "id": 13693, + "id": 15477, "properties": { "east": "none", "north": "none", @@ -109462,7 +121116,7 @@ } }, { - "id": 13694, + "id": 15478, "properties": { "east": "none", "north": "none", @@ -109474,7 +121128,7 @@ }, { "default": true, - "id": 13695, + "id": 15479, "properties": { "east": "none", "north": "none", @@ -109485,7 +121139,7 @@ } }, { - "id": 13696, + "id": 15480, "properties": { "east": "none", "north": "none", @@ -109496,7 +121150,7 @@ } }, { - "id": 13697, + "id": 15481, "properties": { "east": "none", "north": "none", @@ -109507,7 +121161,7 @@ } }, { - "id": 13698, + "id": 15482, "properties": { "east": "none", "north": "none", @@ -109518,7 +121172,7 @@ } }, { - "id": 13699, + "id": 15483, "properties": { "east": "none", "north": "none", @@ -109529,7 +121183,7 @@ } }, { - "id": 13700, + "id": 15484, "properties": { "east": "none", "north": "none", @@ -109540,7 +121194,7 @@ } }, { - "id": 13701, + "id": 15485, "properties": { "east": "none", "north": "none", @@ -109551,7 +121205,7 @@ } }, { - "id": 13702, + "id": 15486, "properties": { "east": "none", "north": "none", @@ -109562,7 +121216,7 @@ } }, { - "id": 13703, + "id": 15487, "properties": { "east": "none", "north": "none", @@ -109573,7 +121227,7 @@ } }, { - "id": 13704, + "id": 15488, "properties": { "east": "none", "north": "none", @@ -109584,7 +121238,7 @@ } }, { - "id": 13705, + "id": 15489, "properties": { "east": "none", "north": "none", @@ -109595,7 +121249,7 @@ } }, { - "id": 13706, + "id": 15490, "properties": { "east": "none", "north": "none", @@ -109606,7 +121260,7 @@ } }, { - "id": 13707, + "id": 15491, "properties": { "east": "none", "north": "none", @@ -109617,7 +121271,7 @@ } }, { - "id": 13708, + "id": 15492, "properties": { "east": "none", "north": "none", @@ -109628,7 +121282,7 @@ } }, { - "id": 13709, + "id": 15493, "properties": { "east": "none", "north": "none", @@ -109639,7 +121293,7 @@ } }, { - "id": 13710, + "id": 15494, "properties": { "east": "none", "north": "none", @@ -109650,7 +121304,7 @@ } }, { - "id": 13711, + "id": 15495, "properties": { "east": "none", "north": "none", @@ -109661,7 +121315,7 @@ } }, { - "id": 13712, + "id": 15496, "properties": { "east": "none", "north": "none", @@ -109672,7 +121326,7 @@ } }, { - "id": 13713, + "id": 15497, "properties": { "east": "none", "north": "none", @@ -109683,7 +121337,7 @@ } }, { - "id": 13714, + "id": 15498, "properties": { "east": "none", "north": "none", @@ -109694,7 +121348,7 @@ } }, { - "id": 13715, + "id": 15499, "properties": { "east": "none", "north": "none", @@ -109705,7 +121359,7 @@ } }, { - "id": 13716, + "id": 15500, "properties": { "east": "none", "north": "none", @@ -109716,7 +121370,7 @@ } }, { - "id": 13717, + "id": 15501, "properties": { "east": "none", "north": "none", @@ -109727,7 +121381,7 @@ } }, { - "id": 13718, + "id": 15502, "properties": { "east": "none", "north": "none", @@ -109738,7 +121392,7 @@ } }, { - "id": 13719, + "id": 15503, "properties": { "east": "none", "north": "none", @@ -109749,7 +121403,7 @@ } }, { - "id": 13720, + "id": 15504, "properties": { "east": "none", "north": "none", @@ -109760,7 +121414,7 @@ } }, { - "id": 13721, + "id": 15505, "properties": { "east": "none", "north": "none", @@ -109771,7 +121425,7 @@ } }, { - "id": 13722, + "id": 15506, "properties": { "east": "none", "north": "none", @@ -109782,7 +121436,7 @@ } }, { - "id": 13723, + "id": 15507, "properties": { "east": "none", "north": "none", @@ -109793,7 +121447,7 @@ } }, { - "id": 13724, + "id": 15508, "properties": { "east": "none", "north": "none", @@ -109804,7 +121458,7 @@ } }, { - "id": 13725, + "id": 15509, "properties": { "east": "none", "north": "none", @@ -109815,7 +121469,7 @@ } }, { - "id": 13726, + "id": 15510, "properties": { "east": "none", "north": "none", @@ -109826,7 +121480,7 @@ } }, { - "id": 13727, + "id": 15511, "properties": { "east": "none", "north": "none", @@ -109837,7 +121491,7 @@ } }, { - "id": 13728, + "id": 15512, "properties": { "east": "none", "north": "low", @@ -109848,7 +121502,7 @@ } }, { - "id": 13729, + "id": 15513, "properties": { "east": "none", "north": "low", @@ -109859,7 +121513,7 @@ } }, { - "id": 13730, + "id": 15514, "properties": { "east": "none", "north": "low", @@ -109870,7 +121524,7 @@ } }, { - "id": 13731, + "id": 15515, "properties": { "east": "none", "north": "low", @@ -109881,7 +121535,7 @@ } }, { - "id": 13732, + "id": 15516, "properties": { "east": "none", "north": "low", @@ -109892,7 +121546,7 @@ } }, { - "id": 13733, + "id": 15517, "properties": { "east": "none", "north": "low", @@ -109903,7 +121557,7 @@ } }, { - "id": 13734, + "id": 15518, "properties": { "east": "none", "north": "low", @@ -109914,7 +121568,7 @@ } }, { - "id": 13735, + "id": 15519, "properties": { "east": "none", "north": "low", @@ -109925,7 +121579,7 @@ } }, { - "id": 13736, + "id": 15520, "properties": { "east": "none", "north": "low", @@ -109936,7 +121590,7 @@ } }, { - "id": 13737, + "id": 15521, "properties": { "east": "none", "north": "low", @@ -109947,7 +121601,7 @@ } }, { - "id": 13738, + "id": 15522, "properties": { "east": "none", "north": "low", @@ -109958,7 +121612,7 @@ } }, { - "id": 13739, + "id": 15523, "properties": { "east": "none", "north": "low", @@ -109969,7 +121623,7 @@ } }, { - "id": 13740, + "id": 15524, "properties": { "east": "none", "north": "low", @@ -109980,7 +121634,7 @@ } }, { - "id": 13741, + "id": 15525, "properties": { "east": "none", "north": "low", @@ -109991,7 +121645,7 @@ } }, { - "id": 13742, + "id": 15526, "properties": { "east": "none", "north": "low", @@ -110002,7 +121656,7 @@ } }, { - "id": 13743, + "id": 15527, "properties": { "east": "none", "north": "low", @@ -110013,7 +121667,7 @@ } }, { - "id": 13744, + "id": 15528, "properties": { "east": "none", "north": "low", @@ -110024,7 +121678,7 @@ } }, { - "id": 13745, + "id": 15529, "properties": { "east": "none", "north": "low", @@ -110035,7 +121689,7 @@ } }, { - "id": 13746, + "id": 15530, "properties": { "east": "none", "north": "low", @@ -110046,7 +121700,7 @@ } }, { - "id": 13747, + "id": 15531, "properties": { "east": "none", "north": "low", @@ -110057,7 +121711,7 @@ } }, { - "id": 13748, + "id": 15532, "properties": { "east": "none", "north": "low", @@ -110068,7 +121722,7 @@ } }, { - "id": 13749, + "id": 15533, "properties": { "east": "none", "north": "low", @@ -110079,7 +121733,7 @@ } }, { - "id": 13750, + "id": 15534, "properties": { "east": "none", "north": "low", @@ -110090,7 +121744,7 @@ } }, { - "id": 13751, + "id": 15535, "properties": { "east": "none", "north": "low", @@ -110101,7 +121755,7 @@ } }, { - "id": 13752, + "id": 15536, "properties": { "east": "none", "north": "low", @@ -110112,7 +121766,7 @@ } }, { - "id": 13753, + "id": 15537, "properties": { "east": "none", "north": "low", @@ -110123,7 +121777,7 @@ } }, { - "id": 13754, + "id": 15538, "properties": { "east": "none", "north": "low", @@ -110134,7 +121788,7 @@ } }, { - "id": 13755, + "id": 15539, "properties": { "east": "none", "north": "low", @@ -110145,7 +121799,7 @@ } }, { - "id": 13756, + "id": 15540, "properties": { "east": "none", "north": "low", @@ -110156,7 +121810,7 @@ } }, { - "id": 13757, + "id": 15541, "properties": { "east": "none", "north": "low", @@ -110167,7 +121821,7 @@ } }, { - "id": 13758, + "id": 15542, "properties": { "east": "none", "north": "low", @@ -110178,7 +121832,7 @@ } }, { - "id": 13759, + "id": 15543, "properties": { "east": "none", "north": "low", @@ -110189,7 +121843,7 @@ } }, { - "id": 13760, + "id": 15544, "properties": { "east": "none", "north": "low", @@ -110200,7 +121854,7 @@ } }, { - "id": 13761, + "id": 15545, "properties": { "east": "none", "north": "low", @@ -110211,7 +121865,7 @@ } }, { - "id": 13762, + "id": 15546, "properties": { "east": "none", "north": "low", @@ -110222,7 +121876,7 @@ } }, { - "id": 13763, + "id": 15547, "properties": { "east": "none", "north": "low", @@ -110233,7 +121887,7 @@ } }, { - "id": 13764, + "id": 15548, "properties": { "east": "none", "north": "tall", @@ -110244,7 +121898,7 @@ } }, { - "id": 13765, + "id": 15549, "properties": { "east": "none", "north": "tall", @@ -110255,7 +121909,7 @@ } }, { - "id": 13766, + "id": 15550, "properties": { "east": "none", "north": "tall", @@ -110266,7 +121920,7 @@ } }, { - "id": 13767, + "id": 15551, "properties": { "east": "none", "north": "tall", @@ -110277,7 +121931,7 @@ } }, { - "id": 13768, + "id": 15552, "properties": { "east": "none", "north": "tall", @@ -110288,7 +121942,7 @@ } }, { - "id": 13769, + "id": 15553, "properties": { "east": "none", "north": "tall", @@ -110299,7 +121953,7 @@ } }, { - "id": 13770, + "id": 15554, "properties": { "east": "none", "north": "tall", @@ -110310,7 +121964,7 @@ } }, { - "id": 13771, + "id": 15555, "properties": { "east": "none", "north": "tall", @@ -110321,7 +121975,7 @@ } }, { - "id": 13772, + "id": 15556, "properties": { "east": "none", "north": "tall", @@ -110332,7 +121986,7 @@ } }, { - "id": 13773, + "id": 15557, "properties": { "east": "none", "north": "tall", @@ -110343,7 +121997,7 @@ } }, { - "id": 13774, + "id": 15558, "properties": { "east": "none", "north": "tall", @@ -110354,7 +122008,7 @@ } }, { - "id": 13775, + "id": 15559, "properties": { "east": "none", "north": "tall", @@ -110365,7 +122019,7 @@ } }, { - "id": 13776, + "id": 15560, "properties": { "east": "none", "north": "tall", @@ -110376,7 +122030,7 @@ } }, { - "id": 13777, + "id": 15561, "properties": { "east": "none", "north": "tall", @@ -110387,7 +122041,7 @@ } }, { - "id": 13778, + "id": 15562, "properties": { "east": "none", "north": "tall", @@ -110398,7 +122052,7 @@ } }, { - "id": 13779, + "id": 15563, "properties": { "east": "none", "north": "tall", @@ -110409,7 +122063,7 @@ } }, { - "id": 13780, + "id": 15564, "properties": { "east": "none", "north": "tall", @@ -110420,7 +122074,7 @@ } }, { - "id": 13781, + "id": 15565, "properties": { "east": "none", "north": "tall", @@ -110431,7 +122085,7 @@ } }, { - "id": 13782, + "id": 15566, "properties": { "east": "none", "north": "tall", @@ -110442,7 +122096,7 @@ } }, { - "id": 13783, + "id": 15567, "properties": { "east": "none", "north": "tall", @@ -110453,7 +122107,7 @@ } }, { - "id": 13784, + "id": 15568, "properties": { "east": "none", "north": "tall", @@ -110464,7 +122118,7 @@ } }, { - "id": 13785, + "id": 15569, "properties": { "east": "none", "north": "tall", @@ -110475,7 +122129,7 @@ } }, { - "id": 13786, + "id": 15570, "properties": { "east": "none", "north": "tall", @@ -110486,7 +122140,7 @@ } }, { - "id": 13787, + "id": 15571, "properties": { "east": "none", "north": "tall", @@ -110497,7 +122151,7 @@ } }, { - "id": 13788, + "id": 15572, "properties": { "east": "none", "north": "tall", @@ -110508,7 +122162,7 @@ } }, { - "id": 13789, + "id": 15573, "properties": { "east": "none", "north": "tall", @@ -110519,7 +122173,7 @@ } }, { - "id": 13790, + "id": 15574, "properties": { "east": "none", "north": "tall", @@ -110530,7 +122184,7 @@ } }, { - "id": 13791, + "id": 15575, "properties": { "east": "none", "north": "tall", @@ -110541,7 +122195,7 @@ } }, { - "id": 13792, + "id": 15576, "properties": { "east": "none", "north": "tall", @@ -110552,7 +122206,7 @@ } }, { - "id": 13793, + "id": 15577, "properties": { "east": "none", "north": "tall", @@ -110563,7 +122217,7 @@ } }, { - "id": 13794, + "id": 15578, "properties": { "east": "none", "north": "tall", @@ -110574,7 +122228,7 @@ } }, { - "id": 13795, + "id": 15579, "properties": { "east": "none", "north": "tall", @@ -110585,7 +122239,7 @@ } }, { - "id": 13796, + "id": 15580, "properties": { "east": "none", "north": "tall", @@ -110596,7 +122250,7 @@ } }, { - "id": 13797, + "id": 15581, "properties": { "east": "none", "north": "tall", @@ -110607,7 +122261,7 @@ } }, { - "id": 13798, + "id": 15582, "properties": { "east": "none", "north": "tall", @@ -110618,7 +122272,7 @@ } }, { - "id": 13799, + "id": 15583, "properties": { "east": "none", "north": "tall", @@ -110629,7 +122283,7 @@ } }, { - "id": 13800, + "id": 15584, "properties": { "east": "low", "north": "none", @@ -110640,7 +122294,7 @@ } }, { - "id": 13801, + "id": 15585, "properties": { "east": "low", "north": "none", @@ -110651,7 +122305,7 @@ } }, { - "id": 13802, + "id": 15586, "properties": { "east": "low", "north": "none", @@ -110662,7 +122316,7 @@ } }, { - "id": 13803, + "id": 15587, "properties": { "east": "low", "north": "none", @@ -110673,7 +122327,7 @@ } }, { - "id": 13804, + "id": 15588, "properties": { "east": "low", "north": "none", @@ -110684,7 +122338,7 @@ } }, { - "id": 13805, + "id": 15589, "properties": { "east": "low", "north": "none", @@ -110695,7 +122349,7 @@ } }, { - "id": 13806, + "id": 15590, "properties": { "east": "low", "north": "none", @@ -110706,7 +122360,7 @@ } }, { - "id": 13807, + "id": 15591, "properties": { "east": "low", "north": "none", @@ -110717,7 +122371,7 @@ } }, { - "id": 13808, + "id": 15592, "properties": { "east": "low", "north": "none", @@ -110728,7 +122382,7 @@ } }, { - "id": 13809, + "id": 15593, "properties": { "east": "low", "north": "none", @@ -110739,7 +122393,7 @@ } }, { - "id": 13810, + "id": 15594, "properties": { "east": "low", "north": "none", @@ -110750,7 +122404,7 @@ } }, { - "id": 13811, + "id": 15595, "properties": { "east": "low", "north": "none", @@ -110761,7 +122415,7 @@ } }, { - "id": 13812, + "id": 15596, "properties": { "east": "low", "north": "none", @@ -110772,7 +122426,7 @@ } }, { - "id": 13813, + "id": 15597, "properties": { "east": "low", "north": "none", @@ -110783,7 +122437,7 @@ } }, { - "id": 13814, + "id": 15598, "properties": { "east": "low", "north": "none", @@ -110794,7 +122448,7 @@ } }, { - "id": 13815, + "id": 15599, "properties": { "east": "low", "north": "none", @@ -110805,7 +122459,7 @@ } }, { - "id": 13816, + "id": 15600, "properties": { "east": "low", "north": "none", @@ -110816,7 +122470,7 @@ } }, { - "id": 13817, + "id": 15601, "properties": { "east": "low", "north": "none", @@ -110827,7 +122481,7 @@ } }, { - "id": 13818, + "id": 15602, "properties": { "east": "low", "north": "none", @@ -110838,7 +122492,7 @@ } }, { - "id": 13819, + "id": 15603, "properties": { "east": "low", "north": "none", @@ -110849,7 +122503,7 @@ } }, { - "id": 13820, + "id": 15604, "properties": { "east": "low", "north": "none", @@ -110860,7 +122514,7 @@ } }, { - "id": 13821, + "id": 15605, "properties": { "east": "low", "north": "none", @@ -110871,7 +122525,7 @@ } }, { - "id": 13822, + "id": 15606, "properties": { "east": "low", "north": "none", @@ -110882,7 +122536,7 @@ } }, { - "id": 13823, + "id": 15607, "properties": { "east": "low", "north": "none", @@ -110893,7 +122547,7 @@ } }, { - "id": 13824, + "id": 15608, "properties": { "east": "low", "north": "none", @@ -110904,7 +122558,7 @@ } }, { - "id": 13825, + "id": 15609, "properties": { "east": "low", "north": "none", @@ -110915,7 +122569,7 @@ } }, { - "id": 13826, + "id": 15610, "properties": { "east": "low", "north": "none", @@ -110926,7 +122580,7 @@ } }, { - "id": 13827, + "id": 15611, "properties": { "east": "low", "north": "none", @@ -110937,7 +122591,7 @@ } }, { - "id": 13828, + "id": 15612, "properties": { "east": "low", "north": "none", @@ -110948,7 +122602,7 @@ } }, { - "id": 13829, + "id": 15613, "properties": { "east": "low", "north": "none", @@ -110959,7 +122613,7 @@ } }, { - "id": 13830, + "id": 15614, "properties": { "east": "low", "north": "none", @@ -110970,7 +122624,7 @@ } }, { - "id": 13831, + "id": 15615, "properties": { "east": "low", "north": "none", @@ -110981,7 +122635,7 @@ } }, { - "id": 13832, + "id": 15616, "properties": { "east": "low", "north": "none", @@ -110992,7 +122646,7 @@ } }, { - "id": 13833, + "id": 15617, "properties": { "east": "low", "north": "none", @@ -111003,7 +122657,7 @@ } }, { - "id": 13834, + "id": 15618, "properties": { "east": "low", "north": "none", @@ -111014,7 +122668,7 @@ } }, { - "id": 13835, + "id": 15619, "properties": { "east": "low", "north": "none", @@ -111025,7 +122679,7 @@ } }, { - "id": 13836, + "id": 15620, "properties": { "east": "low", "north": "low", @@ -111036,7 +122690,7 @@ } }, { - "id": 13837, + "id": 15621, "properties": { "east": "low", "north": "low", @@ -111047,7 +122701,7 @@ } }, { - "id": 13838, + "id": 15622, "properties": { "east": "low", "north": "low", @@ -111058,7 +122712,7 @@ } }, { - "id": 13839, + "id": 15623, "properties": { "east": "low", "north": "low", @@ -111069,7 +122723,7 @@ } }, { - "id": 13840, + "id": 15624, "properties": { "east": "low", "north": "low", @@ -111080,7 +122734,7 @@ } }, { - "id": 13841, + "id": 15625, "properties": { "east": "low", "north": "low", @@ -111091,7 +122745,7 @@ } }, { - "id": 13842, + "id": 15626, "properties": { "east": "low", "north": "low", @@ -111102,7 +122756,7 @@ } }, { - "id": 13843, + "id": 15627, "properties": { "east": "low", "north": "low", @@ -111113,7 +122767,7 @@ } }, { - "id": 13844, + "id": 15628, "properties": { "east": "low", "north": "low", @@ -111124,7 +122778,7 @@ } }, { - "id": 13845, + "id": 15629, "properties": { "east": "low", "north": "low", @@ -111135,7 +122789,7 @@ } }, { - "id": 13846, + "id": 15630, "properties": { "east": "low", "north": "low", @@ -111146,7 +122800,7 @@ } }, { - "id": 13847, + "id": 15631, "properties": { "east": "low", "north": "low", @@ -111157,7 +122811,7 @@ } }, { - "id": 13848, + "id": 15632, "properties": { "east": "low", "north": "low", @@ -111168,7 +122822,7 @@ } }, { - "id": 13849, + "id": 15633, "properties": { "east": "low", "north": "low", @@ -111179,7 +122833,7 @@ } }, { - "id": 13850, + "id": 15634, "properties": { "east": "low", "north": "low", @@ -111190,7 +122844,7 @@ } }, { - "id": 13851, + "id": 15635, "properties": { "east": "low", "north": "low", @@ -111201,7 +122855,7 @@ } }, { - "id": 13852, + "id": 15636, "properties": { "east": "low", "north": "low", @@ -111212,7 +122866,7 @@ } }, { - "id": 13853, + "id": 15637, "properties": { "east": "low", "north": "low", @@ -111223,7 +122877,7 @@ } }, { - "id": 13854, + "id": 15638, "properties": { "east": "low", "north": "low", @@ -111234,7 +122888,7 @@ } }, { - "id": 13855, + "id": 15639, "properties": { "east": "low", "north": "low", @@ -111245,7 +122899,7 @@ } }, { - "id": 13856, + "id": 15640, "properties": { "east": "low", "north": "low", @@ -111256,7 +122910,7 @@ } }, { - "id": 13857, + "id": 15641, "properties": { "east": "low", "north": "low", @@ -111267,7 +122921,7 @@ } }, { - "id": 13858, + "id": 15642, "properties": { "east": "low", "north": "low", @@ -111278,7 +122932,7 @@ } }, { - "id": 13859, + "id": 15643, "properties": { "east": "low", "north": "low", @@ -111289,7 +122943,7 @@ } }, { - "id": 13860, + "id": 15644, "properties": { "east": "low", "north": "low", @@ -111300,7 +122954,7 @@ } }, { - "id": 13861, + "id": 15645, "properties": { "east": "low", "north": "low", @@ -111311,7 +122965,7 @@ } }, { - "id": 13862, + "id": 15646, "properties": { "east": "low", "north": "low", @@ -111322,7 +122976,7 @@ } }, { - "id": 13863, + "id": 15647, "properties": { "east": "low", "north": "low", @@ -111333,7 +122987,7 @@ } }, { - "id": 13864, + "id": 15648, "properties": { "east": "low", "north": "low", @@ -111344,7 +122998,7 @@ } }, { - "id": 13865, + "id": 15649, "properties": { "east": "low", "north": "low", @@ -111355,7 +123009,7 @@ } }, { - "id": 13866, + "id": 15650, "properties": { "east": "low", "north": "low", @@ -111366,7 +123020,7 @@ } }, { - "id": 13867, + "id": 15651, "properties": { "east": "low", "north": "low", @@ -111377,7 +123031,7 @@ } }, { - "id": 13868, + "id": 15652, "properties": { "east": "low", "north": "low", @@ -111388,7 +123042,7 @@ } }, { - "id": 13869, + "id": 15653, "properties": { "east": "low", "north": "low", @@ -111399,7 +123053,7 @@ } }, { - "id": 13870, + "id": 15654, "properties": { "east": "low", "north": "low", @@ -111410,7 +123064,7 @@ } }, { - "id": 13871, + "id": 15655, "properties": { "east": "low", "north": "low", @@ -111421,7 +123075,7 @@ } }, { - "id": 13872, + "id": 15656, "properties": { "east": "low", "north": "tall", @@ -111432,7 +123086,7 @@ } }, { - "id": 13873, + "id": 15657, "properties": { "east": "low", "north": "tall", @@ -111443,7 +123097,7 @@ } }, { - "id": 13874, + "id": 15658, "properties": { "east": "low", "north": "tall", @@ -111454,7 +123108,7 @@ } }, { - "id": 13875, + "id": 15659, "properties": { "east": "low", "north": "tall", @@ -111465,7 +123119,7 @@ } }, { - "id": 13876, + "id": 15660, "properties": { "east": "low", "north": "tall", @@ -111476,7 +123130,7 @@ } }, { - "id": 13877, + "id": 15661, "properties": { "east": "low", "north": "tall", @@ -111487,7 +123141,7 @@ } }, { - "id": 13878, + "id": 15662, "properties": { "east": "low", "north": "tall", @@ -111498,7 +123152,7 @@ } }, { - "id": 13879, + "id": 15663, "properties": { "east": "low", "north": "tall", @@ -111509,7 +123163,7 @@ } }, { - "id": 13880, + "id": 15664, "properties": { "east": "low", "north": "tall", @@ -111520,7 +123174,7 @@ } }, { - "id": 13881, + "id": 15665, "properties": { "east": "low", "north": "tall", @@ -111531,7 +123185,7 @@ } }, { - "id": 13882, + "id": 15666, "properties": { "east": "low", "north": "tall", @@ -111542,7 +123196,7 @@ } }, { - "id": 13883, + "id": 15667, "properties": { "east": "low", "north": "tall", @@ -111553,7 +123207,7 @@ } }, { - "id": 13884, + "id": 15668, "properties": { "east": "low", "north": "tall", @@ -111564,7 +123218,7 @@ } }, { - "id": 13885, + "id": 15669, "properties": { "east": "low", "north": "tall", @@ -111575,7 +123229,7 @@ } }, { - "id": 13886, + "id": 15670, "properties": { "east": "low", "north": "tall", @@ -111586,7 +123240,7 @@ } }, { - "id": 13887, + "id": 15671, "properties": { "east": "low", "north": "tall", @@ -111597,7 +123251,7 @@ } }, { - "id": 13888, + "id": 15672, "properties": { "east": "low", "north": "tall", @@ -111608,7 +123262,7 @@ } }, { - "id": 13889, + "id": 15673, "properties": { "east": "low", "north": "tall", @@ -111619,7 +123273,7 @@ } }, { - "id": 13890, + "id": 15674, "properties": { "east": "low", "north": "tall", @@ -111630,7 +123284,7 @@ } }, { - "id": 13891, + "id": 15675, "properties": { "east": "low", "north": "tall", @@ -111641,7 +123295,7 @@ } }, { - "id": 13892, + "id": 15676, "properties": { "east": "low", "north": "tall", @@ -111652,7 +123306,7 @@ } }, { - "id": 13893, + "id": 15677, "properties": { "east": "low", "north": "tall", @@ -111663,7 +123317,7 @@ } }, { - "id": 13894, + "id": 15678, "properties": { "east": "low", "north": "tall", @@ -111674,7 +123328,7 @@ } }, { - "id": 13895, + "id": 15679, "properties": { "east": "low", "north": "tall", @@ -111685,7 +123339,7 @@ } }, { - "id": 13896, + "id": 15680, "properties": { "east": "low", "north": "tall", @@ -111696,7 +123350,7 @@ } }, { - "id": 13897, + "id": 15681, "properties": { "east": "low", "north": "tall", @@ -111707,7 +123361,7 @@ } }, { - "id": 13898, + "id": 15682, "properties": { "east": "low", "north": "tall", @@ -111718,7 +123372,7 @@ } }, { - "id": 13899, + "id": 15683, "properties": { "east": "low", "north": "tall", @@ -111729,7 +123383,7 @@ } }, { - "id": 13900, + "id": 15684, "properties": { "east": "low", "north": "tall", @@ -111740,7 +123394,7 @@ } }, { - "id": 13901, + "id": 15685, "properties": { "east": "low", "north": "tall", @@ -111751,7 +123405,7 @@ } }, { - "id": 13902, + "id": 15686, "properties": { "east": "low", "north": "tall", @@ -111762,7 +123416,7 @@ } }, { - "id": 13903, + "id": 15687, "properties": { "east": "low", "north": "tall", @@ -111773,7 +123427,7 @@ } }, { - "id": 13904, + "id": 15688, "properties": { "east": "low", "north": "tall", @@ -111784,7 +123438,7 @@ } }, { - "id": 13905, + "id": 15689, "properties": { "east": "low", "north": "tall", @@ -111795,7 +123449,7 @@ } }, { - "id": 13906, + "id": 15690, "properties": { "east": "low", "north": "tall", @@ -111806,7 +123460,7 @@ } }, { - "id": 13907, + "id": 15691, "properties": { "east": "low", "north": "tall", @@ -111817,7 +123471,7 @@ } }, { - "id": 13908, + "id": 15692, "properties": { "east": "tall", "north": "none", @@ -111828,7 +123482,7 @@ } }, { - "id": 13909, + "id": 15693, "properties": { "east": "tall", "north": "none", @@ -111839,7 +123493,7 @@ } }, { - "id": 13910, + "id": 15694, "properties": { "east": "tall", "north": "none", @@ -111850,7 +123504,7 @@ } }, { - "id": 13911, + "id": 15695, "properties": { "east": "tall", "north": "none", @@ -111861,7 +123515,7 @@ } }, { - "id": 13912, + "id": 15696, "properties": { "east": "tall", "north": "none", @@ -111872,7 +123526,7 @@ } }, { - "id": 13913, + "id": 15697, "properties": { "east": "tall", "north": "none", @@ -111883,7 +123537,7 @@ } }, { - "id": 13914, + "id": 15698, "properties": { "east": "tall", "north": "none", @@ -111894,7 +123548,7 @@ } }, { - "id": 13915, + "id": 15699, "properties": { "east": "tall", "north": "none", @@ -111905,7 +123559,7 @@ } }, { - "id": 13916, + "id": 15700, "properties": { "east": "tall", "north": "none", @@ -111916,7 +123570,7 @@ } }, { - "id": 13917, + "id": 15701, "properties": { "east": "tall", "north": "none", @@ -111927,7 +123581,7 @@ } }, { - "id": 13918, + "id": 15702, "properties": { "east": "tall", "north": "none", @@ -111938,7 +123592,7 @@ } }, { - "id": 13919, + "id": 15703, "properties": { "east": "tall", "north": "none", @@ -111949,7 +123603,7 @@ } }, { - "id": 13920, + "id": 15704, "properties": { "east": "tall", "north": "none", @@ -111960,7 +123614,7 @@ } }, { - "id": 13921, + "id": 15705, "properties": { "east": "tall", "north": "none", @@ -111971,7 +123625,7 @@ } }, { - "id": 13922, + "id": 15706, "properties": { "east": "tall", "north": "none", @@ -111982,7 +123636,7 @@ } }, { - "id": 13923, + "id": 15707, "properties": { "east": "tall", "north": "none", @@ -111993,7 +123647,7 @@ } }, { - "id": 13924, + "id": 15708, "properties": { "east": "tall", "north": "none", @@ -112004,7 +123658,7 @@ } }, { - "id": 13925, + "id": 15709, "properties": { "east": "tall", "north": "none", @@ -112015,7 +123669,7 @@ } }, { - "id": 13926, + "id": 15710, "properties": { "east": "tall", "north": "none", @@ -112026,7 +123680,7 @@ } }, { - "id": 13927, + "id": 15711, "properties": { "east": "tall", "north": "none", @@ -112037,7 +123691,7 @@ } }, { - "id": 13928, + "id": 15712, "properties": { "east": "tall", "north": "none", @@ -112048,7 +123702,7 @@ } }, { - "id": 13929, + "id": 15713, "properties": { "east": "tall", "north": "none", @@ -112059,7 +123713,7 @@ } }, { - "id": 13930, + "id": 15714, "properties": { "east": "tall", "north": "none", @@ -112070,7 +123724,7 @@ } }, { - "id": 13931, + "id": 15715, "properties": { "east": "tall", "north": "none", @@ -112081,7 +123735,7 @@ } }, { - "id": 13932, + "id": 15716, "properties": { "east": "tall", "north": "none", @@ -112092,7 +123746,7 @@ } }, { - "id": 13933, + "id": 15717, "properties": { "east": "tall", "north": "none", @@ -112103,7 +123757,7 @@ } }, { - "id": 13934, + "id": 15718, "properties": { "east": "tall", "north": "none", @@ -112114,7 +123768,7 @@ } }, { - "id": 13935, + "id": 15719, "properties": { "east": "tall", "north": "none", @@ -112125,7 +123779,7 @@ } }, { - "id": 13936, + "id": 15720, "properties": { "east": "tall", "north": "none", @@ -112136,7 +123790,7 @@ } }, { - "id": 13937, + "id": 15721, "properties": { "east": "tall", "north": "none", @@ -112147,7 +123801,7 @@ } }, { - "id": 13938, + "id": 15722, "properties": { "east": "tall", "north": "none", @@ -112158,7 +123812,7 @@ } }, { - "id": 13939, + "id": 15723, "properties": { "east": "tall", "north": "none", @@ -112169,7 +123823,7 @@ } }, { - "id": 13940, + "id": 15724, "properties": { "east": "tall", "north": "none", @@ -112180,7 +123834,7 @@ } }, { - "id": 13941, + "id": 15725, "properties": { "east": "tall", "north": "none", @@ -112191,7 +123845,7 @@ } }, { - "id": 13942, + "id": 15726, "properties": { "east": "tall", "north": "none", @@ -112202,7 +123856,7 @@ } }, { - "id": 13943, + "id": 15727, "properties": { "east": "tall", "north": "none", @@ -112213,7 +123867,7 @@ } }, { - "id": 13944, + "id": 15728, "properties": { "east": "tall", "north": "low", @@ -112224,7 +123878,7 @@ } }, { - "id": 13945, + "id": 15729, "properties": { "east": "tall", "north": "low", @@ -112235,7 +123889,7 @@ } }, { - "id": 13946, + "id": 15730, "properties": { "east": "tall", "north": "low", @@ -112246,7 +123900,7 @@ } }, { - "id": 13947, + "id": 15731, "properties": { "east": "tall", "north": "low", @@ -112257,7 +123911,7 @@ } }, { - "id": 13948, + "id": 15732, "properties": { "east": "tall", "north": "low", @@ -112268,7 +123922,7 @@ } }, { - "id": 13949, + "id": 15733, "properties": { "east": "tall", "north": "low", @@ -112279,7 +123933,7 @@ } }, { - "id": 13950, + "id": 15734, "properties": { "east": "tall", "north": "low", @@ -112290,7 +123944,7 @@ } }, { - "id": 13951, + "id": 15735, "properties": { "east": "tall", "north": "low", @@ -112301,7 +123955,7 @@ } }, { - "id": 13952, + "id": 15736, "properties": { "east": "tall", "north": "low", @@ -112312,7 +123966,7 @@ } }, { - "id": 13953, + "id": 15737, "properties": { "east": "tall", "north": "low", @@ -112323,7 +123977,7 @@ } }, { - "id": 13954, + "id": 15738, "properties": { "east": "tall", "north": "low", @@ -112334,7 +123988,7 @@ } }, { - "id": 13955, + "id": 15739, "properties": { "east": "tall", "north": "low", @@ -112345,7 +123999,7 @@ } }, { - "id": 13956, + "id": 15740, "properties": { "east": "tall", "north": "low", @@ -112356,7 +124010,7 @@ } }, { - "id": 13957, + "id": 15741, "properties": { "east": "tall", "north": "low", @@ -112367,7 +124021,7 @@ } }, { - "id": 13958, + "id": 15742, "properties": { "east": "tall", "north": "low", @@ -112378,7 +124032,7 @@ } }, { - "id": 13959, + "id": 15743, "properties": { "east": "tall", "north": "low", @@ -112389,7 +124043,7 @@ } }, { - "id": 13960, + "id": 15744, "properties": { "east": "tall", "north": "low", @@ -112400,7 +124054,7 @@ } }, { - "id": 13961, + "id": 15745, "properties": { "east": "tall", "north": "low", @@ -112411,7 +124065,7 @@ } }, { - "id": 13962, + "id": 15746, "properties": { "east": "tall", "north": "low", @@ -112422,7 +124076,7 @@ } }, { - "id": 13963, + "id": 15747, "properties": { "east": "tall", "north": "low", @@ -112433,7 +124087,7 @@ } }, { - "id": 13964, + "id": 15748, "properties": { "east": "tall", "north": "low", @@ -112444,7 +124098,7 @@ } }, { - "id": 13965, + "id": 15749, "properties": { "east": "tall", "north": "low", @@ -112455,7 +124109,7 @@ } }, { - "id": 13966, + "id": 15750, "properties": { "east": "tall", "north": "low", @@ -112466,7 +124120,7 @@ } }, { - "id": 13967, + "id": 15751, "properties": { "east": "tall", "north": "low", @@ -112477,7 +124131,7 @@ } }, { - "id": 13968, + "id": 15752, "properties": { "east": "tall", "north": "low", @@ -112488,7 +124142,7 @@ } }, { - "id": 13969, + "id": 15753, "properties": { "east": "tall", "north": "low", @@ -112499,7 +124153,7 @@ } }, { - "id": 13970, + "id": 15754, "properties": { "east": "tall", "north": "low", @@ -112510,7 +124164,7 @@ } }, { - "id": 13971, + "id": 15755, "properties": { "east": "tall", "north": "low", @@ -112521,7 +124175,7 @@ } }, { - "id": 13972, + "id": 15756, "properties": { "east": "tall", "north": "low", @@ -112532,7 +124186,7 @@ } }, { - "id": 13973, + "id": 15757, "properties": { "east": "tall", "north": "low", @@ -112543,7 +124197,7 @@ } }, { - "id": 13974, + "id": 15758, "properties": { "east": "tall", "north": "low", @@ -112554,7 +124208,7 @@ } }, { - "id": 13975, + "id": 15759, "properties": { "east": "tall", "north": "low", @@ -112565,7 +124219,7 @@ } }, { - "id": 13976, + "id": 15760, "properties": { "east": "tall", "north": "low", @@ -112576,7 +124230,7 @@ } }, { - "id": 13977, + "id": 15761, "properties": { "east": "tall", "north": "low", @@ -112587,7 +124241,7 @@ } }, { - "id": 13978, + "id": 15762, "properties": { "east": "tall", "north": "low", @@ -112598,7 +124252,7 @@ } }, { - "id": 13979, + "id": 15763, "properties": { "east": "tall", "north": "low", @@ -112609,7 +124263,7 @@ } }, { - "id": 13980, + "id": 15764, "properties": { "east": "tall", "north": "tall", @@ -112620,7 +124274,7 @@ } }, { - "id": 13981, + "id": 15765, "properties": { "east": "tall", "north": "tall", @@ -112631,7 +124285,7 @@ } }, { - "id": 13982, + "id": 15766, "properties": { "east": "tall", "north": "tall", @@ -112642,7 +124296,7 @@ } }, { - "id": 13983, + "id": 15767, "properties": { "east": "tall", "north": "tall", @@ -112653,7 +124307,7 @@ } }, { - "id": 13984, + "id": 15768, "properties": { "east": "tall", "north": "tall", @@ -112664,7 +124318,7 @@ } }, { - "id": 13985, + "id": 15769, "properties": { "east": "tall", "north": "tall", @@ -112675,7 +124329,7 @@ } }, { - "id": 13986, + "id": 15770, "properties": { "east": "tall", "north": "tall", @@ -112686,7 +124340,7 @@ } }, { - "id": 13987, + "id": 15771, "properties": { "east": "tall", "north": "tall", @@ -112697,7 +124351,7 @@ } }, { - "id": 13988, + "id": 15772, "properties": { "east": "tall", "north": "tall", @@ -112708,7 +124362,7 @@ } }, { - "id": 13989, + "id": 15773, "properties": { "east": "tall", "north": "tall", @@ -112719,7 +124373,7 @@ } }, { - "id": 13990, + "id": 15774, "properties": { "east": "tall", "north": "tall", @@ -112730,7 +124384,7 @@ } }, { - "id": 13991, + "id": 15775, "properties": { "east": "tall", "north": "tall", @@ -112741,7 +124395,7 @@ } }, { - "id": 13992, + "id": 15776, "properties": { "east": "tall", "north": "tall", @@ -112752,7 +124406,7 @@ } }, { - "id": 13993, + "id": 15777, "properties": { "east": "tall", "north": "tall", @@ -112763,7 +124417,7 @@ } }, { - "id": 13994, + "id": 15778, "properties": { "east": "tall", "north": "tall", @@ -112774,7 +124428,7 @@ } }, { - "id": 13995, + "id": 15779, "properties": { "east": "tall", "north": "tall", @@ -112785,7 +124439,7 @@ } }, { - "id": 13996, + "id": 15780, "properties": { "east": "tall", "north": "tall", @@ -112796,7 +124450,7 @@ } }, { - "id": 13997, + "id": 15781, "properties": { "east": "tall", "north": "tall", @@ -112807,7 +124461,7 @@ } }, { - "id": 13998, + "id": 15782, "properties": { "east": "tall", "north": "tall", @@ -112818,7 +124472,7 @@ } }, { - "id": 13999, + "id": 15783, "properties": { "east": "tall", "north": "tall", @@ -112829,7 +124483,7 @@ } }, { - "id": 14000, + "id": 15784, "properties": { "east": "tall", "north": "tall", @@ -112840,7 +124494,7 @@ } }, { - "id": 14001, + "id": 15785, "properties": { "east": "tall", "north": "tall", @@ -112851,7 +124505,7 @@ } }, { - "id": 14002, + "id": 15786, "properties": { "east": "tall", "north": "tall", @@ -112862,7 +124516,7 @@ } }, { - "id": 14003, + "id": 15787, "properties": { "east": "tall", "north": "tall", @@ -112873,7 +124527,7 @@ } }, { - "id": 14004, + "id": 15788, "properties": { "east": "tall", "north": "tall", @@ -112884,7 +124538,7 @@ } }, { - "id": 14005, + "id": 15789, "properties": { "east": "tall", "north": "tall", @@ -112895,7 +124549,7 @@ } }, { - "id": 14006, + "id": 15790, "properties": { "east": "tall", "north": "tall", @@ -112906,7 +124560,7 @@ } }, { - "id": 14007, + "id": 15791, "properties": { "east": "tall", "north": "tall", @@ -112917,7 +124571,7 @@ } }, { - "id": 14008, + "id": 15792, "properties": { "east": "tall", "north": "tall", @@ -112928,7 +124582,7 @@ } }, { - "id": 14009, + "id": 15793, "properties": { "east": "tall", "north": "tall", @@ -112939,7 +124593,7 @@ } }, { - "id": 14010, + "id": 15794, "properties": { "east": "tall", "north": "tall", @@ -112950,7 +124604,7 @@ } }, { - "id": 14011, + "id": 15795, "properties": { "east": "tall", "north": "tall", @@ -112961,7 +124615,7 @@ } }, { - "id": 14012, + "id": 15796, "properties": { "east": "tall", "north": "tall", @@ -112972,7 +124626,7 @@ } }, { - "id": 14013, + "id": 15797, "properties": { "east": "tall", "north": "tall", @@ -112983,7 +124637,7 @@ } }, { - "id": 14014, + "id": 15798, "properties": { "east": "tall", "north": "tall", @@ -112994,7 +124648,7 @@ } }, { - "id": 14015, + "id": 15799, "properties": { "east": "tall", "north": "tall", @@ -113010,7 +124664,7 @@ "states": [ { "default": true, - "id": 4873 + "id": 6313 } ] }, @@ -113024,20 +124678,20 @@ }, "states": [ { - "id": 140, + "id": 142, "properties": { "axis": "x" } }, { "default": true, - "id": 141, + "id": 143, "properties": { "axis": "y" } }, { - "id": 142, + "id": 144, "properties": { "axis": "z" } @@ -113074,7 +124728,7 @@ "states": [ { "default": true, - "id": 5008, + "id": 6448, "properties": { "down": "true", "east": "true", @@ -113085,7 +124739,7 @@ } }, { - "id": 5009, + "id": 6449, "properties": { "down": "true", "east": "true", @@ -113096,7 +124750,7 @@ } }, { - "id": 5010, + "id": 6450, "properties": { "down": "true", "east": "true", @@ -113107,7 +124761,7 @@ } }, { - "id": 5011, + "id": 6451, "properties": { "down": "true", "east": "true", @@ -113118,7 +124772,7 @@ } }, { - "id": 5012, + "id": 6452, "properties": { "down": "true", "east": "true", @@ -113129,7 +124783,7 @@ } }, { - "id": 5013, + "id": 6453, "properties": { "down": "true", "east": "true", @@ -113140,7 +124794,7 @@ } }, { - "id": 5014, + "id": 6454, "properties": { "down": "true", "east": "true", @@ -113151,7 +124805,7 @@ } }, { - "id": 5015, + "id": 6455, "properties": { "down": "true", "east": "true", @@ -113162,7 +124816,7 @@ } }, { - "id": 5016, + "id": 6456, "properties": { "down": "true", "east": "true", @@ -113173,7 +124827,7 @@ } }, { - "id": 5017, + "id": 6457, "properties": { "down": "true", "east": "true", @@ -113184,7 +124838,7 @@ } }, { - "id": 5018, + "id": 6458, "properties": { "down": "true", "east": "true", @@ -113195,7 +124849,7 @@ } }, { - "id": 5019, + "id": 6459, "properties": { "down": "true", "east": "true", @@ -113206,7 +124860,7 @@ } }, { - "id": 5020, + "id": 6460, "properties": { "down": "true", "east": "true", @@ -113217,7 +124871,7 @@ } }, { - "id": 5021, + "id": 6461, "properties": { "down": "true", "east": "true", @@ -113228,7 +124882,7 @@ } }, { - "id": 5022, + "id": 6462, "properties": { "down": "true", "east": "true", @@ -113239,7 +124893,7 @@ } }, { - "id": 5023, + "id": 6463, "properties": { "down": "true", "east": "true", @@ -113250,7 +124904,7 @@ } }, { - "id": 5024, + "id": 6464, "properties": { "down": "true", "east": "false", @@ -113261,7 +124915,7 @@ } }, { - "id": 5025, + "id": 6465, "properties": { "down": "true", "east": "false", @@ -113272,7 +124926,7 @@ } }, { - "id": 5026, + "id": 6466, "properties": { "down": "true", "east": "false", @@ -113283,7 +124937,7 @@ } }, { - "id": 5027, + "id": 6467, "properties": { "down": "true", "east": "false", @@ -113294,7 +124948,7 @@ } }, { - "id": 5028, + "id": 6468, "properties": { "down": "true", "east": "false", @@ -113305,7 +124959,7 @@ } }, { - "id": 5029, + "id": 6469, "properties": { "down": "true", "east": "false", @@ -113316,7 +124970,7 @@ } }, { - "id": 5030, + "id": 6470, "properties": { "down": "true", "east": "false", @@ -113327,7 +124981,7 @@ } }, { - "id": 5031, + "id": 6471, "properties": { "down": "true", "east": "false", @@ -113338,7 +124992,7 @@ } }, { - "id": 5032, + "id": 6472, "properties": { "down": "true", "east": "false", @@ -113349,7 +125003,7 @@ } }, { - "id": 5033, + "id": 6473, "properties": { "down": "true", "east": "false", @@ -113360,7 +125014,7 @@ } }, { - "id": 5034, + "id": 6474, "properties": { "down": "true", "east": "false", @@ -113371,7 +125025,7 @@ } }, { - "id": 5035, + "id": 6475, "properties": { "down": "true", "east": "false", @@ -113382,7 +125036,7 @@ } }, { - "id": 5036, + "id": 6476, "properties": { "down": "true", "east": "false", @@ -113393,7 +125047,7 @@ } }, { - "id": 5037, + "id": 6477, "properties": { "down": "true", "east": "false", @@ -113404,7 +125058,7 @@ } }, { - "id": 5038, + "id": 6478, "properties": { "down": "true", "east": "false", @@ -113415,7 +125069,7 @@ } }, { - "id": 5039, + "id": 6479, "properties": { "down": "true", "east": "false", @@ -113426,7 +125080,7 @@ } }, { - "id": 5040, + "id": 6480, "properties": { "down": "false", "east": "true", @@ -113437,7 +125091,7 @@ } }, { - "id": 5041, + "id": 6481, "properties": { "down": "false", "east": "true", @@ -113448,7 +125102,7 @@ } }, { - "id": 5042, + "id": 6482, "properties": { "down": "false", "east": "true", @@ -113459,7 +125113,7 @@ } }, { - "id": 5043, + "id": 6483, "properties": { "down": "false", "east": "true", @@ -113470,7 +125124,7 @@ } }, { - "id": 5044, + "id": 6484, "properties": { "down": "false", "east": "true", @@ -113481,7 +125135,7 @@ } }, { - "id": 5045, + "id": 6485, "properties": { "down": "false", "east": "true", @@ -113492,7 +125146,7 @@ } }, { - "id": 5046, + "id": 6486, "properties": { "down": "false", "east": "true", @@ -113503,7 +125157,7 @@ } }, { - "id": 5047, + "id": 6487, "properties": { "down": "false", "east": "true", @@ -113514,7 +125168,7 @@ } }, { - "id": 5048, + "id": 6488, "properties": { "down": "false", "east": "true", @@ -113525,7 +125179,7 @@ } }, { - "id": 5049, + "id": 6489, "properties": { "down": "false", "east": "true", @@ -113536,7 +125190,7 @@ } }, { - "id": 5050, + "id": 6490, "properties": { "down": "false", "east": "true", @@ -113547,7 +125201,7 @@ } }, { - "id": 5051, + "id": 6491, "properties": { "down": "false", "east": "true", @@ -113558,7 +125212,7 @@ } }, { - "id": 5052, + "id": 6492, "properties": { "down": "false", "east": "true", @@ -113569,7 +125223,7 @@ } }, { - "id": 5053, + "id": 6493, "properties": { "down": "false", "east": "true", @@ -113580,7 +125234,7 @@ } }, { - "id": 5054, + "id": 6494, "properties": { "down": "false", "east": "true", @@ -113591,7 +125245,7 @@ } }, { - "id": 5055, + "id": 6495, "properties": { "down": "false", "east": "true", @@ -113602,7 +125256,7 @@ } }, { - "id": 5056, + "id": 6496, "properties": { "down": "false", "east": "false", @@ -113613,7 +125267,7 @@ } }, { - "id": 5057, + "id": 6497, "properties": { "down": "false", "east": "false", @@ -113624,7 +125278,7 @@ } }, { - "id": 5058, + "id": 6498, "properties": { "down": "false", "east": "false", @@ -113635,7 +125289,7 @@ } }, { - "id": 5059, + "id": 6499, "properties": { "down": "false", "east": "false", @@ -113646,7 +125300,7 @@ } }, { - "id": 5060, + "id": 6500, "properties": { "down": "false", "east": "false", @@ -113657,7 +125311,7 @@ } }, { - "id": 5061, + "id": 6501, "properties": { "down": "false", "east": "false", @@ -113668,7 +125322,7 @@ } }, { - "id": 5062, + "id": 6502, "properties": { "down": "false", "east": "false", @@ -113679,7 +125333,7 @@ } }, { - "id": 5063, + "id": 6503, "properties": { "down": "false", "east": "false", @@ -113690,7 +125344,7 @@ } }, { - "id": 5064, + "id": 6504, "properties": { "down": "false", "east": "false", @@ -113701,7 +125355,7 @@ } }, { - "id": 5065, + "id": 6505, "properties": { "down": "false", "east": "false", @@ -113712,7 +125366,7 @@ } }, { - "id": 5066, + "id": 6506, "properties": { "down": "false", "east": "false", @@ -113723,7 +125377,7 @@ } }, { - "id": 5067, + "id": 6507, "properties": { "down": "false", "east": "false", @@ -113734,7 +125388,7 @@ } }, { - "id": 5068, + "id": 6508, "properties": { "down": "false", "east": "false", @@ -113745,7 +125399,7 @@ } }, { - "id": 5069, + "id": 6509, "properties": { "down": "false", "east": "false", @@ -113756,7 +125410,7 @@ } }, { - "id": 5070, + "id": 6510, "properties": { "down": "false", "east": "false", @@ -113767,7 +125421,7 @@ } }, { - "id": 5071, + "id": 6511, "properties": { "down": "false", "east": "false", @@ -113788,14 +125442,14 @@ }, "states": [ { - "id": 5599, + "id": 7039, "properties": { "snowy": "true" } }, { "default": true, - "id": 5600, + "id": 7040, "properties": { "snowy": "false" } @@ -113827,7 +125481,7 @@ }, "states": [ { - "id": 5603, + "id": 7043, "properties": { "east": "true", "north": "true", @@ -113837,7 +125491,7 @@ } }, { - "id": 5604, + "id": 7044, "properties": { "east": "true", "north": "true", @@ -113847,7 +125501,7 @@ } }, { - "id": 5605, + "id": 7045, "properties": { "east": "true", "north": "true", @@ -113857,7 +125511,7 @@ } }, { - "id": 5606, + "id": 7046, "properties": { "east": "true", "north": "true", @@ -113867,7 +125521,7 @@ } }, { - "id": 5607, + "id": 7047, "properties": { "east": "true", "north": "true", @@ -113877,7 +125531,7 @@ } }, { - "id": 5608, + "id": 7048, "properties": { "east": "true", "north": "true", @@ -113887,7 +125541,7 @@ } }, { - "id": 5609, + "id": 7049, "properties": { "east": "true", "north": "true", @@ -113897,7 +125551,7 @@ } }, { - "id": 5610, + "id": 7050, "properties": { "east": "true", "north": "true", @@ -113907,7 +125561,7 @@ } }, { - "id": 5611, + "id": 7051, "properties": { "east": "true", "north": "false", @@ -113917,7 +125571,7 @@ } }, { - "id": 5612, + "id": 7052, "properties": { "east": "true", "north": "false", @@ -113927,7 +125581,7 @@ } }, { - "id": 5613, + "id": 7053, "properties": { "east": "true", "north": "false", @@ -113937,7 +125591,7 @@ } }, { - "id": 5614, + "id": 7054, "properties": { "east": "true", "north": "false", @@ -113947,7 +125601,7 @@ } }, { - "id": 5615, + "id": 7055, "properties": { "east": "true", "north": "false", @@ -113957,7 +125611,7 @@ } }, { - "id": 5616, + "id": 7056, "properties": { "east": "true", "north": "false", @@ -113967,7 +125621,7 @@ } }, { - "id": 5617, + "id": 7057, "properties": { "east": "true", "north": "false", @@ -113977,7 +125631,7 @@ } }, { - "id": 5618, + "id": 7058, "properties": { "east": "true", "north": "false", @@ -113987,7 +125641,7 @@ } }, { - "id": 5619, + "id": 7059, "properties": { "east": "false", "north": "true", @@ -113997,7 +125651,7 @@ } }, { - "id": 5620, + "id": 7060, "properties": { "east": "false", "north": "true", @@ -114007,7 +125661,7 @@ } }, { - "id": 5621, + "id": 7061, "properties": { "east": "false", "north": "true", @@ -114017,7 +125671,7 @@ } }, { - "id": 5622, + "id": 7062, "properties": { "east": "false", "north": "true", @@ -114027,7 +125681,7 @@ } }, { - "id": 5623, + "id": 7063, "properties": { "east": "false", "north": "true", @@ -114037,7 +125691,7 @@ } }, { - "id": 5624, + "id": 7064, "properties": { "east": "false", "north": "true", @@ -114047,7 +125701,7 @@ } }, { - "id": 5625, + "id": 7065, "properties": { "east": "false", "north": "true", @@ -114057,7 +125711,7 @@ } }, { - "id": 5626, + "id": 7066, "properties": { "east": "false", "north": "true", @@ -114067,7 +125721,7 @@ } }, { - "id": 5627, + "id": 7067, "properties": { "east": "false", "north": "false", @@ -114077,7 +125731,7 @@ } }, { - "id": 5628, + "id": 7068, "properties": { "east": "false", "north": "false", @@ -114087,7 +125741,7 @@ } }, { - "id": 5629, + "id": 7069, "properties": { "east": "false", "north": "false", @@ -114097,7 +125751,7 @@ } }, { - "id": 5630, + "id": 7070, "properties": { "east": "false", "north": "false", @@ -114107,7 +125761,7 @@ } }, { - "id": 5631, + "id": 7071, "properties": { "east": "false", "north": "false", @@ -114117,7 +125771,7 @@ } }, { - "id": 5632, + "id": 7072, "properties": { "east": "false", "north": "false", @@ -114127,7 +125781,7 @@ } }, { - "id": 5633, + "id": 7073, "properties": { "east": "false", "north": "false", @@ -114138,7 +125792,7 @@ }, { "default": true, - "id": 5634, + "id": 7074, "properties": { "east": "false", "north": "false", @@ -114163,21 +125817,21 @@ }, "states": [ { - "id": 9137, + "id": 10793, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 9138, + "id": 10794, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 9139, + "id": 10795, "properties": { "type": "bottom", "waterlogged": "true" @@ -114185,21 +125839,21 @@ }, { "default": true, - "id": 9140, + "id": 10796, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 9141, + "id": 10797, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 9142, + "id": 10798, "properties": { "type": "double", "waterlogged": "false" @@ -114233,7 +125887,7 @@ }, "states": [ { - "id": 5635, + "id": 7075, "properties": { "facing": "north", "half": "top", @@ -114242,7 +125896,7 @@ } }, { - "id": 5636, + "id": 7076, "properties": { "facing": "north", "half": "top", @@ -114251,7 +125905,7 @@ } }, { - "id": 5637, + "id": 7077, "properties": { "facing": "north", "half": "top", @@ -114260,7 +125914,7 @@ } }, { - "id": 5638, + "id": 7078, "properties": { "facing": "north", "half": "top", @@ -114269,7 +125923,7 @@ } }, { - "id": 5639, + "id": 7079, "properties": { "facing": "north", "half": "top", @@ -114278,7 +125932,7 @@ } }, { - "id": 5640, + "id": 7080, "properties": { "facing": "north", "half": "top", @@ -114287,7 +125941,7 @@ } }, { - "id": 5641, + "id": 7081, "properties": { "facing": "north", "half": "top", @@ -114296,7 +125950,7 @@ } }, { - "id": 5642, + "id": 7082, "properties": { "facing": "north", "half": "top", @@ -114305,7 +125959,7 @@ } }, { - "id": 5643, + "id": 7083, "properties": { "facing": "north", "half": "top", @@ -114314,7 +125968,7 @@ } }, { - "id": 5644, + "id": 7084, "properties": { "facing": "north", "half": "top", @@ -114323,7 +125977,7 @@ } }, { - "id": 5645, + "id": 7085, "properties": { "facing": "north", "half": "bottom", @@ -114333,7 +125987,7 @@ }, { "default": true, - "id": 5646, + "id": 7086, "properties": { "facing": "north", "half": "bottom", @@ -114342,7 +125996,7 @@ } }, { - "id": 5647, + "id": 7087, "properties": { "facing": "north", "half": "bottom", @@ -114351,7 +126005,7 @@ } }, { - "id": 5648, + "id": 7088, "properties": { "facing": "north", "half": "bottom", @@ -114360,7 +126014,7 @@ } }, { - "id": 5649, + "id": 7089, "properties": { "facing": "north", "half": "bottom", @@ -114369,7 +126023,7 @@ } }, { - "id": 5650, + "id": 7090, "properties": { "facing": "north", "half": "bottom", @@ -114378,7 +126032,7 @@ } }, { - "id": 5651, + "id": 7091, "properties": { "facing": "north", "half": "bottom", @@ -114387,7 +126041,7 @@ } }, { - "id": 5652, + "id": 7092, "properties": { "facing": "north", "half": "bottom", @@ -114396,7 +126050,7 @@ } }, { - "id": 5653, + "id": 7093, "properties": { "facing": "north", "half": "bottom", @@ -114405,7 +126059,7 @@ } }, { - "id": 5654, + "id": 7094, "properties": { "facing": "north", "half": "bottom", @@ -114414,7 +126068,7 @@ } }, { - "id": 5655, + "id": 7095, "properties": { "facing": "south", "half": "top", @@ -114423,7 +126077,7 @@ } }, { - "id": 5656, + "id": 7096, "properties": { "facing": "south", "half": "top", @@ -114432,7 +126086,7 @@ } }, { - "id": 5657, + "id": 7097, "properties": { "facing": "south", "half": "top", @@ -114441,7 +126095,7 @@ } }, { - "id": 5658, + "id": 7098, "properties": { "facing": "south", "half": "top", @@ -114450,7 +126104,7 @@ } }, { - "id": 5659, + "id": 7099, "properties": { "facing": "south", "half": "top", @@ -114459,7 +126113,7 @@ } }, { - "id": 5660, + "id": 7100, "properties": { "facing": "south", "half": "top", @@ -114468,7 +126122,7 @@ } }, { - "id": 5661, + "id": 7101, "properties": { "facing": "south", "half": "top", @@ -114477,7 +126131,7 @@ } }, { - "id": 5662, + "id": 7102, "properties": { "facing": "south", "half": "top", @@ -114486,7 +126140,7 @@ } }, { - "id": 5663, + "id": 7103, "properties": { "facing": "south", "half": "top", @@ -114495,7 +126149,7 @@ } }, { - "id": 5664, + "id": 7104, "properties": { "facing": "south", "half": "top", @@ -114504,7 +126158,7 @@ } }, { - "id": 5665, + "id": 7105, "properties": { "facing": "south", "half": "bottom", @@ -114513,7 +126167,7 @@ } }, { - "id": 5666, + "id": 7106, "properties": { "facing": "south", "half": "bottom", @@ -114522,7 +126176,7 @@ } }, { - "id": 5667, + "id": 7107, "properties": { "facing": "south", "half": "bottom", @@ -114531,7 +126185,7 @@ } }, { - "id": 5668, + "id": 7108, "properties": { "facing": "south", "half": "bottom", @@ -114540,7 +126194,7 @@ } }, { - "id": 5669, + "id": 7109, "properties": { "facing": "south", "half": "bottom", @@ -114549,7 +126203,7 @@ } }, { - "id": 5670, + "id": 7110, "properties": { "facing": "south", "half": "bottom", @@ -114558,7 +126212,7 @@ } }, { - "id": 5671, + "id": 7111, "properties": { "facing": "south", "half": "bottom", @@ -114567,7 +126221,7 @@ } }, { - "id": 5672, + "id": 7112, "properties": { "facing": "south", "half": "bottom", @@ -114576,7 +126230,7 @@ } }, { - "id": 5673, + "id": 7113, "properties": { "facing": "south", "half": "bottom", @@ -114585,7 +126239,7 @@ } }, { - "id": 5674, + "id": 7114, "properties": { "facing": "south", "half": "bottom", @@ -114594,7 +126248,7 @@ } }, { - "id": 5675, + "id": 7115, "properties": { "facing": "west", "half": "top", @@ -114603,7 +126257,7 @@ } }, { - "id": 5676, + "id": 7116, "properties": { "facing": "west", "half": "top", @@ -114612,7 +126266,7 @@ } }, { - "id": 5677, + "id": 7117, "properties": { "facing": "west", "half": "top", @@ -114621,7 +126275,7 @@ } }, { - "id": 5678, + "id": 7118, "properties": { "facing": "west", "half": "top", @@ -114630,7 +126284,7 @@ } }, { - "id": 5679, + "id": 7119, "properties": { "facing": "west", "half": "top", @@ -114639,7 +126293,7 @@ } }, { - "id": 5680, + "id": 7120, "properties": { "facing": "west", "half": "top", @@ -114648,7 +126302,7 @@ } }, { - "id": 5681, + "id": 7121, "properties": { "facing": "west", "half": "top", @@ -114657,7 +126311,7 @@ } }, { - "id": 5682, + "id": 7122, "properties": { "facing": "west", "half": "top", @@ -114666,7 +126320,7 @@ } }, { - "id": 5683, + "id": 7123, "properties": { "facing": "west", "half": "top", @@ -114675,7 +126329,7 @@ } }, { - "id": 5684, + "id": 7124, "properties": { "facing": "west", "half": "top", @@ -114684,7 +126338,7 @@ } }, { - "id": 5685, + "id": 7125, "properties": { "facing": "west", "half": "bottom", @@ -114693,7 +126347,7 @@ } }, { - "id": 5686, + "id": 7126, "properties": { "facing": "west", "half": "bottom", @@ -114702,7 +126356,7 @@ } }, { - "id": 5687, + "id": 7127, "properties": { "facing": "west", "half": "bottom", @@ -114711,7 +126365,7 @@ } }, { - "id": 5688, + "id": 7128, "properties": { "facing": "west", "half": "bottom", @@ -114720,7 +126374,7 @@ } }, { - "id": 5689, + "id": 7129, "properties": { "facing": "west", "half": "bottom", @@ -114729,7 +126383,7 @@ } }, { - "id": 5690, + "id": 7130, "properties": { "facing": "west", "half": "bottom", @@ -114738,7 +126392,7 @@ } }, { - "id": 5691, + "id": 7131, "properties": { "facing": "west", "half": "bottom", @@ -114747,7 +126401,7 @@ } }, { - "id": 5692, + "id": 7132, "properties": { "facing": "west", "half": "bottom", @@ -114756,7 +126410,7 @@ } }, { - "id": 5693, + "id": 7133, "properties": { "facing": "west", "half": "bottom", @@ -114765,7 +126419,7 @@ } }, { - "id": 5694, + "id": 7134, "properties": { "facing": "west", "half": "bottom", @@ -114774,7 +126428,7 @@ } }, { - "id": 5695, + "id": 7135, "properties": { "facing": "east", "half": "top", @@ -114783,7 +126437,7 @@ } }, { - "id": 5696, + "id": 7136, "properties": { "facing": "east", "half": "top", @@ -114792,7 +126446,7 @@ } }, { - "id": 5697, + "id": 7137, "properties": { "facing": "east", "half": "top", @@ -114801,7 +126455,7 @@ } }, { - "id": 5698, + "id": 7138, "properties": { "facing": "east", "half": "top", @@ -114810,7 +126464,7 @@ } }, { - "id": 5699, + "id": 7139, "properties": { "facing": "east", "half": "top", @@ -114819,7 +126473,7 @@ } }, { - "id": 5700, + "id": 7140, "properties": { "facing": "east", "half": "top", @@ -114828,7 +126482,7 @@ } }, { - "id": 5701, + "id": 7141, "properties": { "facing": "east", "half": "top", @@ -114837,7 +126491,7 @@ } }, { - "id": 5702, + "id": 7142, "properties": { "facing": "east", "half": "top", @@ -114846,7 +126500,7 @@ } }, { - "id": 5703, + "id": 7143, "properties": { "facing": "east", "half": "top", @@ -114855,7 +126509,7 @@ } }, { - "id": 5704, + "id": 7144, "properties": { "facing": "east", "half": "top", @@ -114864,7 +126518,7 @@ } }, { - "id": 5705, + "id": 7145, "properties": { "facing": "east", "half": "bottom", @@ -114873,7 +126527,7 @@ } }, { - "id": 5706, + "id": 7146, "properties": { "facing": "east", "half": "bottom", @@ -114882,7 +126536,7 @@ } }, { - "id": 5707, + "id": 7147, "properties": { "facing": "east", "half": "bottom", @@ -114891,7 +126545,7 @@ } }, { - "id": 5708, + "id": 7148, "properties": { "facing": "east", "half": "bottom", @@ -114900,7 +126554,7 @@ } }, { - "id": 5709, + "id": 7149, "properties": { "facing": "east", "half": "bottom", @@ -114909,7 +126563,7 @@ } }, { - "id": 5710, + "id": 7150, "properties": { "facing": "east", "half": "bottom", @@ -114918,7 +126572,7 @@ } }, { - "id": 5711, + "id": 7151, "properties": { "facing": "east", "half": "bottom", @@ -114927,7 +126581,7 @@ } }, { - "id": 5712, + "id": 7152, "properties": { "facing": "east", "half": "bottom", @@ -114936,7 +126590,7 @@ } }, { - "id": 5713, + "id": 7153, "properties": { "facing": "east", "half": "bottom", @@ -114945,7 +126599,7 @@ } }, { - "id": 5714, + "id": 7154, "properties": { "facing": "east", "half": "bottom", @@ -114988,7 +126642,7 @@ }, "states": [ { - "id": 14016, + "id": 15800, "properties": { "east": "none", "north": "none", @@ -114999,7 +126653,7 @@ } }, { - "id": 14017, + "id": 15801, "properties": { "east": "none", "north": "none", @@ -115010,7 +126664,7 @@ } }, { - "id": 14018, + "id": 15802, "properties": { "east": "none", "north": "none", @@ -115022,7 +126676,7 @@ }, { "default": true, - "id": 14019, + "id": 15803, "properties": { "east": "none", "north": "none", @@ -115033,7 +126687,7 @@ } }, { - "id": 14020, + "id": 15804, "properties": { "east": "none", "north": "none", @@ -115044,7 +126698,7 @@ } }, { - "id": 14021, + "id": 15805, "properties": { "east": "none", "north": "none", @@ -115055,7 +126709,7 @@ } }, { - "id": 14022, + "id": 15806, "properties": { "east": "none", "north": "none", @@ -115066,7 +126720,7 @@ } }, { - "id": 14023, + "id": 15807, "properties": { "east": "none", "north": "none", @@ -115077,7 +126731,7 @@ } }, { - "id": 14024, + "id": 15808, "properties": { "east": "none", "north": "none", @@ -115088,7 +126742,7 @@ } }, { - "id": 14025, + "id": 15809, "properties": { "east": "none", "north": "none", @@ -115099,7 +126753,7 @@ } }, { - "id": 14026, + "id": 15810, "properties": { "east": "none", "north": "none", @@ -115110,7 +126764,7 @@ } }, { - "id": 14027, + "id": 15811, "properties": { "east": "none", "north": "none", @@ -115121,7 +126775,7 @@ } }, { - "id": 14028, + "id": 15812, "properties": { "east": "none", "north": "none", @@ -115132,7 +126786,7 @@ } }, { - "id": 14029, + "id": 15813, "properties": { "east": "none", "north": "none", @@ -115143,7 +126797,7 @@ } }, { - "id": 14030, + "id": 15814, "properties": { "east": "none", "north": "none", @@ -115154,7 +126808,7 @@ } }, { - "id": 14031, + "id": 15815, "properties": { "east": "none", "north": "none", @@ -115165,7 +126819,7 @@ } }, { - "id": 14032, + "id": 15816, "properties": { "east": "none", "north": "none", @@ -115176,7 +126830,7 @@ } }, { - "id": 14033, + "id": 15817, "properties": { "east": "none", "north": "none", @@ -115187,7 +126841,7 @@ } }, { - "id": 14034, + "id": 15818, "properties": { "east": "none", "north": "none", @@ -115198,7 +126852,7 @@ } }, { - "id": 14035, + "id": 15819, "properties": { "east": "none", "north": "none", @@ -115209,7 +126863,7 @@ } }, { - "id": 14036, + "id": 15820, "properties": { "east": "none", "north": "none", @@ -115220,7 +126874,7 @@ } }, { - "id": 14037, + "id": 15821, "properties": { "east": "none", "north": "none", @@ -115231,7 +126885,7 @@ } }, { - "id": 14038, + "id": 15822, "properties": { "east": "none", "north": "none", @@ -115242,7 +126896,7 @@ } }, { - "id": 14039, + "id": 15823, "properties": { "east": "none", "north": "none", @@ -115253,7 +126907,7 @@ } }, { - "id": 14040, + "id": 15824, "properties": { "east": "none", "north": "none", @@ -115264,7 +126918,7 @@ } }, { - "id": 14041, + "id": 15825, "properties": { "east": "none", "north": "none", @@ -115275,7 +126929,7 @@ } }, { - "id": 14042, + "id": 15826, "properties": { "east": "none", "north": "none", @@ -115286,7 +126940,7 @@ } }, { - "id": 14043, + "id": 15827, "properties": { "east": "none", "north": "none", @@ -115297,7 +126951,7 @@ } }, { - "id": 14044, + "id": 15828, "properties": { "east": "none", "north": "none", @@ -115308,7 +126962,7 @@ } }, { - "id": 14045, + "id": 15829, "properties": { "east": "none", "north": "none", @@ -115319,7 +126973,7 @@ } }, { - "id": 14046, + "id": 15830, "properties": { "east": "none", "north": "none", @@ -115330,7 +126984,7 @@ } }, { - "id": 14047, + "id": 15831, "properties": { "east": "none", "north": "none", @@ -115341,7 +126995,7 @@ } }, { - "id": 14048, + "id": 15832, "properties": { "east": "none", "north": "none", @@ -115352,7 +127006,7 @@ } }, { - "id": 14049, + "id": 15833, "properties": { "east": "none", "north": "none", @@ -115363,7 +127017,7 @@ } }, { - "id": 14050, + "id": 15834, "properties": { "east": "none", "north": "none", @@ -115374,7 +127028,7 @@ } }, { - "id": 14051, + "id": 15835, "properties": { "east": "none", "north": "none", @@ -115385,7 +127039,7 @@ } }, { - "id": 14052, + "id": 15836, "properties": { "east": "none", "north": "low", @@ -115396,7 +127050,7 @@ } }, { - "id": 14053, + "id": 15837, "properties": { "east": "none", "north": "low", @@ -115407,7 +127061,7 @@ } }, { - "id": 14054, + "id": 15838, "properties": { "east": "none", "north": "low", @@ -115418,7 +127072,7 @@ } }, { - "id": 14055, + "id": 15839, "properties": { "east": "none", "north": "low", @@ -115429,7 +127083,7 @@ } }, { - "id": 14056, + "id": 15840, "properties": { "east": "none", "north": "low", @@ -115440,7 +127094,7 @@ } }, { - "id": 14057, + "id": 15841, "properties": { "east": "none", "north": "low", @@ -115451,7 +127105,7 @@ } }, { - "id": 14058, + "id": 15842, "properties": { "east": "none", "north": "low", @@ -115462,7 +127116,7 @@ } }, { - "id": 14059, + "id": 15843, "properties": { "east": "none", "north": "low", @@ -115473,7 +127127,7 @@ } }, { - "id": 14060, + "id": 15844, "properties": { "east": "none", "north": "low", @@ -115484,7 +127138,7 @@ } }, { - "id": 14061, + "id": 15845, "properties": { "east": "none", "north": "low", @@ -115495,7 +127149,7 @@ } }, { - "id": 14062, + "id": 15846, "properties": { "east": "none", "north": "low", @@ -115506,7 +127160,7 @@ } }, { - "id": 14063, + "id": 15847, "properties": { "east": "none", "north": "low", @@ -115517,7 +127171,7 @@ } }, { - "id": 14064, + "id": 15848, "properties": { "east": "none", "north": "low", @@ -115528,7 +127182,7 @@ } }, { - "id": 14065, + "id": 15849, "properties": { "east": "none", "north": "low", @@ -115539,7 +127193,7 @@ } }, { - "id": 14066, + "id": 15850, "properties": { "east": "none", "north": "low", @@ -115550,7 +127204,7 @@ } }, { - "id": 14067, + "id": 15851, "properties": { "east": "none", "north": "low", @@ -115561,7 +127215,7 @@ } }, { - "id": 14068, + "id": 15852, "properties": { "east": "none", "north": "low", @@ -115572,7 +127226,7 @@ } }, { - "id": 14069, + "id": 15853, "properties": { "east": "none", "north": "low", @@ -115583,7 +127237,7 @@ } }, { - "id": 14070, + "id": 15854, "properties": { "east": "none", "north": "low", @@ -115594,7 +127248,7 @@ } }, { - "id": 14071, + "id": 15855, "properties": { "east": "none", "north": "low", @@ -115605,7 +127259,7 @@ } }, { - "id": 14072, + "id": 15856, "properties": { "east": "none", "north": "low", @@ -115616,7 +127270,7 @@ } }, { - "id": 14073, + "id": 15857, "properties": { "east": "none", "north": "low", @@ -115627,7 +127281,7 @@ } }, { - "id": 14074, + "id": 15858, "properties": { "east": "none", "north": "low", @@ -115638,7 +127292,7 @@ } }, { - "id": 14075, + "id": 15859, "properties": { "east": "none", "north": "low", @@ -115649,7 +127303,7 @@ } }, { - "id": 14076, + "id": 15860, "properties": { "east": "none", "north": "low", @@ -115660,7 +127314,7 @@ } }, { - "id": 14077, + "id": 15861, "properties": { "east": "none", "north": "low", @@ -115671,7 +127325,7 @@ } }, { - "id": 14078, + "id": 15862, "properties": { "east": "none", "north": "low", @@ -115682,7 +127336,7 @@ } }, { - "id": 14079, + "id": 15863, "properties": { "east": "none", "north": "low", @@ -115693,7 +127347,7 @@ } }, { - "id": 14080, + "id": 15864, "properties": { "east": "none", "north": "low", @@ -115704,7 +127358,7 @@ } }, { - "id": 14081, + "id": 15865, "properties": { "east": "none", "north": "low", @@ -115715,7 +127369,7 @@ } }, { - "id": 14082, + "id": 15866, "properties": { "east": "none", "north": "low", @@ -115726,7 +127380,7 @@ } }, { - "id": 14083, + "id": 15867, "properties": { "east": "none", "north": "low", @@ -115737,7 +127391,7 @@ } }, { - "id": 14084, + "id": 15868, "properties": { "east": "none", "north": "low", @@ -115748,7 +127402,7 @@ } }, { - "id": 14085, + "id": 15869, "properties": { "east": "none", "north": "low", @@ -115759,7 +127413,7 @@ } }, { - "id": 14086, + "id": 15870, "properties": { "east": "none", "north": "low", @@ -115770,7 +127424,7 @@ } }, { - "id": 14087, + "id": 15871, "properties": { "east": "none", "north": "low", @@ -115781,7 +127435,7 @@ } }, { - "id": 14088, + "id": 15872, "properties": { "east": "none", "north": "tall", @@ -115792,7 +127446,7 @@ } }, { - "id": 14089, + "id": 15873, "properties": { "east": "none", "north": "tall", @@ -115803,7 +127457,7 @@ } }, { - "id": 14090, + "id": 15874, "properties": { "east": "none", "north": "tall", @@ -115814,7 +127468,7 @@ } }, { - "id": 14091, + "id": 15875, "properties": { "east": "none", "north": "tall", @@ -115825,7 +127479,7 @@ } }, { - "id": 14092, + "id": 15876, "properties": { "east": "none", "north": "tall", @@ -115836,7 +127490,7 @@ } }, { - "id": 14093, + "id": 15877, "properties": { "east": "none", "north": "tall", @@ -115847,7 +127501,7 @@ } }, { - "id": 14094, + "id": 15878, "properties": { "east": "none", "north": "tall", @@ -115858,7 +127512,7 @@ } }, { - "id": 14095, + "id": 15879, "properties": { "east": "none", "north": "tall", @@ -115869,7 +127523,7 @@ } }, { - "id": 14096, + "id": 15880, "properties": { "east": "none", "north": "tall", @@ -115880,7 +127534,7 @@ } }, { - "id": 14097, + "id": 15881, "properties": { "east": "none", "north": "tall", @@ -115891,7 +127545,7 @@ } }, { - "id": 14098, + "id": 15882, "properties": { "east": "none", "north": "tall", @@ -115902,7 +127556,7 @@ } }, { - "id": 14099, + "id": 15883, "properties": { "east": "none", "north": "tall", @@ -115913,7 +127567,7 @@ } }, { - "id": 14100, + "id": 15884, "properties": { "east": "none", "north": "tall", @@ -115924,7 +127578,7 @@ } }, { - "id": 14101, + "id": 15885, "properties": { "east": "none", "north": "tall", @@ -115935,7 +127589,7 @@ } }, { - "id": 14102, + "id": 15886, "properties": { "east": "none", "north": "tall", @@ -115946,7 +127600,7 @@ } }, { - "id": 14103, + "id": 15887, "properties": { "east": "none", "north": "tall", @@ -115957,7 +127611,7 @@ } }, { - "id": 14104, + "id": 15888, "properties": { "east": "none", "north": "tall", @@ -115968,7 +127622,7 @@ } }, { - "id": 14105, + "id": 15889, "properties": { "east": "none", "north": "tall", @@ -115979,7 +127633,7 @@ } }, { - "id": 14106, + "id": 15890, "properties": { "east": "none", "north": "tall", @@ -115990,7 +127644,7 @@ } }, { - "id": 14107, + "id": 15891, "properties": { "east": "none", "north": "tall", @@ -116001,7 +127655,7 @@ } }, { - "id": 14108, + "id": 15892, "properties": { "east": "none", "north": "tall", @@ -116012,7 +127666,7 @@ } }, { - "id": 14109, + "id": 15893, "properties": { "east": "none", "north": "tall", @@ -116023,7 +127677,7 @@ } }, { - "id": 14110, + "id": 15894, "properties": { "east": "none", "north": "tall", @@ -116034,7 +127688,7 @@ } }, { - "id": 14111, + "id": 15895, "properties": { "east": "none", "north": "tall", @@ -116045,7 +127699,7 @@ } }, { - "id": 14112, + "id": 15896, "properties": { "east": "none", "north": "tall", @@ -116056,7 +127710,7 @@ } }, { - "id": 14113, + "id": 15897, "properties": { "east": "none", "north": "tall", @@ -116067,7 +127721,7 @@ } }, { - "id": 14114, + "id": 15898, "properties": { "east": "none", "north": "tall", @@ -116078,7 +127732,7 @@ } }, { - "id": 14115, + "id": 15899, "properties": { "east": "none", "north": "tall", @@ -116089,7 +127743,7 @@ } }, { - "id": 14116, + "id": 15900, "properties": { "east": "none", "north": "tall", @@ -116100,7 +127754,7 @@ } }, { - "id": 14117, + "id": 15901, "properties": { "east": "none", "north": "tall", @@ -116111,7 +127765,7 @@ } }, { - "id": 14118, + "id": 15902, "properties": { "east": "none", "north": "tall", @@ -116122,7 +127776,7 @@ } }, { - "id": 14119, + "id": 15903, "properties": { "east": "none", "north": "tall", @@ -116133,7 +127787,7 @@ } }, { - "id": 14120, + "id": 15904, "properties": { "east": "none", "north": "tall", @@ -116144,7 +127798,7 @@ } }, { - "id": 14121, + "id": 15905, "properties": { "east": "none", "north": "tall", @@ -116155,7 +127809,7 @@ } }, { - "id": 14122, + "id": 15906, "properties": { "east": "none", "north": "tall", @@ -116166,7 +127820,7 @@ } }, { - "id": 14123, + "id": 15907, "properties": { "east": "none", "north": "tall", @@ -116177,7 +127831,7 @@ } }, { - "id": 14124, + "id": 15908, "properties": { "east": "low", "north": "none", @@ -116188,7 +127842,7 @@ } }, { - "id": 14125, + "id": 15909, "properties": { "east": "low", "north": "none", @@ -116199,7 +127853,7 @@ } }, { - "id": 14126, + "id": 15910, "properties": { "east": "low", "north": "none", @@ -116210,7 +127864,7 @@ } }, { - "id": 14127, + "id": 15911, "properties": { "east": "low", "north": "none", @@ -116221,7 +127875,7 @@ } }, { - "id": 14128, + "id": 15912, "properties": { "east": "low", "north": "none", @@ -116232,7 +127886,7 @@ } }, { - "id": 14129, + "id": 15913, "properties": { "east": "low", "north": "none", @@ -116243,7 +127897,7 @@ } }, { - "id": 14130, + "id": 15914, "properties": { "east": "low", "north": "none", @@ -116254,7 +127908,7 @@ } }, { - "id": 14131, + "id": 15915, "properties": { "east": "low", "north": "none", @@ -116265,7 +127919,7 @@ } }, { - "id": 14132, + "id": 15916, "properties": { "east": "low", "north": "none", @@ -116276,7 +127930,7 @@ } }, { - "id": 14133, + "id": 15917, "properties": { "east": "low", "north": "none", @@ -116287,7 +127941,7 @@ } }, { - "id": 14134, + "id": 15918, "properties": { "east": "low", "north": "none", @@ -116298,7 +127952,7 @@ } }, { - "id": 14135, + "id": 15919, "properties": { "east": "low", "north": "none", @@ -116309,7 +127963,7 @@ } }, { - "id": 14136, + "id": 15920, "properties": { "east": "low", "north": "none", @@ -116320,7 +127974,7 @@ } }, { - "id": 14137, + "id": 15921, "properties": { "east": "low", "north": "none", @@ -116331,7 +127985,7 @@ } }, { - "id": 14138, + "id": 15922, "properties": { "east": "low", "north": "none", @@ -116342,7 +127996,7 @@ } }, { - "id": 14139, + "id": 15923, "properties": { "east": "low", "north": "none", @@ -116353,7 +128007,7 @@ } }, { - "id": 14140, + "id": 15924, "properties": { "east": "low", "north": "none", @@ -116364,7 +128018,7 @@ } }, { - "id": 14141, + "id": 15925, "properties": { "east": "low", "north": "none", @@ -116375,7 +128029,7 @@ } }, { - "id": 14142, + "id": 15926, "properties": { "east": "low", "north": "none", @@ -116386,7 +128040,7 @@ } }, { - "id": 14143, + "id": 15927, "properties": { "east": "low", "north": "none", @@ -116397,7 +128051,7 @@ } }, { - "id": 14144, + "id": 15928, "properties": { "east": "low", "north": "none", @@ -116408,7 +128062,7 @@ } }, { - "id": 14145, + "id": 15929, "properties": { "east": "low", "north": "none", @@ -116419,7 +128073,7 @@ } }, { - "id": 14146, + "id": 15930, "properties": { "east": "low", "north": "none", @@ -116430,7 +128084,7 @@ } }, { - "id": 14147, + "id": 15931, "properties": { "east": "low", "north": "none", @@ -116441,7 +128095,7 @@ } }, { - "id": 14148, + "id": 15932, "properties": { "east": "low", "north": "none", @@ -116452,7 +128106,7 @@ } }, { - "id": 14149, + "id": 15933, "properties": { "east": "low", "north": "none", @@ -116463,7 +128117,7 @@ } }, { - "id": 14150, + "id": 15934, "properties": { "east": "low", "north": "none", @@ -116474,7 +128128,7 @@ } }, { - "id": 14151, + "id": 15935, "properties": { "east": "low", "north": "none", @@ -116485,7 +128139,7 @@ } }, { - "id": 14152, + "id": 15936, "properties": { "east": "low", "north": "none", @@ -116496,7 +128150,7 @@ } }, { - "id": 14153, + "id": 15937, "properties": { "east": "low", "north": "none", @@ -116507,7 +128161,7 @@ } }, { - "id": 14154, + "id": 15938, "properties": { "east": "low", "north": "none", @@ -116518,7 +128172,7 @@ } }, { - "id": 14155, + "id": 15939, "properties": { "east": "low", "north": "none", @@ -116529,7 +128183,7 @@ } }, { - "id": 14156, + "id": 15940, "properties": { "east": "low", "north": "none", @@ -116540,7 +128194,7 @@ } }, { - "id": 14157, + "id": 15941, "properties": { "east": "low", "north": "none", @@ -116551,7 +128205,7 @@ } }, { - "id": 14158, + "id": 15942, "properties": { "east": "low", "north": "none", @@ -116562,7 +128216,7 @@ } }, { - "id": 14159, + "id": 15943, "properties": { "east": "low", "north": "none", @@ -116573,7 +128227,7 @@ } }, { - "id": 14160, + "id": 15944, "properties": { "east": "low", "north": "low", @@ -116584,7 +128238,7 @@ } }, { - "id": 14161, + "id": 15945, "properties": { "east": "low", "north": "low", @@ -116595,7 +128249,7 @@ } }, { - "id": 14162, + "id": 15946, "properties": { "east": "low", "north": "low", @@ -116606,7 +128260,7 @@ } }, { - "id": 14163, + "id": 15947, "properties": { "east": "low", "north": "low", @@ -116617,7 +128271,7 @@ } }, { - "id": 14164, + "id": 15948, "properties": { "east": "low", "north": "low", @@ -116628,7 +128282,7 @@ } }, { - "id": 14165, + "id": 15949, "properties": { "east": "low", "north": "low", @@ -116639,7 +128293,7 @@ } }, { - "id": 14166, + "id": 15950, "properties": { "east": "low", "north": "low", @@ -116650,7 +128304,7 @@ } }, { - "id": 14167, + "id": 15951, "properties": { "east": "low", "north": "low", @@ -116661,7 +128315,7 @@ } }, { - "id": 14168, + "id": 15952, "properties": { "east": "low", "north": "low", @@ -116672,7 +128326,7 @@ } }, { - "id": 14169, + "id": 15953, "properties": { "east": "low", "north": "low", @@ -116683,7 +128337,7 @@ } }, { - "id": 14170, + "id": 15954, "properties": { "east": "low", "north": "low", @@ -116694,7 +128348,7 @@ } }, { - "id": 14171, + "id": 15955, "properties": { "east": "low", "north": "low", @@ -116705,7 +128359,7 @@ } }, { - "id": 14172, + "id": 15956, "properties": { "east": "low", "north": "low", @@ -116716,7 +128370,7 @@ } }, { - "id": 14173, + "id": 15957, "properties": { "east": "low", "north": "low", @@ -116727,7 +128381,7 @@ } }, { - "id": 14174, + "id": 15958, "properties": { "east": "low", "north": "low", @@ -116738,7 +128392,7 @@ } }, { - "id": 14175, + "id": 15959, "properties": { "east": "low", "north": "low", @@ -116749,7 +128403,7 @@ } }, { - "id": 14176, + "id": 15960, "properties": { "east": "low", "north": "low", @@ -116760,7 +128414,7 @@ } }, { - "id": 14177, + "id": 15961, "properties": { "east": "low", "north": "low", @@ -116771,7 +128425,7 @@ } }, { - "id": 14178, + "id": 15962, "properties": { "east": "low", "north": "low", @@ -116782,7 +128436,7 @@ } }, { - "id": 14179, + "id": 15963, "properties": { "east": "low", "north": "low", @@ -116793,7 +128447,7 @@ } }, { - "id": 14180, + "id": 15964, "properties": { "east": "low", "north": "low", @@ -116804,7 +128458,7 @@ } }, { - "id": 14181, + "id": 15965, "properties": { "east": "low", "north": "low", @@ -116815,7 +128469,7 @@ } }, { - "id": 14182, + "id": 15966, "properties": { "east": "low", "north": "low", @@ -116826,7 +128480,7 @@ } }, { - "id": 14183, + "id": 15967, "properties": { "east": "low", "north": "low", @@ -116837,7 +128491,7 @@ } }, { - "id": 14184, + "id": 15968, "properties": { "east": "low", "north": "low", @@ -116848,7 +128502,7 @@ } }, { - "id": 14185, + "id": 15969, "properties": { "east": "low", "north": "low", @@ -116859,7 +128513,7 @@ } }, { - "id": 14186, + "id": 15970, "properties": { "east": "low", "north": "low", @@ -116870,7 +128524,7 @@ } }, { - "id": 14187, + "id": 15971, "properties": { "east": "low", "north": "low", @@ -116881,7 +128535,7 @@ } }, { - "id": 14188, + "id": 15972, "properties": { "east": "low", "north": "low", @@ -116892,7 +128546,7 @@ } }, { - "id": 14189, + "id": 15973, "properties": { "east": "low", "north": "low", @@ -116903,7 +128557,7 @@ } }, { - "id": 14190, + "id": 15974, "properties": { "east": "low", "north": "low", @@ -116914,7 +128568,7 @@ } }, { - "id": 14191, + "id": 15975, "properties": { "east": "low", "north": "low", @@ -116925,7 +128579,7 @@ } }, { - "id": 14192, + "id": 15976, "properties": { "east": "low", "north": "low", @@ -116936,7 +128590,7 @@ } }, { - "id": 14193, + "id": 15977, "properties": { "east": "low", "north": "low", @@ -116947,7 +128601,7 @@ } }, { - "id": 14194, + "id": 15978, "properties": { "east": "low", "north": "low", @@ -116958,7 +128612,7 @@ } }, { - "id": 14195, + "id": 15979, "properties": { "east": "low", "north": "low", @@ -116969,7 +128623,7 @@ } }, { - "id": 14196, + "id": 15980, "properties": { "east": "low", "north": "tall", @@ -116980,7 +128634,7 @@ } }, { - "id": 14197, + "id": 15981, "properties": { "east": "low", "north": "tall", @@ -116991,7 +128645,7 @@ } }, { - "id": 14198, + "id": 15982, "properties": { "east": "low", "north": "tall", @@ -117002,7 +128656,7 @@ } }, { - "id": 14199, + "id": 15983, "properties": { "east": "low", "north": "tall", @@ -117013,7 +128667,7 @@ } }, { - "id": 14200, + "id": 15984, "properties": { "east": "low", "north": "tall", @@ -117024,7 +128678,7 @@ } }, { - "id": 14201, + "id": 15985, "properties": { "east": "low", "north": "tall", @@ -117035,7 +128689,7 @@ } }, { - "id": 14202, + "id": 15986, "properties": { "east": "low", "north": "tall", @@ -117046,7 +128700,7 @@ } }, { - "id": 14203, + "id": 15987, "properties": { "east": "low", "north": "tall", @@ -117057,7 +128711,7 @@ } }, { - "id": 14204, + "id": 15988, "properties": { "east": "low", "north": "tall", @@ -117068,7 +128722,7 @@ } }, { - "id": 14205, + "id": 15989, "properties": { "east": "low", "north": "tall", @@ -117079,7 +128733,7 @@ } }, { - "id": 14206, + "id": 15990, "properties": { "east": "low", "north": "tall", @@ -117090,7 +128744,7 @@ } }, { - "id": 14207, + "id": 15991, "properties": { "east": "low", "north": "tall", @@ -117101,7 +128755,7 @@ } }, { - "id": 14208, + "id": 15992, "properties": { "east": "low", "north": "tall", @@ -117112,7 +128766,7 @@ } }, { - "id": 14209, + "id": 15993, "properties": { "east": "low", "north": "tall", @@ -117123,7 +128777,7 @@ } }, { - "id": 14210, + "id": 15994, "properties": { "east": "low", "north": "tall", @@ -117134,7 +128788,7 @@ } }, { - "id": 14211, + "id": 15995, "properties": { "east": "low", "north": "tall", @@ -117145,7 +128799,7 @@ } }, { - "id": 14212, + "id": 15996, "properties": { "east": "low", "north": "tall", @@ -117156,7 +128810,7 @@ } }, { - "id": 14213, + "id": 15997, "properties": { "east": "low", "north": "tall", @@ -117167,7 +128821,7 @@ } }, { - "id": 14214, + "id": 15998, "properties": { "east": "low", "north": "tall", @@ -117178,7 +128832,7 @@ } }, { - "id": 14215, + "id": 15999, "properties": { "east": "low", "north": "tall", @@ -117189,7 +128843,7 @@ } }, { - "id": 14216, + "id": 16000, "properties": { "east": "low", "north": "tall", @@ -117200,7 +128854,7 @@ } }, { - "id": 14217, + "id": 16001, "properties": { "east": "low", "north": "tall", @@ -117211,7 +128865,7 @@ } }, { - "id": 14218, + "id": 16002, "properties": { "east": "low", "north": "tall", @@ -117222,7 +128876,7 @@ } }, { - "id": 14219, + "id": 16003, "properties": { "east": "low", "north": "tall", @@ -117233,7 +128887,7 @@ } }, { - "id": 14220, + "id": 16004, "properties": { "east": "low", "north": "tall", @@ -117244,7 +128898,7 @@ } }, { - "id": 14221, + "id": 16005, "properties": { "east": "low", "north": "tall", @@ -117255,7 +128909,7 @@ } }, { - "id": 14222, + "id": 16006, "properties": { "east": "low", "north": "tall", @@ -117266,7 +128920,7 @@ } }, { - "id": 14223, + "id": 16007, "properties": { "east": "low", "north": "tall", @@ -117277,7 +128931,7 @@ } }, { - "id": 14224, + "id": 16008, "properties": { "east": "low", "north": "tall", @@ -117288,7 +128942,7 @@ } }, { - "id": 14225, + "id": 16009, "properties": { "east": "low", "north": "tall", @@ -117299,7 +128953,7 @@ } }, { - "id": 14226, + "id": 16010, "properties": { "east": "low", "north": "tall", @@ -117310,7 +128964,7 @@ } }, { - "id": 14227, + "id": 16011, "properties": { "east": "low", "north": "tall", @@ -117321,7 +128975,7 @@ } }, { - "id": 14228, + "id": 16012, "properties": { "east": "low", "north": "tall", @@ -117332,7 +128986,7 @@ } }, { - "id": 14229, + "id": 16013, "properties": { "east": "low", "north": "tall", @@ -117343,7 +128997,7 @@ } }, { - "id": 14230, + "id": 16014, "properties": { "east": "low", "north": "tall", @@ -117354,7 +129008,7 @@ } }, { - "id": 14231, + "id": 16015, "properties": { "east": "low", "north": "tall", @@ -117365,7 +129019,7 @@ } }, { - "id": 14232, + "id": 16016, "properties": { "east": "tall", "north": "none", @@ -117376,7 +129030,7 @@ } }, { - "id": 14233, + "id": 16017, "properties": { "east": "tall", "north": "none", @@ -117387,7 +129041,7 @@ } }, { - "id": 14234, + "id": 16018, "properties": { "east": "tall", "north": "none", @@ -117398,7 +129052,7 @@ } }, { - "id": 14235, + "id": 16019, "properties": { "east": "tall", "north": "none", @@ -117409,7 +129063,7 @@ } }, { - "id": 14236, + "id": 16020, "properties": { "east": "tall", "north": "none", @@ -117420,7 +129074,7 @@ } }, { - "id": 14237, + "id": 16021, "properties": { "east": "tall", "north": "none", @@ -117431,7 +129085,7 @@ } }, { - "id": 14238, + "id": 16022, "properties": { "east": "tall", "north": "none", @@ -117442,7 +129096,7 @@ } }, { - "id": 14239, + "id": 16023, "properties": { "east": "tall", "north": "none", @@ -117453,7 +129107,7 @@ } }, { - "id": 14240, + "id": 16024, "properties": { "east": "tall", "north": "none", @@ -117464,7 +129118,7 @@ } }, { - "id": 14241, + "id": 16025, "properties": { "east": "tall", "north": "none", @@ -117475,7 +129129,7 @@ } }, { - "id": 14242, + "id": 16026, "properties": { "east": "tall", "north": "none", @@ -117486,7 +129140,7 @@ } }, { - "id": 14243, + "id": 16027, "properties": { "east": "tall", "north": "none", @@ -117497,7 +129151,7 @@ } }, { - "id": 14244, + "id": 16028, "properties": { "east": "tall", "north": "none", @@ -117508,7 +129162,7 @@ } }, { - "id": 14245, + "id": 16029, "properties": { "east": "tall", "north": "none", @@ -117519,7 +129173,7 @@ } }, { - "id": 14246, + "id": 16030, "properties": { "east": "tall", "north": "none", @@ -117530,7 +129184,7 @@ } }, { - "id": 14247, + "id": 16031, "properties": { "east": "tall", "north": "none", @@ -117541,7 +129195,7 @@ } }, { - "id": 14248, + "id": 16032, "properties": { "east": "tall", "north": "none", @@ -117552,7 +129206,7 @@ } }, { - "id": 14249, + "id": 16033, "properties": { "east": "tall", "north": "none", @@ -117563,7 +129217,7 @@ } }, { - "id": 14250, + "id": 16034, "properties": { "east": "tall", "north": "none", @@ -117574,7 +129228,7 @@ } }, { - "id": 14251, + "id": 16035, "properties": { "east": "tall", "north": "none", @@ -117585,7 +129239,7 @@ } }, { - "id": 14252, + "id": 16036, "properties": { "east": "tall", "north": "none", @@ -117596,7 +129250,7 @@ } }, { - "id": 14253, + "id": 16037, "properties": { "east": "tall", "north": "none", @@ -117607,7 +129261,7 @@ } }, { - "id": 14254, + "id": 16038, "properties": { "east": "tall", "north": "none", @@ -117618,7 +129272,7 @@ } }, { - "id": 14255, + "id": 16039, "properties": { "east": "tall", "north": "none", @@ -117629,7 +129283,7 @@ } }, { - "id": 14256, + "id": 16040, "properties": { "east": "tall", "north": "none", @@ -117640,7 +129294,7 @@ } }, { - "id": 14257, + "id": 16041, "properties": { "east": "tall", "north": "none", @@ -117651,7 +129305,7 @@ } }, { - "id": 14258, + "id": 16042, "properties": { "east": "tall", "north": "none", @@ -117662,7 +129316,7 @@ } }, { - "id": 14259, + "id": 16043, "properties": { "east": "tall", "north": "none", @@ -117673,7 +129327,7 @@ } }, { - "id": 14260, + "id": 16044, "properties": { "east": "tall", "north": "none", @@ -117684,7 +129338,7 @@ } }, { - "id": 14261, + "id": 16045, "properties": { "east": "tall", "north": "none", @@ -117695,7 +129349,7 @@ } }, { - "id": 14262, + "id": 16046, "properties": { "east": "tall", "north": "none", @@ -117706,7 +129360,7 @@ } }, { - "id": 14263, + "id": 16047, "properties": { "east": "tall", "north": "none", @@ -117717,7 +129371,7 @@ } }, { - "id": 14264, + "id": 16048, "properties": { "east": "tall", "north": "none", @@ -117728,7 +129382,7 @@ } }, { - "id": 14265, + "id": 16049, "properties": { "east": "tall", "north": "none", @@ -117739,7 +129393,7 @@ } }, { - "id": 14266, + "id": 16050, "properties": { "east": "tall", "north": "none", @@ -117750,7 +129404,7 @@ } }, { - "id": 14267, + "id": 16051, "properties": { "east": "tall", "north": "none", @@ -117761,7 +129415,7 @@ } }, { - "id": 14268, + "id": 16052, "properties": { "east": "tall", "north": "low", @@ -117772,7 +129426,7 @@ } }, { - "id": 14269, + "id": 16053, "properties": { "east": "tall", "north": "low", @@ -117783,7 +129437,7 @@ } }, { - "id": 14270, + "id": 16054, "properties": { "east": "tall", "north": "low", @@ -117794,7 +129448,7 @@ } }, { - "id": 14271, + "id": 16055, "properties": { "east": "tall", "north": "low", @@ -117805,7 +129459,7 @@ } }, { - "id": 14272, + "id": 16056, "properties": { "east": "tall", "north": "low", @@ -117816,7 +129470,7 @@ } }, { - "id": 14273, + "id": 16057, "properties": { "east": "tall", "north": "low", @@ -117827,7 +129481,7 @@ } }, { - "id": 14274, + "id": 16058, "properties": { "east": "tall", "north": "low", @@ -117838,7 +129492,7 @@ } }, { - "id": 14275, + "id": 16059, "properties": { "east": "tall", "north": "low", @@ -117849,7 +129503,7 @@ } }, { - "id": 14276, + "id": 16060, "properties": { "east": "tall", "north": "low", @@ -117860,7 +129514,7 @@ } }, { - "id": 14277, + "id": 16061, "properties": { "east": "tall", "north": "low", @@ -117871,7 +129525,7 @@ } }, { - "id": 14278, + "id": 16062, "properties": { "east": "tall", "north": "low", @@ -117882,7 +129536,7 @@ } }, { - "id": 14279, + "id": 16063, "properties": { "east": "tall", "north": "low", @@ -117893,7 +129547,7 @@ } }, { - "id": 14280, + "id": 16064, "properties": { "east": "tall", "north": "low", @@ -117904,7 +129558,7 @@ } }, { - "id": 14281, + "id": 16065, "properties": { "east": "tall", "north": "low", @@ -117915,7 +129569,7 @@ } }, { - "id": 14282, + "id": 16066, "properties": { "east": "tall", "north": "low", @@ -117926,7 +129580,7 @@ } }, { - "id": 14283, + "id": 16067, "properties": { "east": "tall", "north": "low", @@ -117937,7 +129591,7 @@ } }, { - "id": 14284, + "id": 16068, "properties": { "east": "tall", "north": "low", @@ -117948,7 +129602,7 @@ } }, { - "id": 14285, + "id": 16069, "properties": { "east": "tall", "north": "low", @@ -117959,7 +129613,7 @@ } }, { - "id": 14286, + "id": 16070, "properties": { "east": "tall", "north": "low", @@ -117970,7 +129624,7 @@ } }, { - "id": 14287, + "id": 16071, "properties": { "east": "tall", "north": "low", @@ -117981,7 +129635,7 @@ } }, { - "id": 14288, + "id": 16072, "properties": { "east": "tall", "north": "low", @@ -117992,7 +129646,7 @@ } }, { - "id": 14289, + "id": 16073, "properties": { "east": "tall", "north": "low", @@ -118003,7 +129657,7 @@ } }, { - "id": 14290, + "id": 16074, "properties": { "east": "tall", "north": "low", @@ -118014,7 +129668,7 @@ } }, { - "id": 14291, + "id": 16075, "properties": { "east": "tall", "north": "low", @@ -118025,7 +129679,7 @@ } }, { - "id": 14292, + "id": 16076, "properties": { "east": "tall", "north": "low", @@ -118036,7 +129690,7 @@ } }, { - "id": 14293, + "id": 16077, "properties": { "east": "tall", "north": "low", @@ -118047,7 +129701,7 @@ } }, { - "id": 14294, + "id": 16078, "properties": { "east": "tall", "north": "low", @@ -118058,7 +129712,7 @@ } }, { - "id": 14295, + "id": 16079, "properties": { "east": "tall", "north": "low", @@ -118069,7 +129723,7 @@ } }, { - "id": 14296, + "id": 16080, "properties": { "east": "tall", "north": "low", @@ -118080,7 +129734,7 @@ } }, { - "id": 14297, + "id": 16081, "properties": { "east": "tall", "north": "low", @@ -118091,7 +129745,7 @@ } }, { - "id": 14298, + "id": 16082, "properties": { "east": "tall", "north": "low", @@ -118102,7 +129756,7 @@ } }, { - "id": 14299, + "id": 16083, "properties": { "east": "tall", "north": "low", @@ -118113,7 +129767,7 @@ } }, { - "id": 14300, + "id": 16084, "properties": { "east": "tall", "north": "low", @@ -118124,7 +129778,7 @@ } }, { - "id": 14301, + "id": 16085, "properties": { "east": "tall", "north": "low", @@ -118135,7 +129789,7 @@ } }, { - "id": 14302, + "id": 16086, "properties": { "east": "tall", "north": "low", @@ -118146,7 +129800,7 @@ } }, { - "id": 14303, + "id": 16087, "properties": { "east": "tall", "north": "low", @@ -118157,7 +129811,7 @@ } }, { - "id": 14304, + "id": 16088, "properties": { "east": "tall", "north": "tall", @@ -118168,7 +129822,7 @@ } }, { - "id": 14305, + "id": 16089, "properties": { "east": "tall", "north": "tall", @@ -118179,7 +129833,7 @@ } }, { - "id": 14306, + "id": 16090, "properties": { "east": "tall", "north": "tall", @@ -118190,7 +129844,7 @@ } }, { - "id": 14307, + "id": 16091, "properties": { "east": "tall", "north": "tall", @@ -118201,7 +129855,7 @@ } }, { - "id": 14308, + "id": 16092, "properties": { "east": "tall", "north": "tall", @@ -118212,7 +129866,7 @@ } }, { - "id": 14309, + "id": 16093, "properties": { "east": "tall", "north": "tall", @@ -118223,7 +129877,7 @@ } }, { - "id": 14310, + "id": 16094, "properties": { "east": "tall", "north": "tall", @@ -118234,7 +129888,7 @@ } }, { - "id": 14311, + "id": 16095, "properties": { "east": "tall", "north": "tall", @@ -118245,7 +129899,7 @@ } }, { - "id": 14312, + "id": 16096, "properties": { "east": "tall", "north": "tall", @@ -118256,7 +129910,7 @@ } }, { - "id": 14313, + "id": 16097, "properties": { "east": "tall", "north": "tall", @@ -118267,7 +129921,7 @@ } }, { - "id": 14314, + "id": 16098, "properties": { "east": "tall", "north": "tall", @@ -118278,7 +129932,7 @@ } }, { - "id": 14315, + "id": 16099, "properties": { "east": "tall", "north": "tall", @@ -118289,7 +129943,7 @@ } }, { - "id": 14316, + "id": 16100, "properties": { "east": "tall", "north": "tall", @@ -118300,7 +129954,7 @@ } }, { - "id": 14317, + "id": 16101, "properties": { "east": "tall", "north": "tall", @@ -118311,7 +129965,7 @@ } }, { - "id": 14318, + "id": 16102, "properties": { "east": "tall", "north": "tall", @@ -118322,7 +129976,7 @@ } }, { - "id": 14319, + "id": 16103, "properties": { "east": "tall", "north": "tall", @@ -118333,7 +129987,7 @@ } }, { - "id": 14320, + "id": 16104, "properties": { "east": "tall", "north": "tall", @@ -118344,7 +129998,7 @@ } }, { - "id": 14321, + "id": 16105, "properties": { "east": "tall", "north": "tall", @@ -118355,7 +130009,7 @@ } }, { - "id": 14322, + "id": 16106, "properties": { "east": "tall", "north": "tall", @@ -118366,7 +130020,7 @@ } }, { - "id": 14323, + "id": 16107, "properties": { "east": "tall", "north": "tall", @@ -118377,7 +130031,7 @@ } }, { - "id": 14324, + "id": 16108, "properties": { "east": "tall", "north": "tall", @@ -118388,7 +130042,7 @@ } }, { - "id": 14325, + "id": 16109, "properties": { "east": "tall", "north": "tall", @@ -118399,7 +130053,7 @@ } }, { - "id": 14326, + "id": 16110, "properties": { "east": "tall", "north": "tall", @@ -118410,7 +130064,7 @@ } }, { - "id": 14327, + "id": 16111, "properties": { "east": "tall", "north": "tall", @@ -118421,7 +130075,7 @@ } }, { - "id": 14328, + "id": 16112, "properties": { "east": "tall", "north": "tall", @@ -118432,7 +130086,7 @@ } }, { - "id": 14329, + "id": 16113, "properties": { "east": "tall", "north": "tall", @@ -118443,7 +130097,7 @@ } }, { - "id": 14330, + "id": 16114, "properties": { "east": "tall", "north": "tall", @@ -118454,7 +130108,7 @@ } }, { - "id": 14331, + "id": 16115, "properties": { "east": "tall", "north": "tall", @@ -118465,7 +130119,7 @@ } }, { - "id": 14332, + "id": 16116, "properties": { "east": "tall", "north": "tall", @@ -118476,7 +130130,7 @@ } }, { - "id": 14333, + "id": 16117, "properties": { "east": "tall", "north": "tall", @@ -118487,7 +130141,7 @@ } }, { - "id": 14334, + "id": 16118, "properties": { "east": "tall", "north": "tall", @@ -118498,7 +130152,7 @@ } }, { - "id": 14335, + "id": 16119, "properties": { "east": "tall", "north": "tall", @@ -118509,7 +130163,7 @@ } }, { - "id": 14336, + "id": 16120, "properties": { "east": "tall", "north": "tall", @@ -118520,7 +130174,7 @@ } }, { - "id": 14337, + "id": 16121, "properties": { "east": "tall", "north": "tall", @@ -118531,7 +130185,7 @@ } }, { - "id": 14338, + "id": 16122, "properties": { "east": "tall", "north": "tall", @@ -118542,7 +130196,7 @@ } }, { - "id": 14339, + "id": 16123, "properties": { "east": "tall", "north": "tall", @@ -118558,7 +130212,7 @@ "states": [ { "default": true, - "id": 5602 + "id": 7042 } ] }, @@ -118566,7 +130220,7 @@ "states": [ { "default": true, - "id": 116 + "id": 118 } ] }, @@ -118580,13 +130234,13 @@ "states": [ { "default": true, - "id": 4323, + "id": 5699, "properties": { "axis": "x" } }, { - "id": 4324, + "id": 5700, "properties": { "axis": "z" } @@ -118597,7 +130251,7 @@ "states": [ { "default": true, - "id": 7344 + "id": 8828 } ] }, @@ -118605,7 +130259,7 @@ "states": [ { "default": true, - "id": 16183 + "id": 17967 } ] }, @@ -118621,25 +130275,25 @@ "states": [ { "default": true, - "id": 5715, + "id": 7155, "properties": { "age": "0" } }, { - "id": 5716, + "id": 7156, "properties": { "age": "1" } }, { - "id": 5717, + "id": 7157, "properties": { "age": "2" } }, { - "id": 5718, + "id": 7158, "properties": { "age": "3" } @@ -118650,7 +130304,7 @@ "states": [ { "default": true, - "id": 10135 + "id": 11919 } ] }, @@ -118658,7 +130312,7 @@ "states": [ { "default": true, - "id": 17035 + "id": 18819 } ] }, @@ -118666,7 +130320,7 @@ "states": [ { "default": true, - "id": 4308 + "id": 5684 } ] }, @@ -118688,7 +130342,14 @@ "didgeridoo", "bit", "banjo", - "pling" + "pling", + "zombie", + "skeleton", + "creeper", + "dragon", + "wither_skeleton", + "piglin", + "custom_head" ], "note": [ "0", @@ -118724,7 +130385,7 @@ }, "states": [ { - "id": 479, + "id": 487, "properties": { "instrument": "harp", "note": "0", @@ -118733,74 +130394,10 @@ }, { "default": true, - "id": 480, - "properties": { - "instrument": "harp", - "note": "0", - "powered": "false" - } - }, - { - "id": 481, - "properties": { - "instrument": "harp", - "note": "1", - "powered": "true" - } - }, - { - "id": 482, - "properties": { - "instrument": "harp", - "note": "1", - "powered": "false" - } - }, - { - "id": 483, - "properties": { - "instrument": "harp", - "note": "2", - "powered": "true" - } - }, - { - "id": 484, - "properties": { - "instrument": "harp", - "note": "2", - "powered": "false" - } - }, - { - "id": 485, - "properties": { - "instrument": "harp", - "note": "3", - "powered": "true" - } - }, - { - "id": 486, - "properties": { - "instrument": "harp", - "note": "3", - "powered": "false" - } - }, - { - "id": 487, - "properties": { - "instrument": "harp", - "note": "4", - "powered": "true" - } - }, - { "id": 488, "properties": { "instrument": "harp", - "note": "4", + "note": "0", "powered": "false" } }, @@ -118808,7 +130405,7 @@ "id": 489, "properties": { "instrument": "harp", - "note": "5", + "note": "1", "powered": "true" } }, @@ -118816,7 +130413,7 @@ "id": 490, "properties": { "instrument": "harp", - "note": "5", + "note": "1", "powered": "false" } }, @@ -118824,7 +130421,7 @@ "id": 491, "properties": { "instrument": "harp", - "note": "6", + "note": "2", "powered": "true" } }, @@ -118832,7 +130429,7 @@ "id": 492, "properties": { "instrument": "harp", - "note": "6", + "note": "2", "powered": "false" } }, @@ -118840,7 +130437,7 @@ "id": 493, "properties": { "instrument": "harp", - "note": "7", + "note": "3", "powered": "true" } }, @@ -118848,7 +130445,7 @@ "id": 494, "properties": { "instrument": "harp", - "note": "7", + "note": "3", "powered": "false" } }, @@ -118856,7 +130453,7 @@ "id": 495, "properties": { "instrument": "harp", - "note": "8", + "note": "4", "powered": "true" } }, @@ -118864,7 +130461,7 @@ "id": 496, "properties": { "instrument": "harp", - "note": "8", + "note": "4", "powered": "false" } }, @@ -118872,7 +130469,7 @@ "id": 497, "properties": { "instrument": "harp", - "note": "9", + "note": "5", "powered": "true" } }, @@ -118880,7 +130477,7 @@ "id": 498, "properties": { "instrument": "harp", - "note": "9", + "note": "5", "powered": "false" } }, @@ -118888,7 +130485,7 @@ "id": 499, "properties": { "instrument": "harp", - "note": "10", + "note": "6", "powered": "true" } }, @@ -118896,7 +130493,7 @@ "id": 500, "properties": { "instrument": "harp", - "note": "10", + "note": "6", "powered": "false" } }, @@ -118904,7 +130501,7 @@ "id": 501, "properties": { "instrument": "harp", - "note": "11", + "note": "7", "powered": "true" } }, @@ -118912,7 +130509,7 @@ "id": 502, "properties": { "instrument": "harp", - "note": "11", + "note": "7", "powered": "false" } }, @@ -118920,7 +130517,7 @@ "id": 503, "properties": { "instrument": "harp", - "note": "12", + "note": "8", "powered": "true" } }, @@ -118928,7 +130525,7 @@ "id": 504, "properties": { "instrument": "harp", - "note": "12", + "note": "8", "powered": "false" } }, @@ -118936,7 +130533,7 @@ "id": 505, "properties": { "instrument": "harp", - "note": "13", + "note": "9", "powered": "true" } }, @@ -118944,7 +130541,7 @@ "id": 506, "properties": { "instrument": "harp", - "note": "13", + "note": "9", "powered": "false" } }, @@ -118952,7 +130549,7 @@ "id": 507, "properties": { "instrument": "harp", - "note": "14", + "note": "10", "powered": "true" } }, @@ -118960,7 +130557,7 @@ "id": 508, "properties": { "instrument": "harp", - "note": "14", + "note": "10", "powered": "false" } }, @@ -118968,7 +130565,7 @@ "id": 509, "properties": { "instrument": "harp", - "note": "15", + "note": "11", "powered": "true" } }, @@ -118976,7 +130573,7 @@ "id": 510, "properties": { "instrument": "harp", - "note": "15", + "note": "11", "powered": "false" } }, @@ -118984,7 +130581,7 @@ "id": 511, "properties": { "instrument": "harp", - "note": "16", + "note": "12", "powered": "true" } }, @@ -118992,7 +130589,7 @@ "id": 512, "properties": { "instrument": "harp", - "note": "16", + "note": "12", "powered": "false" } }, @@ -119000,7 +130597,7 @@ "id": 513, "properties": { "instrument": "harp", - "note": "17", + "note": "13", "powered": "true" } }, @@ -119008,7 +130605,7 @@ "id": 514, "properties": { "instrument": "harp", - "note": "17", + "note": "13", "powered": "false" } }, @@ -119016,7 +130613,7 @@ "id": 515, "properties": { "instrument": "harp", - "note": "18", + "note": "14", "powered": "true" } }, @@ -119024,7 +130621,7 @@ "id": 516, "properties": { "instrument": "harp", - "note": "18", + "note": "14", "powered": "false" } }, @@ -119032,7 +130629,7 @@ "id": 517, "properties": { "instrument": "harp", - "note": "19", + "note": "15", "powered": "true" } }, @@ -119040,7 +130637,7 @@ "id": 518, "properties": { "instrument": "harp", - "note": "19", + "note": "15", "powered": "false" } }, @@ -119048,7 +130645,7 @@ "id": 519, "properties": { "instrument": "harp", - "note": "20", + "note": "16", "powered": "true" } }, @@ -119056,7 +130653,7 @@ "id": 520, "properties": { "instrument": "harp", - "note": "20", + "note": "16", "powered": "false" } }, @@ -119064,7 +130661,7 @@ "id": 521, "properties": { "instrument": "harp", - "note": "21", + "note": "17", "powered": "true" } }, @@ -119072,7 +130669,7 @@ "id": 522, "properties": { "instrument": "harp", - "note": "21", + "note": "17", "powered": "false" } }, @@ -119080,7 +130677,7 @@ "id": 523, "properties": { "instrument": "harp", - "note": "22", + "note": "18", "powered": "true" } }, @@ -119088,7 +130685,7 @@ "id": 524, "properties": { "instrument": "harp", - "note": "22", + "note": "18", "powered": "false" } }, @@ -119096,7 +130693,7 @@ "id": 525, "properties": { "instrument": "harp", - "note": "23", + "note": "19", "powered": "true" } }, @@ -119104,7 +130701,7 @@ "id": 526, "properties": { "instrument": "harp", - "note": "23", + "note": "19", "powered": "false" } }, @@ -119112,7 +130709,7 @@ "id": 527, "properties": { "instrument": "harp", - "note": "24", + "note": "20", "powered": "true" } }, @@ -119120,71 +130717,71 @@ "id": 528, "properties": { "instrument": "harp", - "note": "24", + "note": "20", "powered": "false" } }, { "id": 529, "properties": { - "instrument": "basedrum", - "note": "0", + "instrument": "harp", + "note": "21", "powered": "true" } }, { "id": 530, "properties": { - "instrument": "basedrum", - "note": "0", + "instrument": "harp", + "note": "21", "powered": "false" } }, { "id": 531, "properties": { - "instrument": "basedrum", - "note": "1", + "instrument": "harp", + "note": "22", "powered": "true" } }, { "id": 532, "properties": { - "instrument": "basedrum", - "note": "1", + "instrument": "harp", + "note": "22", "powered": "false" } }, { "id": 533, "properties": { - "instrument": "basedrum", - "note": "2", + "instrument": "harp", + "note": "23", "powered": "true" } }, { "id": 534, "properties": { - "instrument": "basedrum", - "note": "2", + "instrument": "harp", + "note": "23", "powered": "false" } }, { "id": 535, "properties": { - "instrument": "basedrum", - "note": "3", + "instrument": "harp", + "note": "24", "powered": "true" } }, { "id": 536, "properties": { - "instrument": "basedrum", - "note": "3", + "instrument": "harp", + "note": "24", "powered": "false" } }, @@ -119192,7 +130789,7 @@ "id": 537, "properties": { "instrument": "basedrum", - "note": "4", + "note": "0", "powered": "true" } }, @@ -119200,7 +130797,7 @@ "id": 538, "properties": { "instrument": "basedrum", - "note": "4", + "note": "0", "powered": "false" } }, @@ -119208,7 +130805,7 @@ "id": 539, "properties": { "instrument": "basedrum", - "note": "5", + "note": "1", "powered": "true" } }, @@ -119216,7 +130813,7 @@ "id": 540, "properties": { "instrument": "basedrum", - "note": "5", + "note": "1", "powered": "false" } }, @@ -119224,7 +130821,7 @@ "id": 541, "properties": { "instrument": "basedrum", - "note": "6", + "note": "2", "powered": "true" } }, @@ -119232,7 +130829,7 @@ "id": 542, "properties": { "instrument": "basedrum", - "note": "6", + "note": "2", "powered": "false" } }, @@ -119240,7 +130837,7 @@ "id": 543, "properties": { "instrument": "basedrum", - "note": "7", + "note": "3", "powered": "true" } }, @@ -119248,7 +130845,7 @@ "id": 544, "properties": { "instrument": "basedrum", - "note": "7", + "note": "3", "powered": "false" } }, @@ -119256,7 +130853,7 @@ "id": 545, "properties": { "instrument": "basedrum", - "note": "8", + "note": "4", "powered": "true" } }, @@ -119264,7 +130861,7 @@ "id": 546, "properties": { "instrument": "basedrum", - "note": "8", + "note": "4", "powered": "false" } }, @@ -119272,7 +130869,7 @@ "id": 547, "properties": { "instrument": "basedrum", - "note": "9", + "note": "5", "powered": "true" } }, @@ -119280,7 +130877,7 @@ "id": 548, "properties": { "instrument": "basedrum", - "note": "9", + "note": "5", "powered": "false" } }, @@ -119288,7 +130885,7 @@ "id": 549, "properties": { "instrument": "basedrum", - "note": "10", + "note": "6", "powered": "true" } }, @@ -119296,7 +130893,7 @@ "id": 550, "properties": { "instrument": "basedrum", - "note": "10", + "note": "6", "powered": "false" } }, @@ -119304,7 +130901,7 @@ "id": 551, "properties": { "instrument": "basedrum", - "note": "11", + "note": "7", "powered": "true" } }, @@ -119312,7 +130909,7 @@ "id": 552, "properties": { "instrument": "basedrum", - "note": "11", + "note": "7", "powered": "false" } }, @@ -119320,7 +130917,7 @@ "id": 553, "properties": { "instrument": "basedrum", - "note": "12", + "note": "8", "powered": "true" } }, @@ -119328,7 +130925,7 @@ "id": 554, "properties": { "instrument": "basedrum", - "note": "12", + "note": "8", "powered": "false" } }, @@ -119336,7 +130933,7 @@ "id": 555, "properties": { "instrument": "basedrum", - "note": "13", + "note": "9", "powered": "true" } }, @@ -119344,7 +130941,7 @@ "id": 556, "properties": { "instrument": "basedrum", - "note": "13", + "note": "9", "powered": "false" } }, @@ -119352,7 +130949,7 @@ "id": 557, "properties": { "instrument": "basedrum", - "note": "14", + "note": "10", "powered": "true" } }, @@ -119360,7 +130957,7 @@ "id": 558, "properties": { "instrument": "basedrum", - "note": "14", + "note": "10", "powered": "false" } }, @@ -119368,7 +130965,7 @@ "id": 559, "properties": { "instrument": "basedrum", - "note": "15", + "note": "11", "powered": "true" } }, @@ -119376,7 +130973,7 @@ "id": 560, "properties": { "instrument": "basedrum", - "note": "15", + "note": "11", "powered": "false" } }, @@ -119384,7 +130981,7 @@ "id": 561, "properties": { "instrument": "basedrum", - "note": "16", + "note": "12", "powered": "true" } }, @@ -119392,7 +130989,7 @@ "id": 562, "properties": { "instrument": "basedrum", - "note": "16", + "note": "12", "powered": "false" } }, @@ -119400,7 +130997,7 @@ "id": 563, "properties": { "instrument": "basedrum", - "note": "17", + "note": "13", "powered": "true" } }, @@ -119408,7 +131005,7 @@ "id": 564, "properties": { "instrument": "basedrum", - "note": "17", + "note": "13", "powered": "false" } }, @@ -119416,7 +131013,7 @@ "id": 565, "properties": { "instrument": "basedrum", - "note": "18", + "note": "14", "powered": "true" } }, @@ -119424,7 +131021,7 @@ "id": 566, "properties": { "instrument": "basedrum", - "note": "18", + "note": "14", "powered": "false" } }, @@ -119432,7 +131029,7 @@ "id": 567, "properties": { "instrument": "basedrum", - "note": "19", + "note": "15", "powered": "true" } }, @@ -119440,7 +131037,7 @@ "id": 568, "properties": { "instrument": "basedrum", - "note": "19", + "note": "15", "powered": "false" } }, @@ -119448,7 +131045,7 @@ "id": 569, "properties": { "instrument": "basedrum", - "note": "20", + "note": "16", "powered": "true" } }, @@ -119456,7 +131053,7 @@ "id": 570, "properties": { "instrument": "basedrum", - "note": "20", + "note": "16", "powered": "false" } }, @@ -119464,7 +131061,7 @@ "id": 571, "properties": { "instrument": "basedrum", - "note": "21", + "note": "17", "powered": "true" } }, @@ -119472,7 +131069,7 @@ "id": 572, "properties": { "instrument": "basedrum", - "note": "21", + "note": "17", "powered": "false" } }, @@ -119480,7 +131077,7 @@ "id": 573, "properties": { "instrument": "basedrum", - "note": "22", + "note": "18", "powered": "true" } }, @@ -119488,7 +131085,7 @@ "id": 574, "properties": { "instrument": "basedrum", - "note": "22", + "note": "18", "powered": "false" } }, @@ -119496,7 +131093,7 @@ "id": 575, "properties": { "instrument": "basedrum", - "note": "23", + "note": "19", "powered": "true" } }, @@ -119504,7 +131101,7 @@ "id": 576, "properties": { "instrument": "basedrum", - "note": "23", + "note": "19", "powered": "false" } }, @@ -119512,7 +131109,7 @@ "id": 577, "properties": { "instrument": "basedrum", - "note": "24", + "note": "20", "powered": "true" } }, @@ -119520,71 +131117,71 @@ "id": 578, "properties": { "instrument": "basedrum", - "note": "24", + "note": "20", "powered": "false" } }, { "id": 579, "properties": { - "instrument": "snare", - "note": "0", + "instrument": "basedrum", + "note": "21", "powered": "true" } }, { "id": 580, "properties": { - "instrument": "snare", - "note": "0", + "instrument": "basedrum", + "note": "21", "powered": "false" } }, { "id": 581, "properties": { - "instrument": "snare", - "note": "1", + "instrument": "basedrum", + "note": "22", "powered": "true" } }, { "id": 582, "properties": { - "instrument": "snare", - "note": "1", + "instrument": "basedrum", + "note": "22", "powered": "false" } }, { "id": 583, "properties": { - "instrument": "snare", - "note": "2", + "instrument": "basedrum", + "note": "23", "powered": "true" } }, { "id": 584, "properties": { - "instrument": "snare", - "note": "2", + "instrument": "basedrum", + "note": "23", "powered": "false" } }, { "id": 585, "properties": { - "instrument": "snare", - "note": "3", + "instrument": "basedrum", + "note": "24", "powered": "true" } }, { "id": 586, "properties": { - "instrument": "snare", - "note": "3", + "instrument": "basedrum", + "note": "24", "powered": "false" } }, @@ -119592,7 +131189,7 @@ "id": 587, "properties": { "instrument": "snare", - "note": "4", + "note": "0", "powered": "true" } }, @@ -119600,7 +131197,7 @@ "id": 588, "properties": { "instrument": "snare", - "note": "4", + "note": "0", "powered": "false" } }, @@ -119608,7 +131205,7 @@ "id": 589, "properties": { "instrument": "snare", - "note": "5", + "note": "1", "powered": "true" } }, @@ -119616,7 +131213,7 @@ "id": 590, "properties": { "instrument": "snare", - "note": "5", + "note": "1", "powered": "false" } }, @@ -119624,7 +131221,7 @@ "id": 591, "properties": { "instrument": "snare", - "note": "6", + "note": "2", "powered": "true" } }, @@ -119632,7 +131229,7 @@ "id": 592, "properties": { "instrument": "snare", - "note": "6", + "note": "2", "powered": "false" } }, @@ -119640,7 +131237,7 @@ "id": 593, "properties": { "instrument": "snare", - "note": "7", + "note": "3", "powered": "true" } }, @@ -119648,7 +131245,7 @@ "id": 594, "properties": { "instrument": "snare", - "note": "7", + "note": "3", "powered": "false" } }, @@ -119656,7 +131253,7 @@ "id": 595, "properties": { "instrument": "snare", - "note": "8", + "note": "4", "powered": "true" } }, @@ -119664,7 +131261,7 @@ "id": 596, "properties": { "instrument": "snare", - "note": "8", + "note": "4", "powered": "false" } }, @@ -119672,7 +131269,7 @@ "id": 597, "properties": { "instrument": "snare", - "note": "9", + "note": "5", "powered": "true" } }, @@ -119680,7 +131277,7 @@ "id": 598, "properties": { "instrument": "snare", - "note": "9", + "note": "5", "powered": "false" } }, @@ -119688,7 +131285,7 @@ "id": 599, "properties": { "instrument": "snare", - "note": "10", + "note": "6", "powered": "true" } }, @@ -119696,7 +131293,7 @@ "id": 600, "properties": { "instrument": "snare", - "note": "10", + "note": "6", "powered": "false" } }, @@ -119704,7 +131301,7 @@ "id": 601, "properties": { "instrument": "snare", - "note": "11", + "note": "7", "powered": "true" } }, @@ -119712,7 +131309,7 @@ "id": 602, "properties": { "instrument": "snare", - "note": "11", + "note": "7", "powered": "false" } }, @@ -119720,7 +131317,7 @@ "id": 603, "properties": { "instrument": "snare", - "note": "12", + "note": "8", "powered": "true" } }, @@ -119728,7 +131325,7 @@ "id": 604, "properties": { "instrument": "snare", - "note": "12", + "note": "8", "powered": "false" } }, @@ -119736,7 +131333,7 @@ "id": 605, "properties": { "instrument": "snare", - "note": "13", + "note": "9", "powered": "true" } }, @@ -119744,7 +131341,7 @@ "id": 606, "properties": { "instrument": "snare", - "note": "13", + "note": "9", "powered": "false" } }, @@ -119752,7 +131349,7 @@ "id": 607, "properties": { "instrument": "snare", - "note": "14", + "note": "10", "powered": "true" } }, @@ -119760,7 +131357,7 @@ "id": 608, "properties": { "instrument": "snare", - "note": "14", + "note": "10", "powered": "false" } }, @@ -119768,7 +131365,7 @@ "id": 609, "properties": { "instrument": "snare", - "note": "15", + "note": "11", "powered": "true" } }, @@ -119776,7 +131373,7 @@ "id": 610, "properties": { "instrument": "snare", - "note": "15", + "note": "11", "powered": "false" } }, @@ -119784,7 +131381,7 @@ "id": 611, "properties": { "instrument": "snare", - "note": "16", + "note": "12", "powered": "true" } }, @@ -119792,7 +131389,7 @@ "id": 612, "properties": { "instrument": "snare", - "note": "16", + "note": "12", "powered": "false" } }, @@ -119800,7 +131397,7 @@ "id": 613, "properties": { "instrument": "snare", - "note": "17", + "note": "13", "powered": "true" } }, @@ -119808,7 +131405,7 @@ "id": 614, "properties": { "instrument": "snare", - "note": "17", + "note": "13", "powered": "false" } }, @@ -119816,7 +131413,7 @@ "id": 615, "properties": { "instrument": "snare", - "note": "18", + "note": "14", "powered": "true" } }, @@ -119824,7 +131421,7 @@ "id": 616, "properties": { "instrument": "snare", - "note": "18", + "note": "14", "powered": "false" } }, @@ -119832,7 +131429,7 @@ "id": 617, "properties": { "instrument": "snare", - "note": "19", + "note": "15", "powered": "true" } }, @@ -119840,7 +131437,7 @@ "id": 618, "properties": { "instrument": "snare", - "note": "19", + "note": "15", "powered": "false" } }, @@ -119848,7 +131445,7 @@ "id": 619, "properties": { "instrument": "snare", - "note": "20", + "note": "16", "powered": "true" } }, @@ -119856,7 +131453,7 @@ "id": 620, "properties": { "instrument": "snare", - "note": "20", + "note": "16", "powered": "false" } }, @@ -119864,7 +131461,7 @@ "id": 621, "properties": { "instrument": "snare", - "note": "21", + "note": "17", "powered": "true" } }, @@ -119872,7 +131469,7 @@ "id": 622, "properties": { "instrument": "snare", - "note": "21", + "note": "17", "powered": "false" } }, @@ -119880,7 +131477,7 @@ "id": 623, "properties": { "instrument": "snare", - "note": "22", + "note": "18", "powered": "true" } }, @@ -119888,7 +131485,7 @@ "id": 624, "properties": { "instrument": "snare", - "note": "22", + "note": "18", "powered": "false" } }, @@ -119896,7 +131493,7 @@ "id": 625, "properties": { "instrument": "snare", - "note": "23", + "note": "19", "powered": "true" } }, @@ -119904,7 +131501,7 @@ "id": 626, "properties": { "instrument": "snare", - "note": "23", + "note": "19", "powered": "false" } }, @@ -119912,7 +131509,7 @@ "id": 627, "properties": { "instrument": "snare", - "note": "24", + "note": "20", "powered": "true" } }, @@ -119920,71 +131517,71 @@ "id": 628, "properties": { "instrument": "snare", - "note": "24", + "note": "20", "powered": "false" } }, { "id": 629, "properties": { - "instrument": "hat", - "note": "0", + "instrument": "snare", + "note": "21", "powered": "true" } }, { "id": 630, "properties": { - "instrument": "hat", - "note": "0", + "instrument": "snare", + "note": "21", "powered": "false" } }, { "id": 631, "properties": { - "instrument": "hat", - "note": "1", + "instrument": "snare", + "note": "22", "powered": "true" } }, { "id": 632, "properties": { - "instrument": "hat", - "note": "1", + "instrument": "snare", + "note": "22", "powered": "false" } }, { "id": 633, "properties": { - "instrument": "hat", - "note": "2", + "instrument": "snare", + "note": "23", "powered": "true" } }, { "id": 634, "properties": { - "instrument": "hat", - "note": "2", + "instrument": "snare", + "note": "23", "powered": "false" } }, { "id": 635, "properties": { - "instrument": "hat", - "note": "3", + "instrument": "snare", + "note": "24", "powered": "true" } }, { "id": 636, "properties": { - "instrument": "hat", - "note": "3", + "instrument": "snare", + "note": "24", "powered": "false" } }, @@ -119992,7 +131589,7 @@ "id": 637, "properties": { "instrument": "hat", - "note": "4", + "note": "0", "powered": "true" } }, @@ -120000,7 +131597,7 @@ "id": 638, "properties": { "instrument": "hat", - "note": "4", + "note": "0", "powered": "false" } }, @@ -120008,7 +131605,7 @@ "id": 639, "properties": { "instrument": "hat", - "note": "5", + "note": "1", "powered": "true" } }, @@ -120016,7 +131613,7 @@ "id": 640, "properties": { "instrument": "hat", - "note": "5", + "note": "1", "powered": "false" } }, @@ -120024,7 +131621,7 @@ "id": 641, "properties": { "instrument": "hat", - "note": "6", + "note": "2", "powered": "true" } }, @@ -120032,7 +131629,7 @@ "id": 642, "properties": { "instrument": "hat", - "note": "6", + "note": "2", "powered": "false" } }, @@ -120040,7 +131637,7 @@ "id": 643, "properties": { "instrument": "hat", - "note": "7", + "note": "3", "powered": "true" } }, @@ -120048,7 +131645,7 @@ "id": 644, "properties": { "instrument": "hat", - "note": "7", + "note": "3", "powered": "false" } }, @@ -120056,7 +131653,7 @@ "id": 645, "properties": { "instrument": "hat", - "note": "8", + "note": "4", "powered": "true" } }, @@ -120064,7 +131661,7 @@ "id": 646, "properties": { "instrument": "hat", - "note": "8", + "note": "4", "powered": "false" } }, @@ -120072,7 +131669,7 @@ "id": 647, "properties": { "instrument": "hat", - "note": "9", + "note": "5", "powered": "true" } }, @@ -120080,7 +131677,7 @@ "id": 648, "properties": { "instrument": "hat", - "note": "9", + "note": "5", "powered": "false" } }, @@ -120088,7 +131685,7 @@ "id": 649, "properties": { "instrument": "hat", - "note": "10", + "note": "6", "powered": "true" } }, @@ -120096,7 +131693,7 @@ "id": 650, "properties": { "instrument": "hat", - "note": "10", + "note": "6", "powered": "false" } }, @@ -120104,7 +131701,7 @@ "id": 651, "properties": { "instrument": "hat", - "note": "11", + "note": "7", "powered": "true" } }, @@ -120112,7 +131709,7 @@ "id": 652, "properties": { "instrument": "hat", - "note": "11", + "note": "7", "powered": "false" } }, @@ -120120,7 +131717,7 @@ "id": 653, "properties": { "instrument": "hat", - "note": "12", + "note": "8", "powered": "true" } }, @@ -120128,7 +131725,7 @@ "id": 654, "properties": { "instrument": "hat", - "note": "12", + "note": "8", "powered": "false" } }, @@ -120136,7 +131733,7 @@ "id": 655, "properties": { "instrument": "hat", - "note": "13", + "note": "9", "powered": "true" } }, @@ -120144,7 +131741,7 @@ "id": 656, "properties": { "instrument": "hat", - "note": "13", + "note": "9", "powered": "false" } }, @@ -120152,7 +131749,7 @@ "id": 657, "properties": { "instrument": "hat", - "note": "14", + "note": "10", "powered": "true" } }, @@ -120160,7 +131757,7 @@ "id": 658, "properties": { "instrument": "hat", - "note": "14", + "note": "10", "powered": "false" } }, @@ -120168,7 +131765,7 @@ "id": 659, "properties": { "instrument": "hat", - "note": "15", + "note": "11", "powered": "true" } }, @@ -120176,7 +131773,7 @@ "id": 660, "properties": { "instrument": "hat", - "note": "15", + "note": "11", "powered": "false" } }, @@ -120184,7 +131781,7 @@ "id": 661, "properties": { "instrument": "hat", - "note": "16", + "note": "12", "powered": "true" } }, @@ -120192,7 +131789,7 @@ "id": 662, "properties": { "instrument": "hat", - "note": "16", + "note": "12", "powered": "false" } }, @@ -120200,7 +131797,7 @@ "id": 663, "properties": { "instrument": "hat", - "note": "17", + "note": "13", "powered": "true" } }, @@ -120208,7 +131805,7 @@ "id": 664, "properties": { "instrument": "hat", - "note": "17", + "note": "13", "powered": "false" } }, @@ -120216,7 +131813,7 @@ "id": 665, "properties": { "instrument": "hat", - "note": "18", + "note": "14", "powered": "true" } }, @@ -120224,7 +131821,7 @@ "id": 666, "properties": { "instrument": "hat", - "note": "18", + "note": "14", "powered": "false" } }, @@ -120232,7 +131829,7 @@ "id": 667, "properties": { "instrument": "hat", - "note": "19", + "note": "15", "powered": "true" } }, @@ -120240,7 +131837,7 @@ "id": 668, "properties": { "instrument": "hat", - "note": "19", + "note": "15", "powered": "false" } }, @@ -120248,7 +131845,7 @@ "id": 669, "properties": { "instrument": "hat", - "note": "20", + "note": "16", "powered": "true" } }, @@ -120256,7 +131853,7 @@ "id": 670, "properties": { "instrument": "hat", - "note": "20", + "note": "16", "powered": "false" } }, @@ -120264,7 +131861,7 @@ "id": 671, "properties": { "instrument": "hat", - "note": "21", + "note": "17", "powered": "true" } }, @@ -120272,7 +131869,7 @@ "id": 672, "properties": { "instrument": "hat", - "note": "21", + "note": "17", "powered": "false" } }, @@ -120280,7 +131877,7 @@ "id": 673, "properties": { "instrument": "hat", - "note": "22", + "note": "18", "powered": "true" } }, @@ -120288,7 +131885,7 @@ "id": 674, "properties": { "instrument": "hat", - "note": "22", + "note": "18", "powered": "false" } }, @@ -120296,7 +131893,7 @@ "id": 675, "properties": { "instrument": "hat", - "note": "23", + "note": "19", "powered": "true" } }, @@ -120304,7 +131901,7 @@ "id": 676, "properties": { "instrument": "hat", - "note": "23", + "note": "19", "powered": "false" } }, @@ -120312,7 +131909,7 @@ "id": 677, "properties": { "instrument": "hat", - "note": "24", + "note": "20", "powered": "true" } }, @@ -120320,71 +131917,71 @@ "id": 678, "properties": { "instrument": "hat", - "note": "24", + "note": "20", "powered": "false" } }, { "id": 679, "properties": { - "instrument": "bass", - "note": "0", + "instrument": "hat", + "note": "21", "powered": "true" } }, { "id": 680, "properties": { - "instrument": "bass", - "note": "0", + "instrument": "hat", + "note": "21", "powered": "false" } }, { "id": 681, "properties": { - "instrument": "bass", - "note": "1", + "instrument": "hat", + "note": "22", "powered": "true" } }, { "id": 682, "properties": { - "instrument": "bass", - "note": "1", + "instrument": "hat", + "note": "22", "powered": "false" } }, { "id": 683, "properties": { - "instrument": "bass", - "note": "2", + "instrument": "hat", + "note": "23", "powered": "true" } }, { "id": 684, "properties": { - "instrument": "bass", - "note": "2", + "instrument": "hat", + "note": "23", "powered": "false" } }, { "id": 685, "properties": { - "instrument": "bass", - "note": "3", + "instrument": "hat", + "note": "24", "powered": "true" } }, { "id": 686, "properties": { - "instrument": "bass", - "note": "3", + "instrument": "hat", + "note": "24", "powered": "false" } }, @@ -120392,7 +131989,7 @@ "id": 687, "properties": { "instrument": "bass", - "note": "4", + "note": "0", "powered": "true" } }, @@ -120400,7 +131997,7 @@ "id": 688, "properties": { "instrument": "bass", - "note": "4", + "note": "0", "powered": "false" } }, @@ -120408,7 +132005,7 @@ "id": 689, "properties": { "instrument": "bass", - "note": "5", + "note": "1", "powered": "true" } }, @@ -120416,7 +132013,7 @@ "id": 690, "properties": { "instrument": "bass", - "note": "5", + "note": "1", "powered": "false" } }, @@ -120424,7 +132021,7 @@ "id": 691, "properties": { "instrument": "bass", - "note": "6", + "note": "2", "powered": "true" } }, @@ -120432,7 +132029,7 @@ "id": 692, "properties": { "instrument": "bass", - "note": "6", + "note": "2", "powered": "false" } }, @@ -120440,7 +132037,7 @@ "id": 693, "properties": { "instrument": "bass", - "note": "7", + "note": "3", "powered": "true" } }, @@ -120448,7 +132045,7 @@ "id": 694, "properties": { "instrument": "bass", - "note": "7", + "note": "3", "powered": "false" } }, @@ -120456,7 +132053,7 @@ "id": 695, "properties": { "instrument": "bass", - "note": "8", + "note": "4", "powered": "true" } }, @@ -120464,7 +132061,7 @@ "id": 696, "properties": { "instrument": "bass", - "note": "8", + "note": "4", "powered": "false" } }, @@ -120472,7 +132069,7 @@ "id": 697, "properties": { "instrument": "bass", - "note": "9", + "note": "5", "powered": "true" } }, @@ -120480,7 +132077,7 @@ "id": 698, "properties": { "instrument": "bass", - "note": "9", + "note": "5", "powered": "false" } }, @@ -120488,7 +132085,7 @@ "id": 699, "properties": { "instrument": "bass", - "note": "10", + "note": "6", "powered": "true" } }, @@ -120496,7 +132093,7 @@ "id": 700, "properties": { "instrument": "bass", - "note": "10", + "note": "6", "powered": "false" } }, @@ -120504,7 +132101,7 @@ "id": 701, "properties": { "instrument": "bass", - "note": "11", + "note": "7", "powered": "true" } }, @@ -120512,7 +132109,7 @@ "id": 702, "properties": { "instrument": "bass", - "note": "11", + "note": "7", "powered": "false" } }, @@ -120520,7 +132117,7 @@ "id": 703, "properties": { "instrument": "bass", - "note": "12", + "note": "8", "powered": "true" } }, @@ -120528,7 +132125,7 @@ "id": 704, "properties": { "instrument": "bass", - "note": "12", + "note": "8", "powered": "false" } }, @@ -120536,7 +132133,7 @@ "id": 705, "properties": { "instrument": "bass", - "note": "13", + "note": "9", "powered": "true" } }, @@ -120544,7 +132141,7 @@ "id": 706, "properties": { "instrument": "bass", - "note": "13", + "note": "9", "powered": "false" } }, @@ -120552,7 +132149,7 @@ "id": 707, "properties": { "instrument": "bass", - "note": "14", + "note": "10", "powered": "true" } }, @@ -120560,7 +132157,7 @@ "id": 708, "properties": { "instrument": "bass", - "note": "14", + "note": "10", "powered": "false" } }, @@ -120568,7 +132165,7 @@ "id": 709, "properties": { "instrument": "bass", - "note": "15", + "note": "11", "powered": "true" } }, @@ -120576,7 +132173,7 @@ "id": 710, "properties": { "instrument": "bass", - "note": "15", + "note": "11", "powered": "false" } }, @@ -120584,7 +132181,7 @@ "id": 711, "properties": { "instrument": "bass", - "note": "16", + "note": "12", "powered": "true" } }, @@ -120592,7 +132189,7 @@ "id": 712, "properties": { "instrument": "bass", - "note": "16", + "note": "12", "powered": "false" } }, @@ -120600,7 +132197,7 @@ "id": 713, "properties": { "instrument": "bass", - "note": "17", + "note": "13", "powered": "true" } }, @@ -120608,7 +132205,7 @@ "id": 714, "properties": { "instrument": "bass", - "note": "17", + "note": "13", "powered": "false" } }, @@ -120616,7 +132213,7 @@ "id": 715, "properties": { "instrument": "bass", - "note": "18", + "note": "14", "powered": "true" } }, @@ -120624,7 +132221,7 @@ "id": 716, "properties": { "instrument": "bass", - "note": "18", + "note": "14", "powered": "false" } }, @@ -120632,7 +132229,7 @@ "id": 717, "properties": { "instrument": "bass", - "note": "19", + "note": "15", "powered": "true" } }, @@ -120640,7 +132237,7 @@ "id": 718, "properties": { "instrument": "bass", - "note": "19", + "note": "15", "powered": "false" } }, @@ -120648,7 +132245,7 @@ "id": 719, "properties": { "instrument": "bass", - "note": "20", + "note": "16", "powered": "true" } }, @@ -120656,7 +132253,7 @@ "id": 720, "properties": { "instrument": "bass", - "note": "20", + "note": "16", "powered": "false" } }, @@ -120664,7 +132261,7 @@ "id": 721, "properties": { "instrument": "bass", - "note": "21", + "note": "17", "powered": "true" } }, @@ -120672,7 +132269,7 @@ "id": 722, "properties": { "instrument": "bass", - "note": "21", + "note": "17", "powered": "false" } }, @@ -120680,7 +132277,7 @@ "id": 723, "properties": { "instrument": "bass", - "note": "22", + "note": "18", "powered": "true" } }, @@ -120688,7 +132285,7 @@ "id": 724, "properties": { "instrument": "bass", - "note": "22", + "note": "18", "powered": "false" } }, @@ -120696,7 +132293,7 @@ "id": 725, "properties": { "instrument": "bass", - "note": "23", + "note": "19", "powered": "true" } }, @@ -120704,7 +132301,7 @@ "id": 726, "properties": { "instrument": "bass", - "note": "23", + "note": "19", "powered": "false" } }, @@ -120712,7 +132309,7 @@ "id": 727, "properties": { "instrument": "bass", - "note": "24", + "note": "20", "powered": "true" } }, @@ -120720,71 +132317,71 @@ "id": 728, "properties": { "instrument": "bass", - "note": "24", + "note": "20", "powered": "false" } }, { "id": 729, "properties": { - "instrument": "flute", - "note": "0", + "instrument": "bass", + "note": "21", "powered": "true" } }, { "id": 730, "properties": { - "instrument": "flute", - "note": "0", + "instrument": "bass", + "note": "21", "powered": "false" } }, { "id": 731, "properties": { - "instrument": "flute", - "note": "1", + "instrument": "bass", + "note": "22", "powered": "true" } }, { "id": 732, "properties": { - "instrument": "flute", - "note": "1", + "instrument": "bass", + "note": "22", "powered": "false" } }, { "id": 733, "properties": { - "instrument": "flute", - "note": "2", + "instrument": "bass", + "note": "23", "powered": "true" } }, { "id": 734, "properties": { - "instrument": "flute", - "note": "2", + "instrument": "bass", + "note": "23", "powered": "false" } }, { "id": 735, "properties": { - "instrument": "flute", - "note": "3", + "instrument": "bass", + "note": "24", "powered": "true" } }, { "id": 736, "properties": { - "instrument": "flute", - "note": "3", + "instrument": "bass", + "note": "24", "powered": "false" } }, @@ -120792,7 +132389,7 @@ "id": 737, "properties": { "instrument": "flute", - "note": "4", + "note": "0", "powered": "true" } }, @@ -120800,7 +132397,7 @@ "id": 738, "properties": { "instrument": "flute", - "note": "4", + "note": "0", "powered": "false" } }, @@ -120808,7 +132405,7 @@ "id": 739, "properties": { "instrument": "flute", - "note": "5", + "note": "1", "powered": "true" } }, @@ -120816,7 +132413,7 @@ "id": 740, "properties": { "instrument": "flute", - "note": "5", + "note": "1", "powered": "false" } }, @@ -120824,7 +132421,7 @@ "id": 741, "properties": { "instrument": "flute", - "note": "6", + "note": "2", "powered": "true" } }, @@ -120832,7 +132429,7 @@ "id": 742, "properties": { "instrument": "flute", - "note": "6", + "note": "2", "powered": "false" } }, @@ -120840,7 +132437,7 @@ "id": 743, "properties": { "instrument": "flute", - "note": "7", + "note": "3", "powered": "true" } }, @@ -120848,7 +132445,7 @@ "id": 744, "properties": { "instrument": "flute", - "note": "7", + "note": "3", "powered": "false" } }, @@ -120856,7 +132453,7 @@ "id": 745, "properties": { "instrument": "flute", - "note": "8", + "note": "4", "powered": "true" } }, @@ -120864,7 +132461,7 @@ "id": 746, "properties": { "instrument": "flute", - "note": "8", + "note": "4", "powered": "false" } }, @@ -120872,7 +132469,7 @@ "id": 747, "properties": { "instrument": "flute", - "note": "9", + "note": "5", "powered": "true" } }, @@ -120880,7 +132477,7 @@ "id": 748, "properties": { "instrument": "flute", - "note": "9", + "note": "5", "powered": "false" } }, @@ -120888,7 +132485,7 @@ "id": 749, "properties": { "instrument": "flute", - "note": "10", + "note": "6", "powered": "true" } }, @@ -120896,7 +132493,7 @@ "id": 750, "properties": { "instrument": "flute", - "note": "10", + "note": "6", "powered": "false" } }, @@ -120904,7 +132501,7 @@ "id": 751, "properties": { "instrument": "flute", - "note": "11", + "note": "7", "powered": "true" } }, @@ -120912,7 +132509,7 @@ "id": 752, "properties": { "instrument": "flute", - "note": "11", + "note": "7", "powered": "false" } }, @@ -120920,7 +132517,7 @@ "id": 753, "properties": { "instrument": "flute", - "note": "12", + "note": "8", "powered": "true" } }, @@ -120928,7 +132525,7 @@ "id": 754, "properties": { "instrument": "flute", - "note": "12", + "note": "8", "powered": "false" } }, @@ -120936,7 +132533,7 @@ "id": 755, "properties": { "instrument": "flute", - "note": "13", + "note": "9", "powered": "true" } }, @@ -120944,7 +132541,7 @@ "id": 756, "properties": { "instrument": "flute", - "note": "13", + "note": "9", "powered": "false" } }, @@ -120952,7 +132549,7 @@ "id": 757, "properties": { "instrument": "flute", - "note": "14", + "note": "10", "powered": "true" } }, @@ -120960,7 +132557,7 @@ "id": 758, "properties": { "instrument": "flute", - "note": "14", + "note": "10", "powered": "false" } }, @@ -120968,7 +132565,7 @@ "id": 759, "properties": { "instrument": "flute", - "note": "15", + "note": "11", "powered": "true" } }, @@ -120976,7 +132573,7 @@ "id": 760, "properties": { "instrument": "flute", - "note": "15", + "note": "11", "powered": "false" } }, @@ -120984,7 +132581,7 @@ "id": 761, "properties": { "instrument": "flute", - "note": "16", + "note": "12", "powered": "true" } }, @@ -120992,7 +132589,7 @@ "id": 762, "properties": { "instrument": "flute", - "note": "16", + "note": "12", "powered": "false" } }, @@ -121000,7 +132597,7 @@ "id": 763, "properties": { "instrument": "flute", - "note": "17", + "note": "13", "powered": "true" } }, @@ -121008,7 +132605,7 @@ "id": 764, "properties": { "instrument": "flute", - "note": "17", + "note": "13", "powered": "false" } }, @@ -121016,7 +132613,7 @@ "id": 765, "properties": { "instrument": "flute", - "note": "18", + "note": "14", "powered": "true" } }, @@ -121024,7 +132621,7 @@ "id": 766, "properties": { "instrument": "flute", - "note": "18", + "note": "14", "powered": "false" } }, @@ -121032,7 +132629,7 @@ "id": 767, "properties": { "instrument": "flute", - "note": "19", + "note": "15", "powered": "true" } }, @@ -121040,7 +132637,7 @@ "id": 768, "properties": { "instrument": "flute", - "note": "19", + "note": "15", "powered": "false" } }, @@ -121048,7 +132645,7 @@ "id": 769, "properties": { "instrument": "flute", - "note": "20", + "note": "16", "powered": "true" } }, @@ -121056,7 +132653,7 @@ "id": 770, "properties": { "instrument": "flute", - "note": "20", + "note": "16", "powered": "false" } }, @@ -121064,7 +132661,7 @@ "id": 771, "properties": { "instrument": "flute", - "note": "21", + "note": "17", "powered": "true" } }, @@ -121072,7 +132669,7 @@ "id": 772, "properties": { "instrument": "flute", - "note": "21", + "note": "17", "powered": "false" } }, @@ -121080,7 +132677,7 @@ "id": 773, "properties": { "instrument": "flute", - "note": "22", + "note": "18", "powered": "true" } }, @@ -121088,7 +132685,7 @@ "id": 774, "properties": { "instrument": "flute", - "note": "22", + "note": "18", "powered": "false" } }, @@ -121096,7 +132693,7 @@ "id": 775, "properties": { "instrument": "flute", - "note": "23", + "note": "19", "powered": "true" } }, @@ -121104,7 +132701,7 @@ "id": 776, "properties": { "instrument": "flute", - "note": "23", + "note": "19", "powered": "false" } }, @@ -121112,7 +132709,7 @@ "id": 777, "properties": { "instrument": "flute", - "note": "24", + "note": "20", "powered": "true" } }, @@ -121120,71 +132717,71 @@ "id": 778, "properties": { "instrument": "flute", - "note": "24", + "note": "20", "powered": "false" } }, { "id": 779, "properties": { - "instrument": "bell", - "note": "0", + "instrument": "flute", + "note": "21", "powered": "true" } }, { "id": 780, "properties": { - "instrument": "bell", - "note": "0", + "instrument": "flute", + "note": "21", "powered": "false" } }, { "id": 781, "properties": { - "instrument": "bell", - "note": "1", + "instrument": "flute", + "note": "22", "powered": "true" } }, { "id": 782, "properties": { - "instrument": "bell", - "note": "1", + "instrument": "flute", + "note": "22", "powered": "false" } }, { "id": 783, "properties": { - "instrument": "bell", - "note": "2", + "instrument": "flute", + "note": "23", "powered": "true" } }, { "id": 784, "properties": { - "instrument": "bell", - "note": "2", + "instrument": "flute", + "note": "23", "powered": "false" } }, { "id": 785, "properties": { - "instrument": "bell", - "note": "3", + "instrument": "flute", + "note": "24", "powered": "true" } }, { "id": 786, "properties": { - "instrument": "bell", - "note": "3", + "instrument": "flute", + "note": "24", "powered": "false" } }, @@ -121192,7 +132789,7 @@ "id": 787, "properties": { "instrument": "bell", - "note": "4", + "note": "0", "powered": "true" } }, @@ -121200,7 +132797,7 @@ "id": 788, "properties": { "instrument": "bell", - "note": "4", + "note": "0", "powered": "false" } }, @@ -121208,7 +132805,7 @@ "id": 789, "properties": { "instrument": "bell", - "note": "5", + "note": "1", "powered": "true" } }, @@ -121216,7 +132813,7 @@ "id": 790, "properties": { "instrument": "bell", - "note": "5", + "note": "1", "powered": "false" } }, @@ -121224,7 +132821,7 @@ "id": 791, "properties": { "instrument": "bell", - "note": "6", + "note": "2", "powered": "true" } }, @@ -121232,7 +132829,7 @@ "id": 792, "properties": { "instrument": "bell", - "note": "6", + "note": "2", "powered": "false" } }, @@ -121240,7 +132837,7 @@ "id": 793, "properties": { "instrument": "bell", - "note": "7", + "note": "3", "powered": "true" } }, @@ -121248,7 +132845,7 @@ "id": 794, "properties": { "instrument": "bell", - "note": "7", + "note": "3", "powered": "false" } }, @@ -121256,7 +132853,7 @@ "id": 795, "properties": { "instrument": "bell", - "note": "8", + "note": "4", "powered": "true" } }, @@ -121264,7 +132861,7 @@ "id": 796, "properties": { "instrument": "bell", - "note": "8", + "note": "4", "powered": "false" } }, @@ -121272,7 +132869,7 @@ "id": 797, "properties": { "instrument": "bell", - "note": "9", + "note": "5", "powered": "true" } }, @@ -121280,7 +132877,7 @@ "id": 798, "properties": { "instrument": "bell", - "note": "9", + "note": "5", "powered": "false" } }, @@ -121288,7 +132885,7 @@ "id": 799, "properties": { "instrument": "bell", - "note": "10", + "note": "6", "powered": "true" } }, @@ -121296,7 +132893,7 @@ "id": 800, "properties": { "instrument": "bell", - "note": "10", + "note": "6", "powered": "false" } }, @@ -121304,7 +132901,7 @@ "id": 801, "properties": { "instrument": "bell", - "note": "11", + "note": "7", "powered": "true" } }, @@ -121312,7 +132909,7 @@ "id": 802, "properties": { "instrument": "bell", - "note": "11", + "note": "7", "powered": "false" } }, @@ -121320,7 +132917,7 @@ "id": 803, "properties": { "instrument": "bell", - "note": "12", + "note": "8", "powered": "true" } }, @@ -121328,7 +132925,7 @@ "id": 804, "properties": { "instrument": "bell", - "note": "12", + "note": "8", "powered": "false" } }, @@ -121336,7 +132933,7 @@ "id": 805, "properties": { "instrument": "bell", - "note": "13", + "note": "9", "powered": "true" } }, @@ -121344,7 +132941,7 @@ "id": 806, "properties": { "instrument": "bell", - "note": "13", + "note": "9", "powered": "false" } }, @@ -121352,7 +132949,7 @@ "id": 807, "properties": { "instrument": "bell", - "note": "14", + "note": "10", "powered": "true" } }, @@ -121360,7 +132957,7 @@ "id": 808, "properties": { "instrument": "bell", - "note": "14", + "note": "10", "powered": "false" } }, @@ -121368,7 +132965,7 @@ "id": 809, "properties": { "instrument": "bell", - "note": "15", + "note": "11", "powered": "true" } }, @@ -121376,7 +132973,7 @@ "id": 810, "properties": { "instrument": "bell", - "note": "15", + "note": "11", "powered": "false" } }, @@ -121384,7 +132981,7 @@ "id": 811, "properties": { "instrument": "bell", - "note": "16", + "note": "12", "powered": "true" } }, @@ -121392,7 +132989,7 @@ "id": 812, "properties": { "instrument": "bell", - "note": "16", + "note": "12", "powered": "false" } }, @@ -121400,7 +132997,7 @@ "id": 813, "properties": { "instrument": "bell", - "note": "17", + "note": "13", "powered": "true" } }, @@ -121408,7 +133005,7 @@ "id": 814, "properties": { "instrument": "bell", - "note": "17", + "note": "13", "powered": "false" } }, @@ -121416,7 +133013,7 @@ "id": 815, "properties": { "instrument": "bell", - "note": "18", + "note": "14", "powered": "true" } }, @@ -121424,7 +133021,7 @@ "id": 816, "properties": { "instrument": "bell", - "note": "18", + "note": "14", "powered": "false" } }, @@ -121432,7 +133029,7 @@ "id": 817, "properties": { "instrument": "bell", - "note": "19", + "note": "15", "powered": "true" } }, @@ -121440,7 +133037,7 @@ "id": 818, "properties": { "instrument": "bell", - "note": "19", + "note": "15", "powered": "false" } }, @@ -121448,7 +133045,7 @@ "id": 819, "properties": { "instrument": "bell", - "note": "20", + "note": "16", "powered": "true" } }, @@ -121456,7 +133053,7 @@ "id": 820, "properties": { "instrument": "bell", - "note": "20", + "note": "16", "powered": "false" } }, @@ -121464,7 +133061,7 @@ "id": 821, "properties": { "instrument": "bell", - "note": "21", + "note": "17", "powered": "true" } }, @@ -121472,7 +133069,7 @@ "id": 822, "properties": { "instrument": "bell", - "note": "21", + "note": "17", "powered": "false" } }, @@ -121480,7 +133077,7 @@ "id": 823, "properties": { "instrument": "bell", - "note": "22", + "note": "18", "powered": "true" } }, @@ -121488,7 +133085,7 @@ "id": 824, "properties": { "instrument": "bell", - "note": "22", + "note": "18", "powered": "false" } }, @@ -121496,7 +133093,7 @@ "id": 825, "properties": { "instrument": "bell", - "note": "23", + "note": "19", "powered": "true" } }, @@ -121504,7 +133101,7 @@ "id": 826, "properties": { "instrument": "bell", - "note": "23", + "note": "19", "powered": "false" } }, @@ -121512,7 +133109,7 @@ "id": 827, "properties": { "instrument": "bell", - "note": "24", + "note": "20", "powered": "true" } }, @@ -121520,71 +133117,71 @@ "id": 828, "properties": { "instrument": "bell", - "note": "24", + "note": "20", "powered": "false" } }, { "id": 829, "properties": { - "instrument": "guitar", - "note": "0", + "instrument": "bell", + "note": "21", "powered": "true" } }, { "id": 830, "properties": { - "instrument": "guitar", - "note": "0", + "instrument": "bell", + "note": "21", "powered": "false" } }, { "id": 831, "properties": { - "instrument": "guitar", - "note": "1", + "instrument": "bell", + "note": "22", "powered": "true" } }, { "id": 832, "properties": { - "instrument": "guitar", - "note": "1", + "instrument": "bell", + "note": "22", "powered": "false" } }, { "id": 833, "properties": { - "instrument": "guitar", - "note": "2", + "instrument": "bell", + "note": "23", "powered": "true" } }, { "id": 834, "properties": { - "instrument": "guitar", - "note": "2", + "instrument": "bell", + "note": "23", "powered": "false" } }, { "id": 835, "properties": { - "instrument": "guitar", - "note": "3", + "instrument": "bell", + "note": "24", "powered": "true" } }, { "id": 836, "properties": { - "instrument": "guitar", - "note": "3", + "instrument": "bell", + "note": "24", "powered": "false" } }, @@ -121592,7 +133189,7 @@ "id": 837, "properties": { "instrument": "guitar", - "note": "4", + "note": "0", "powered": "true" } }, @@ -121600,7 +133197,7 @@ "id": 838, "properties": { "instrument": "guitar", - "note": "4", + "note": "0", "powered": "false" } }, @@ -121608,7 +133205,7 @@ "id": 839, "properties": { "instrument": "guitar", - "note": "5", + "note": "1", "powered": "true" } }, @@ -121616,7 +133213,7 @@ "id": 840, "properties": { "instrument": "guitar", - "note": "5", + "note": "1", "powered": "false" } }, @@ -121624,7 +133221,7 @@ "id": 841, "properties": { "instrument": "guitar", - "note": "6", + "note": "2", "powered": "true" } }, @@ -121632,7 +133229,7 @@ "id": 842, "properties": { "instrument": "guitar", - "note": "6", + "note": "2", "powered": "false" } }, @@ -121640,7 +133237,7 @@ "id": 843, "properties": { "instrument": "guitar", - "note": "7", + "note": "3", "powered": "true" } }, @@ -121648,7 +133245,7 @@ "id": 844, "properties": { "instrument": "guitar", - "note": "7", + "note": "3", "powered": "false" } }, @@ -121656,7 +133253,7 @@ "id": 845, "properties": { "instrument": "guitar", - "note": "8", + "note": "4", "powered": "true" } }, @@ -121664,7 +133261,7 @@ "id": 846, "properties": { "instrument": "guitar", - "note": "8", + "note": "4", "powered": "false" } }, @@ -121672,7 +133269,7 @@ "id": 847, "properties": { "instrument": "guitar", - "note": "9", + "note": "5", "powered": "true" } }, @@ -121680,7 +133277,7 @@ "id": 848, "properties": { "instrument": "guitar", - "note": "9", + "note": "5", "powered": "false" } }, @@ -121688,7 +133285,7 @@ "id": 849, "properties": { "instrument": "guitar", - "note": "10", + "note": "6", "powered": "true" } }, @@ -121696,7 +133293,7 @@ "id": 850, "properties": { "instrument": "guitar", - "note": "10", + "note": "6", "powered": "false" } }, @@ -121704,7 +133301,7 @@ "id": 851, "properties": { "instrument": "guitar", - "note": "11", + "note": "7", "powered": "true" } }, @@ -121712,7 +133309,7 @@ "id": 852, "properties": { "instrument": "guitar", - "note": "11", + "note": "7", "powered": "false" } }, @@ -121720,7 +133317,7 @@ "id": 853, "properties": { "instrument": "guitar", - "note": "12", + "note": "8", "powered": "true" } }, @@ -121728,7 +133325,7 @@ "id": 854, "properties": { "instrument": "guitar", - "note": "12", + "note": "8", "powered": "false" } }, @@ -121736,7 +133333,7 @@ "id": 855, "properties": { "instrument": "guitar", - "note": "13", + "note": "9", "powered": "true" } }, @@ -121744,7 +133341,7 @@ "id": 856, "properties": { "instrument": "guitar", - "note": "13", + "note": "9", "powered": "false" } }, @@ -121752,7 +133349,7 @@ "id": 857, "properties": { "instrument": "guitar", - "note": "14", + "note": "10", "powered": "true" } }, @@ -121760,7 +133357,7 @@ "id": 858, "properties": { "instrument": "guitar", - "note": "14", + "note": "10", "powered": "false" } }, @@ -121768,7 +133365,7 @@ "id": 859, "properties": { "instrument": "guitar", - "note": "15", + "note": "11", "powered": "true" } }, @@ -121776,7 +133373,7 @@ "id": 860, "properties": { "instrument": "guitar", - "note": "15", + "note": "11", "powered": "false" } }, @@ -121784,7 +133381,7 @@ "id": 861, "properties": { "instrument": "guitar", - "note": "16", + "note": "12", "powered": "true" } }, @@ -121792,7 +133389,7 @@ "id": 862, "properties": { "instrument": "guitar", - "note": "16", + "note": "12", "powered": "false" } }, @@ -121800,7 +133397,7 @@ "id": 863, "properties": { "instrument": "guitar", - "note": "17", + "note": "13", "powered": "true" } }, @@ -121808,7 +133405,7 @@ "id": 864, "properties": { "instrument": "guitar", - "note": "17", + "note": "13", "powered": "false" } }, @@ -121816,7 +133413,7 @@ "id": 865, "properties": { "instrument": "guitar", - "note": "18", + "note": "14", "powered": "true" } }, @@ -121824,7 +133421,7 @@ "id": 866, "properties": { "instrument": "guitar", - "note": "18", + "note": "14", "powered": "false" } }, @@ -121832,7 +133429,7 @@ "id": 867, "properties": { "instrument": "guitar", - "note": "19", + "note": "15", "powered": "true" } }, @@ -121840,7 +133437,7 @@ "id": 868, "properties": { "instrument": "guitar", - "note": "19", + "note": "15", "powered": "false" } }, @@ -121848,7 +133445,7 @@ "id": 869, "properties": { "instrument": "guitar", - "note": "20", + "note": "16", "powered": "true" } }, @@ -121856,7 +133453,7 @@ "id": 870, "properties": { "instrument": "guitar", - "note": "20", + "note": "16", "powered": "false" } }, @@ -121864,7 +133461,7 @@ "id": 871, "properties": { "instrument": "guitar", - "note": "21", + "note": "17", "powered": "true" } }, @@ -121872,7 +133469,7 @@ "id": 872, "properties": { "instrument": "guitar", - "note": "21", + "note": "17", "powered": "false" } }, @@ -121880,7 +133477,7 @@ "id": 873, "properties": { "instrument": "guitar", - "note": "22", + "note": "18", "powered": "true" } }, @@ -121888,7 +133485,7 @@ "id": 874, "properties": { "instrument": "guitar", - "note": "22", + "note": "18", "powered": "false" } }, @@ -121896,7 +133493,7 @@ "id": 875, "properties": { "instrument": "guitar", - "note": "23", + "note": "19", "powered": "true" } }, @@ -121904,7 +133501,7 @@ "id": 876, "properties": { "instrument": "guitar", - "note": "23", + "note": "19", "powered": "false" } }, @@ -121912,7 +133509,7 @@ "id": 877, "properties": { "instrument": "guitar", - "note": "24", + "note": "20", "powered": "true" } }, @@ -121920,71 +133517,71 @@ "id": 878, "properties": { "instrument": "guitar", - "note": "24", + "note": "20", "powered": "false" } }, { "id": 879, "properties": { - "instrument": "chime", - "note": "0", + "instrument": "guitar", + "note": "21", "powered": "true" } }, { "id": 880, "properties": { - "instrument": "chime", - "note": "0", + "instrument": "guitar", + "note": "21", "powered": "false" } }, { "id": 881, "properties": { - "instrument": "chime", - "note": "1", + "instrument": "guitar", + "note": "22", "powered": "true" } }, { "id": 882, "properties": { - "instrument": "chime", - "note": "1", + "instrument": "guitar", + "note": "22", "powered": "false" } }, { "id": 883, "properties": { - "instrument": "chime", - "note": "2", + "instrument": "guitar", + "note": "23", "powered": "true" } }, { "id": 884, "properties": { - "instrument": "chime", - "note": "2", + "instrument": "guitar", + "note": "23", "powered": "false" } }, { "id": 885, "properties": { - "instrument": "chime", - "note": "3", + "instrument": "guitar", + "note": "24", "powered": "true" } }, { "id": 886, "properties": { - "instrument": "chime", - "note": "3", + "instrument": "guitar", + "note": "24", "powered": "false" } }, @@ -121992,7 +133589,7 @@ "id": 887, "properties": { "instrument": "chime", - "note": "4", + "note": "0", "powered": "true" } }, @@ -122000,7 +133597,7 @@ "id": 888, "properties": { "instrument": "chime", - "note": "4", + "note": "0", "powered": "false" } }, @@ -122008,7 +133605,7 @@ "id": 889, "properties": { "instrument": "chime", - "note": "5", + "note": "1", "powered": "true" } }, @@ -122016,7 +133613,7 @@ "id": 890, "properties": { "instrument": "chime", - "note": "5", + "note": "1", "powered": "false" } }, @@ -122024,7 +133621,7 @@ "id": 891, "properties": { "instrument": "chime", - "note": "6", + "note": "2", "powered": "true" } }, @@ -122032,7 +133629,7 @@ "id": 892, "properties": { "instrument": "chime", - "note": "6", + "note": "2", "powered": "false" } }, @@ -122040,7 +133637,7 @@ "id": 893, "properties": { "instrument": "chime", - "note": "7", + "note": "3", "powered": "true" } }, @@ -122048,7 +133645,7 @@ "id": 894, "properties": { "instrument": "chime", - "note": "7", + "note": "3", "powered": "false" } }, @@ -122056,7 +133653,7 @@ "id": 895, "properties": { "instrument": "chime", - "note": "8", + "note": "4", "powered": "true" } }, @@ -122064,7 +133661,7 @@ "id": 896, "properties": { "instrument": "chime", - "note": "8", + "note": "4", "powered": "false" } }, @@ -122072,7 +133669,7 @@ "id": 897, "properties": { "instrument": "chime", - "note": "9", + "note": "5", "powered": "true" } }, @@ -122080,7 +133677,7 @@ "id": 898, "properties": { "instrument": "chime", - "note": "9", + "note": "5", "powered": "false" } }, @@ -122088,7 +133685,7 @@ "id": 899, "properties": { "instrument": "chime", - "note": "10", + "note": "6", "powered": "true" } }, @@ -122096,7 +133693,7 @@ "id": 900, "properties": { "instrument": "chime", - "note": "10", + "note": "6", "powered": "false" } }, @@ -122104,7 +133701,7 @@ "id": 901, "properties": { "instrument": "chime", - "note": "11", + "note": "7", "powered": "true" } }, @@ -122112,7 +133709,7 @@ "id": 902, "properties": { "instrument": "chime", - "note": "11", + "note": "7", "powered": "false" } }, @@ -122120,7 +133717,7 @@ "id": 903, "properties": { "instrument": "chime", - "note": "12", + "note": "8", "powered": "true" } }, @@ -122128,7 +133725,7 @@ "id": 904, "properties": { "instrument": "chime", - "note": "12", + "note": "8", "powered": "false" } }, @@ -122136,7 +133733,7 @@ "id": 905, "properties": { "instrument": "chime", - "note": "13", + "note": "9", "powered": "true" } }, @@ -122144,7 +133741,7 @@ "id": 906, "properties": { "instrument": "chime", - "note": "13", + "note": "9", "powered": "false" } }, @@ -122152,7 +133749,7 @@ "id": 907, "properties": { "instrument": "chime", - "note": "14", + "note": "10", "powered": "true" } }, @@ -122160,7 +133757,7 @@ "id": 908, "properties": { "instrument": "chime", - "note": "14", + "note": "10", "powered": "false" } }, @@ -122168,7 +133765,7 @@ "id": 909, "properties": { "instrument": "chime", - "note": "15", + "note": "11", "powered": "true" } }, @@ -122176,7 +133773,7 @@ "id": 910, "properties": { "instrument": "chime", - "note": "15", + "note": "11", "powered": "false" } }, @@ -122184,7 +133781,7 @@ "id": 911, "properties": { "instrument": "chime", - "note": "16", + "note": "12", "powered": "true" } }, @@ -122192,7 +133789,7 @@ "id": 912, "properties": { "instrument": "chime", - "note": "16", + "note": "12", "powered": "false" } }, @@ -122200,7 +133797,7 @@ "id": 913, "properties": { "instrument": "chime", - "note": "17", + "note": "13", "powered": "true" } }, @@ -122208,7 +133805,7 @@ "id": 914, "properties": { "instrument": "chime", - "note": "17", + "note": "13", "powered": "false" } }, @@ -122216,7 +133813,7 @@ "id": 915, "properties": { "instrument": "chime", - "note": "18", + "note": "14", "powered": "true" } }, @@ -122224,7 +133821,7 @@ "id": 916, "properties": { "instrument": "chime", - "note": "18", + "note": "14", "powered": "false" } }, @@ -122232,7 +133829,7 @@ "id": 917, "properties": { "instrument": "chime", - "note": "19", + "note": "15", "powered": "true" } }, @@ -122240,7 +133837,7 @@ "id": 918, "properties": { "instrument": "chime", - "note": "19", + "note": "15", "powered": "false" } }, @@ -122248,7 +133845,7 @@ "id": 919, "properties": { "instrument": "chime", - "note": "20", + "note": "16", "powered": "true" } }, @@ -122256,7 +133853,7 @@ "id": 920, "properties": { "instrument": "chime", - "note": "20", + "note": "16", "powered": "false" } }, @@ -122264,7 +133861,7 @@ "id": 921, "properties": { "instrument": "chime", - "note": "21", + "note": "17", "powered": "true" } }, @@ -122272,7 +133869,7 @@ "id": 922, "properties": { "instrument": "chime", - "note": "21", + "note": "17", "powered": "false" } }, @@ -122280,7 +133877,7 @@ "id": 923, "properties": { "instrument": "chime", - "note": "22", + "note": "18", "powered": "true" } }, @@ -122288,7 +133885,7 @@ "id": 924, "properties": { "instrument": "chime", - "note": "22", + "note": "18", "powered": "false" } }, @@ -122296,7 +133893,7 @@ "id": 925, "properties": { "instrument": "chime", - "note": "23", + "note": "19", "powered": "true" } }, @@ -122304,7 +133901,7 @@ "id": 926, "properties": { "instrument": "chime", - "note": "23", + "note": "19", "powered": "false" } }, @@ -122312,7 +133909,7 @@ "id": 927, "properties": { "instrument": "chime", - "note": "24", + "note": "20", "powered": "true" } }, @@ -122320,71 +133917,71 @@ "id": 928, "properties": { "instrument": "chime", - "note": "24", + "note": "20", "powered": "false" } }, { "id": 929, "properties": { - "instrument": "xylophone", - "note": "0", + "instrument": "chime", + "note": "21", "powered": "true" } }, { "id": 930, "properties": { - "instrument": "xylophone", - "note": "0", + "instrument": "chime", + "note": "21", "powered": "false" } }, { "id": 931, "properties": { - "instrument": "xylophone", - "note": "1", + "instrument": "chime", + "note": "22", "powered": "true" } }, { "id": 932, "properties": { - "instrument": "xylophone", - "note": "1", + "instrument": "chime", + "note": "22", "powered": "false" } }, { "id": 933, "properties": { - "instrument": "xylophone", - "note": "2", + "instrument": "chime", + "note": "23", "powered": "true" } }, { "id": 934, "properties": { - "instrument": "xylophone", - "note": "2", + "instrument": "chime", + "note": "23", "powered": "false" } }, { "id": 935, "properties": { - "instrument": "xylophone", - "note": "3", + "instrument": "chime", + "note": "24", "powered": "true" } }, { "id": 936, "properties": { - "instrument": "xylophone", - "note": "3", + "instrument": "chime", + "note": "24", "powered": "false" } }, @@ -122392,7 +133989,7 @@ "id": 937, "properties": { "instrument": "xylophone", - "note": "4", + "note": "0", "powered": "true" } }, @@ -122400,7 +133997,7 @@ "id": 938, "properties": { "instrument": "xylophone", - "note": "4", + "note": "0", "powered": "false" } }, @@ -122408,7 +134005,7 @@ "id": 939, "properties": { "instrument": "xylophone", - "note": "5", + "note": "1", "powered": "true" } }, @@ -122416,7 +134013,7 @@ "id": 940, "properties": { "instrument": "xylophone", - "note": "5", + "note": "1", "powered": "false" } }, @@ -122424,7 +134021,7 @@ "id": 941, "properties": { "instrument": "xylophone", - "note": "6", + "note": "2", "powered": "true" } }, @@ -122432,7 +134029,7 @@ "id": 942, "properties": { "instrument": "xylophone", - "note": "6", + "note": "2", "powered": "false" } }, @@ -122440,7 +134037,7 @@ "id": 943, "properties": { "instrument": "xylophone", - "note": "7", + "note": "3", "powered": "true" } }, @@ -122448,7 +134045,7 @@ "id": 944, "properties": { "instrument": "xylophone", - "note": "7", + "note": "3", "powered": "false" } }, @@ -122456,7 +134053,7 @@ "id": 945, "properties": { "instrument": "xylophone", - "note": "8", + "note": "4", "powered": "true" } }, @@ -122464,7 +134061,7 @@ "id": 946, "properties": { "instrument": "xylophone", - "note": "8", + "note": "4", "powered": "false" } }, @@ -122472,7 +134069,7 @@ "id": 947, "properties": { "instrument": "xylophone", - "note": "9", + "note": "5", "powered": "true" } }, @@ -122480,7 +134077,7 @@ "id": 948, "properties": { "instrument": "xylophone", - "note": "9", + "note": "5", "powered": "false" } }, @@ -122488,7 +134085,7 @@ "id": 949, "properties": { "instrument": "xylophone", - "note": "10", + "note": "6", "powered": "true" } }, @@ -122496,7 +134093,7 @@ "id": 950, "properties": { "instrument": "xylophone", - "note": "10", + "note": "6", "powered": "false" } }, @@ -122504,7 +134101,7 @@ "id": 951, "properties": { "instrument": "xylophone", - "note": "11", + "note": "7", "powered": "true" } }, @@ -122512,7 +134109,7 @@ "id": 952, "properties": { "instrument": "xylophone", - "note": "11", + "note": "7", "powered": "false" } }, @@ -122520,7 +134117,7 @@ "id": 953, "properties": { "instrument": "xylophone", - "note": "12", + "note": "8", "powered": "true" } }, @@ -122528,7 +134125,7 @@ "id": 954, "properties": { "instrument": "xylophone", - "note": "12", + "note": "8", "powered": "false" } }, @@ -122536,7 +134133,7 @@ "id": 955, "properties": { "instrument": "xylophone", - "note": "13", + "note": "9", "powered": "true" } }, @@ -122544,7 +134141,7 @@ "id": 956, "properties": { "instrument": "xylophone", - "note": "13", + "note": "9", "powered": "false" } }, @@ -122552,7 +134149,7 @@ "id": 957, "properties": { "instrument": "xylophone", - "note": "14", + "note": "10", "powered": "true" } }, @@ -122560,7 +134157,7 @@ "id": 958, "properties": { "instrument": "xylophone", - "note": "14", + "note": "10", "powered": "false" } }, @@ -122568,7 +134165,7 @@ "id": 959, "properties": { "instrument": "xylophone", - "note": "15", + "note": "11", "powered": "true" } }, @@ -122576,7 +134173,7 @@ "id": 960, "properties": { "instrument": "xylophone", - "note": "15", + "note": "11", "powered": "false" } }, @@ -122584,7 +134181,7 @@ "id": 961, "properties": { "instrument": "xylophone", - "note": "16", + "note": "12", "powered": "true" } }, @@ -122592,7 +134189,7 @@ "id": 962, "properties": { "instrument": "xylophone", - "note": "16", + "note": "12", "powered": "false" } }, @@ -122600,7 +134197,7 @@ "id": 963, "properties": { "instrument": "xylophone", - "note": "17", + "note": "13", "powered": "true" } }, @@ -122608,7 +134205,7 @@ "id": 964, "properties": { "instrument": "xylophone", - "note": "17", + "note": "13", "powered": "false" } }, @@ -122616,7 +134213,7 @@ "id": 965, "properties": { "instrument": "xylophone", - "note": "18", + "note": "14", "powered": "true" } }, @@ -122624,7 +134221,7 @@ "id": 966, "properties": { "instrument": "xylophone", - "note": "18", + "note": "14", "powered": "false" } }, @@ -122632,7 +134229,7 @@ "id": 967, "properties": { "instrument": "xylophone", - "note": "19", + "note": "15", "powered": "true" } }, @@ -122640,7 +134237,7 @@ "id": 968, "properties": { "instrument": "xylophone", - "note": "19", + "note": "15", "powered": "false" } }, @@ -122648,7 +134245,7 @@ "id": 969, "properties": { "instrument": "xylophone", - "note": "20", + "note": "16", "powered": "true" } }, @@ -122656,7 +134253,7 @@ "id": 970, "properties": { "instrument": "xylophone", - "note": "20", + "note": "16", "powered": "false" } }, @@ -122664,7 +134261,7 @@ "id": 971, "properties": { "instrument": "xylophone", - "note": "21", + "note": "17", "powered": "true" } }, @@ -122672,7 +134269,7 @@ "id": 972, "properties": { "instrument": "xylophone", - "note": "21", + "note": "17", "powered": "false" } }, @@ -122680,7 +134277,7 @@ "id": 973, "properties": { "instrument": "xylophone", - "note": "22", + "note": "18", "powered": "true" } }, @@ -122688,7 +134285,7 @@ "id": 974, "properties": { "instrument": "xylophone", - "note": "22", + "note": "18", "powered": "false" } }, @@ -122696,7 +134293,7 @@ "id": 975, "properties": { "instrument": "xylophone", - "note": "23", + "note": "19", "powered": "true" } }, @@ -122704,7 +134301,7 @@ "id": 976, "properties": { "instrument": "xylophone", - "note": "23", + "note": "19", "powered": "false" } }, @@ -122712,7 +134309,7 @@ "id": 977, "properties": { "instrument": "xylophone", - "note": "24", + "note": "20", "powered": "true" } }, @@ -122720,71 +134317,71 @@ "id": 978, "properties": { "instrument": "xylophone", - "note": "24", + "note": "20", "powered": "false" } }, { "id": 979, "properties": { - "instrument": "iron_xylophone", - "note": "0", + "instrument": "xylophone", + "note": "21", "powered": "true" } }, { "id": 980, "properties": { - "instrument": "iron_xylophone", - "note": "0", + "instrument": "xylophone", + "note": "21", "powered": "false" } }, { "id": 981, "properties": { - "instrument": "iron_xylophone", - "note": "1", + "instrument": "xylophone", + "note": "22", "powered": "true" } }, { "id": 982, "properties": { - "instrument": "iron_xylophone", - "note": "1", + "instrument": "xylophone", + "note": "22", "powered": "false" } }, { "id": 983, "properties": { - "instrument": "iron_xylophone", - "note": "2", + "instrument": "xylophone", + "note": "23", "powered": "true" } }, { "id": 984, "properties": { - "instrument": "iron_xylophone", - "note": "2", + "instrument": "xylophone", + "note": "23", "powered": "false" } }, { "id": 985, "properties": { - "instrument": "iron_xylophone", - "note": "3", + "instrument": "xylophone", + "note": "24", "powered": "true" } }, { "id": 986, "properties": { - "instrument": "iron_xylophone", - "note": "3", + "instrument": "xylophone", + "note": "24", "powered": "false" } }, @@ -122792,7 +134389,7 @@ "id": 987, "properties": { "instrument": "iron_xylophone", - "note": "4", + "note": "0", "powered": "true" } }, @@ -122800,7 +134397,7 @@ "id": 988, "properties": { "instrument": "iron_xylophone", - "note": "4", + "note": "0", "powered": "false" } }, @@ -122808,7 +134405,7 @@ "id": 989, "properties": { "instrument": "iron_xylophone", - "note": "5", + "note": "1", "powered": "true" } }, @@ -122816,7 +134413,7 @@ "id": 990, "properties": { "instrument": "iron_xylophone", - "note": "5", + "note": "1", "powered": "false" } }, @@ -122824,7 +134421,7 @@ "id": 991, "properties": { "instrument": "iron_xylophone", - "note": "6", + "note": "2", "powered": "true" } }, @@ -122832,7 +134429,7 @@ "id": 992, "properties": { "instrument": "iron_xylophone", - "note": "6", + "note": "2", "powered": "false" } }, @@ -122840,7 +134437,7 @@ "id": 993, "properties": { "instrument": "iron_xylophone", - "note": "7", + "note": "3", "powered": "true" } }, @@ -122848,7 +134445,7 @@ "id": 994, "properties": { "instrument": "iron_xylophone", - "note": "7", + "note": "3", "powered": "false" } }, @@ -122856,7 +134453,7 @@ "id": 995, "properties": { "instrument": "iron_xylophone", - "note": "8", + "note": "4", "powered": "true" } }, @@ -122864,7 +134461,7 @@ "id": 996, "properties": { "instrument": "iron_xylophone", - "note": "8", + "note": "4", "powered": "false" } }, @@ -122872,7 +134469,7 @@ "id": 997, "properties": { "instrument": "iron_xylophone", - "note": "9", + "note": "5", "powered": "true" } }, @@ -122880,7 +134477,7 @@ "id": 998, "properties": { "instrument": "iron_xylophone", - "note": "9", + "note": "5", "powered": "false" } }, @@ -122888,7 +134485,7 @@ "id": 999, "properties": { "instrument": "iron_xylophone", - "note": "10", + "note": "6", "powered": "true" } }, @@ -122896,7 +134493,7 @@ "id": 1000, "properties": { "instrument": "iron_xylophone", - "note": "10", + "note": "6", "powered": "false" } }, @@ -122904,7 +134501,7 @@ "id": 1001, "properties": { "instrument": "iron_xylophone", - "note": "11", + "note": "7", "powered": "true" } }, @@ -122912,7 +134509,7 @@ "id": 1002, "properties": { "instrument": "iron_xylophone", - "note": "11", + "note": "7", "powered": "false" } }, @@ -122920,7 +134517,7 @@ "id": 1003, "properties": { "instrument": "iron_xylophone", - "note": "12", + "note": "8", "powered": "true" } }, @@ -122928,7 +134525,7 @@ "id": 1004, "properties": { "instrument": "iron_xylophone", - "note": "12", + "note": "8", "powered": "false" } }, @@ -122936,7 +134533,7 @@ "id": 1005, "properties": { "instrument": "iron_xylophone", - "note": "13", + "note": "9", "powered": "true" } }, @@ -122944,7 +134541,7 @@ "id": 1006, "properties": { "instrument": "iron_xylophone", - "note": "13", + "note": "9", "powered": "false" } }, @@ -122952,7 +134549,7 @@ "id": 1007, "properties": { "instrument": "iron_xylophone", - "note": "14", + "note": "10", "powered": "true" } }, @@ -122960,7 +134557,7 @@ "id": 1008, "properties": { "instrument": "iron_xylophone", - "note": "14", + "note": "10", "powered": "false" } }, @@ -122968,7 +134565,7 @@ "id": 1009, "properties": { "instrument": "iron_xylophone", - "note": "15", + "note": "11", "powered": "true" } }, @@ -122976,7 +134573,7 @@ "id": 1010, "properties": { "instrument": "iron_xylophone", - "note": "15", + "note": "11", "powered": "false" } }, @@ -122984,7 +134581,7 @@ "id": 1011, "properties": { "instrument": "iron_xylophone", - "note": "16", + "note": "12", "powered": "true" } }, @@ -122992,7 +134589,7 @@ "id": 1012, "properties": { "instrument": "iron_xylophone", - "note": "16", + "note": "12", "powered": "false" } }, @@ -123000,7 +134597,7 @@ "id": 1013, "properties": { "instrument": "iron_xylophone", - "note": "17", + "note": "13", "powered": "true" } }, @@ -123008,7 +134605,7 @@ "id": 1014, "properties": { "instrument": "iron_xylophone", - "note": "17", + "note": "13", "powered": "false" } }, @@ -123016,7 +134613,7 @@ "id": 1015, "properties": { "instrument": "iron_xylophone", - "note": "18", + "note": "14", "powered": "true" } }, @@ -123024,7 +134621,7 @@ "id": 1016, "properties": { "instrument": "iron_xylophone", - "note": "18", + "note": "14", "powered": "false" } }, @@ -123032,7 +134629,7 @@ "id": 1017, "properties": { "instrument": "iron_xylophone", - "note": "19", + "note": "15", "powered": "true" } }, @@ -123040,7 +134637,7 @@ "id": 1018, "properties": { "instrument": "iron_xylophone", - "note": "19", + "note": "15", "powered": "false" } }, @@ -123048,7 +134645,7 @@ "id": 1019, "properties": { "instrument": "iron_xylophone", - "note": "20", + "note": "16", "powered": "true" } }, @@ -123056,7 +134653,7 @@ "id": 1020, "properties": { "instrument": "iron_xylophone", - "note": "20", + "note": "16", "powered": "false" } }, @@ -123064,7 +134661,7 @@ "id": 1021, "properties": { "instrument": "iron_xylophone", - "note": "21", + "note": "17", "powered": "true" } }, @@ -123072,7 +134669,7 @@ "id": 1022, "properties": { "instrument": "iron_xylophone", - "note": "21", + "note": "17", "powered": "false" } }, @@ -123080,7 +134677,7 @@ "id": 1023, "properties": { "instrument": "iron_xylophone", - "note": "22", + "note": "18", "powered": "true" } }, @@ -123088,7 +134685,7 @@ "id": 1024, "properties": { "instrument": "iron_xylophone", - "note": "22", + "note": "18", "powered": "false" } }, @@ -123096,7 +134693,7 @@ "id": 1025, "properties": { "instrument": "iron_xylophone", - "note": "23", + "note": "19", "powered": "true" } }, @@ -123104,7 +134701,7 @@ "id": 1026, "properties": { "instrument": "iron_xylophone", - "note": "23", + "note": "19", "powered": "false" } }, @@ -123112,7 +134709,7 @@ "id": 1027, "properties": { "instrument": "iron_xylophone", - "note": "24", + "note": "20", "powered": "true" } }, @@ -123120,71 +134717,71 @@ "id": 1028, "properties": { "instrument": "iron_xylophone", - "note": "24", + "note": "20", "powered": "false" } }, { "id": 1029, "properties": { - "instrument": "cow_bell", - "note": "0", + "instrument": "iron_xylophone", + "note": "21", "powered": "true" } }, { "id": 1030, "properties": { - "instrument": "cow_bell", - "note": "0", + "instrument": "iron_xylophone", + "note": "21", "powered": "false" } }, { "id": 1031, "properties": { - "instrument": "cow_bell", - "note": "1", + "instrument": "iron_xylophone", + "note": "22", "powered": "true" } }, { "id": 1032, "properties": { - "instrument": "cow_bell", - "note": "1", + "instrument": "iron_xylophone", + "note": "22", "powered": "false" } }, { "id": 1033, "properties": { - "instrument": "cow_bell", - "note": "2", + "instrument": "iron_xylophone", + "note": "23", "powered": "true" } }, { "id": 1034, "properties": { - "instrument": "cow_bell", - "note": "2", + "instrument": "iron_xylophone", + "note": "23", "powered": "false" } }, { "id": 1035, "properties": { - "instrument": "cow_bell", - "note": "3", + "instrument": "iron_xylophone", + "note": "24", "powered": "true" } }, { "id": 1036, "properties": { - "instrument": "cow_bell", - "note": "3", + "instrument": "iron_xylophone", + "note": "24", "powered": "false" } }, @@ -123192,7 +134789,7 @@ "id": 1037, "properties": { "instrument": "cow_bell", - "note": "4", + "note": "0", "powered": "true" } }, @@ -123200,7 +134797,7 @@ "id": 1038, "properties": { "instrument": "cow_bell", - "note": "4", + "note": "0", "powered": "false" } }, @@ -123208,7 +134805,7 @@ "id": 1039, "properties": { "instrument": "cow_bell", - "note": "5", + "note": "1", "powered": "true" } }, @@ -123216,7 +134813,7 @@ "id": 1040, "properties": { "instrument": "cow_bell", - "note": "5", + "note": "1", "powered": "false" } }, @@ -123224,7 +134821,7 @@ "id": 1041, "properties": { "instrument": "cow_bell", - "note": "6", + "note": "2", "powered": "true" } }, @@ -123232,7 +134829,7 @@ "id": 1042, "properties": { "instrument": "cow_bell", - "note": "6", + "note": "2", "powered": "false" } }, @@ -123240,7 +134837,7 @@ "id": 1043, "properties": { "instrument": "cow_bell", - "note": "7", + "note": "3", "powered": "true" } }, @@ -123248,7 +134845,7 @@ "id": 1044, "properties": { "instrument": "cow_bell", - "note": "7", + "note": "3", "powered": "false" } }, @@ -123256,7 +134853,7 @@ "id": 1045, "properties": { "instrument": "cow_bell", - "note": "8", + "note": "4", "powered": "true" } }, @@ -123264,7 +134861,7 @@ "id": 1046, "properties": { "instrument": "cow_bell", - "note": "8", + "note": "4", "powered": "false" } }, @@ -123272,7 +134869,7 @@ "id": 1047, "properties": { "instrument": "cow_bell", - "note": "9", + "note": "5", "powered": "true" } }, @@ -123280,7 +134877,7 @@ "id": 1048, "properties": { "instrument": "cow_bell", - "note": "9", + "note": "5", "powered": "false" } }, @@ -123288,7 +134885,7 @@ "id": 1049, "properties": { "instrument": "cow_bell", - "note": "10", + "note": "6", "powered": "true" } }, @@ -123296,7 +134893,7 @@ "id": 1050, "properties": { "instrument": "cow_bell", - "note": "10", + "note": "6", "powered": "false" } }, @@ -123304,7 +134901,7 @@ "id": 1051, "properties": { "instrument": "cow_bell", - "note": "11", + "note": "7", "powered": "true" } }, @@ -123312,7 +134909,7 @@ "id": 1052, "properties": { "instrument": "cow_bell", - "note": "11", + "note": "7", "powered": "false" } }, @@ -123320,7 +134917,7 @@ "id": 1053, "properties": { "instrument": "cow_bell", - "note": "12", + "note": "8", "powered": "true" } }, @@ -123328,7 +134925,7 @@ "id": 1054, "properties": { "instrument": "cow_bell", - "note": "12", + "note": "8", "powered": "false" } }, @@ -123336,7 +134933,7 @@ "id": 1055, "properties": { "instrument": "cow_bell", - "note": "13", + "note": "9", "powered": "true" } }, @@ -123344,7 +134941,7 @@ "id": 1056, "properties": { "instrument": "cow_bell", - "note": "13", + "note": "9", "powered": "false" } }, @@ -123352,7 +134949,7 @@ "id": 1057, "properties": { "instrument": "cow_bell", - "note": "14", + "note": "10", "powered": "true" } }, @@ -123360,7 +134957,7 @@ "id": 1058, "properties": { "instrument": "cow_bell", - "note": "14", + "note": "10", "powered": "false" } }, @@ -123368,7 +134965,7 @@ "id": 1059, "properties": { "instrument": "cow_bell", - "note": "15", + "note": "11", "powered": "true" } }, @@ -123376,7 +134973,7 @@ "id": 1060, "properties": { "instrument": "cow_bell", - "note": "15", + "note": "11", "powered": "false" } }, @@ -123384,7 +134981,7 @@ "id": 1061, "properties": { "instrument": "cow_bell", - "note": "16", + "note": "12", "powered": "true" } }, @@ -123392,7 +134989,7 @@ "id": 1062, "properties": { "instrument": "cow_bell", - "note": "16", + "note": "12", "powered": "false" } }, @@ -123400,7 +134997,7 @@ "id": 1063, "properties": { "instrument": "cow_bell", - "note": "17", + "note": "13", "powered": "true" } }, @@ -123408,7 +135005,7 @@ "id": 1064, "properties": { "instrument": "cow_bell", - "note": "17", + "note": "13", "powered": "false" } }, @@ -123416,7 +135013,7 @@ "id": 1065, "properties": { "instrument": "cow_bell", - "note": "18", + "note": "14", "powered": "true" } }, @@ -123424,7 +135021,7 @@ "id": 1066, "properties": { "instrument": "cow_bell", - "note": "18", + "note": "14", "powered": "false" } }, @@ -123432,7 +135029,7 @@ "id": 1067, "properties": { "instrument": "cow_bell", - "note": "19", + "note": "15", "powered": "true" } }, @@ -123440,7 +135037,7 @@ "id": 1068, "properties": { "instrument": "cow_bell", - "note": "19", + "note": "15", "powered": "false" } }, @@ -123448,7 +135045,7 @@ "id": 1069, "properties": { "instrument": "cow_bell", - "note": "20", + "note": "16", "powered": "true" } }, @@ -123456,7 +135053,7 @@ "id": 1070, "properties": { "instrument": "cow_bell", - "note": "20", + "note": "16", "powered": "false" } }, @@ -123464,7 +135061,7 @@ "id": 1071, "properties": { "instrument": "cow_bell", - "note": "21", + "note": "17", "powered": "true" } }, @@ -123472,7 +135069,7 @@ "id": 1072, "properties": { "instrument": "cow_bell", - "note": "21", + "note": "17", "powered": "false" } }, @@ -123480,7 +135077,7 @@ "id": 1073, "properties": { "instrument": "cow_bell", - "note": "22", + "note": "18", "powered": "true" } }, @@ -123488,7 +135085,7 @@ "id": 1074, "properties": { "instrument": "cow_bell", - "note": "22", + "note": "18", "powered": "false" } }, @@ -123496,7 +135093,7 @@ "id": 1075, "properties": { "instrument": "cow_bell", - "note": "23", + "note": "19", "powered": "true" } }, @@ -123504,7 +135101,7 @@ "id": 1076, "properties": { "instrument": "cow_bell", - "note": "23", + "note": "19", "powered": "false" } }, @@ -123512,7 +135109,7 @@ "id": 1077, "properties": { "instrument": "cow_bell", - "note": "24", + "note": "20", "powered": "true" } }, @@ -123520,71 +135117,71 @@ "id": 1078, "properties": { "instrument": "cow_bell", - "note": "24", + "note": "20", "powered": "false" } }, { "id": 1079, "properties": { - "instrument": "didgeridoo", - "note": "0", + "instrument": "cow_bell", + "note": "21", "powered": "true" } }, { "id": 1080, "properties": { - "instrument": "didgeridoo", - "note": "0", + "instrument": "cow_bell", + "note": "21", "powered": "false" } }, { "id": 1081, "properties": { - "instrument": "didgeridoo", - "note": "1", + "instrument": "cow_bell", + "note": "22", "powered": "true" } }, { "id": 1082, "properties": { - "instrument": "didgeridoo", - "note": "1", + "instrument": "cow_bell", + "note": "22", "powered": "false" } }, { "id": 1083, "properties": { - "instrument": "didgeridoo", - "note": "2", + "instrument": "cow_bell", + "note": "23", "powered": "true" } }, { "id": 1084, "properties": { - "instrument": "didgeridoo", - "note": "2", + "instrument": "cow_bell", + "note": "23", "powered": "false" } }, { "id": 1085, "properties": { - "instrument": "didgeridoo", - "note": "3", + "instrument": "cow_bell", + "note": "24", "powered": "true" } }, { "id": 1086, "properties": { - "instrument": "didgeridoo", - "note": "3", + "instrument": "cow_bell", + "note": "24", "powered": "false" } }, @@ -123592,7 +135189,7 @@ "id": 1087, "properties": { "instrument": "didgeridoo", - "note": "4", + "note": "0", "powered": "true" } }, @@ -123600,7 +135197,7 @@ "id": 1088, "properties": { "instrument": "didgeridoo", - "note": "4", + "note": "0", "powered": "false" } }, @@ -123608,7 +135205,7 @@ "id": 1089, "properties": { "instrument": "didgeridoo", - "note": "5", + "note": "1", "powered": "true" } }, @@ -123616,7 +135213,7 @@ "id": 1090, "properties": { "instrument": "didgeridoo", - "note": "5", + "note": "1", "powered": "false" } }, @@ -123624,7 +135221,7 @@ "id": 1091, "properties": { "instrument": "didgeridoo", - "note": "6", + "note": "2", "powered": "true" } }, @@ -123632,7 +135229,7 @@ "id": 1092, "properties": { "instrument": "didgeridoo", - "note": "6", + "note": "2", "powered": "false" } }, @@ -123640,7 +135237,7 @@ "id": 1093, "properties": { "instrument": "didgeridoo", - "note": "7", + "note": "3", "powered": "true" } }, @@ -123648,7 +135245,7 @@ "id": 1094, "properties": { "instrument": "didgeridoo", - "note": "7", + "note": "3", "powered": "false" } }, @@ -123656,7 +135253,7 @@ "id": 1095, "properties": { "instrument": "didgeridoo", - "note": "8", + "note": "4", "powered": "true" } }, @@ -123664,7 +135261,7 @@ "id": 1096, "properties": { "instrument": "didgeridoo", - "note": "8", + "note": "4", "powered": "false" } }, @@ -123672,7 +135269,7 @@ "id": 1097, "properties": { "instrument": "didgeridoo", - "note": "9", + "note": "5", "powered": "true" } }, @@ -123680,7 +135277,7 @@ "id": 1098, "properties": { "instrument": "didgeridoo", - "note": "9", + "note": "5", "powered": "false" } }, @@ -123688,7 +135285,7 @@ "id": 1099, "properties": { "instrument": "didgeridoo", - "note": "10", + "note": "6", "powered": "true" } }, @@ -123696,7 +135293,7 @@ "id": 1100, "properties": { "instrument": "didgeridoo", - "note": "10", + "note": "6", "powered": "false" } }, @@ -123704,7 +135301,7 @@ "id": 1101, "properties": { "instrument": "didgeridoo", - "note": "11", + "note": "7", "powered": "true" } }, @@ -123712,7 +135309,7 @@ "id": 1102, "properties": { "instrument": "didgeridoo", - "note": "11", + "note": "7", "powered": "false" } }, @@ -123720,7 +135317,7 @@ "id": 1103, "properties": { "instrument": "didgeridoo", - "note": "12", + "note": "8", "powered": "true" } }, @@ -123728,7 +135325,7 @@ "id": 1104, "properties": { "instrument": "didgeridoo", - "note": "12", + "note": "8", "powered": "false" } }, @@ -123736,7 +135333,7 @@ "id": 1105, "properties": { "instrument": "didgeridoo", - "note": "13", + "note": "9", "powered": "true" } }, @@ -123744,7 +135341,7 @@ "id": 1106, "properties": { "instrument": "didgeridoo", - "note": "13", + "note": "9", "powered": "false" } }, @@ -123752,7 +135349,7 @@ "id": 1107, "properties": { "instrument": "didgeridoo", - "note": "14", + "note": "10", "powered": "true" } }, @@ -123760,7 +135357,7 @@ "id": 1108, "properties": { "instrument": "didgeridoo", - "note": "14", + "note": "10", "powered": "false" } }, @@ -123768,7 +135365,7 @@ "id": 1109, "properties": { "instrument": "didgeridoo", - "note": "15", + "note": "11", "powered": "true" } }, @@ -123776,7 +135373,7 @@ "id": 1110, "properties": { "instrument": "didgeridoo", - "note": "15", + "note": "11", "powered": "false" } }, @@ -123784,7 +135381,7 @@ "id": 1111, "properties": { "instrument": "didgeridoo", - "note": "16", + "note": "12", "powered": "true" } }, @@ -123792,7 +135389,7 @@ "id": 1112, "properties": { "instrument": "didgeridoo", - "note": "16", + "note": "12", "powered": "false" } }, @@ -123800,7 +135397,7 @@ "id": 1113, "properties": { "instrument": "didgeridoo", - "note": "17", + "note": "13", "powered": "true" } }, @@ -123808,7 +135405,7 @@ "id": 1114, "properties": { "instrument": "didgeridoo", - "note": "17", + "note": "13", "powered": "false" } }, @@ -123816,7 +135413,7 @@ "id": 1115, "properties": { "instrument": "didgeridoo", - "note": "18", + "note": "14", "powered": "true" } }, @@ -123824,7 +135421,7 @@ "id": 1116, "properties": { "instrument": "didgeridoo", - "note": "18", + "note": "14", "powered": "false" } }, @@ -123832,7 +135429,7 @@ "id": 1117, "properties": { "instrument": "didgeridoo", - "note": "19", + "note": "15", "powered": "true" } }, @@ -123840,7 +135437,7 @@ "id": 1118, "properties": { "instrument": "didgeridoo", - "note": "19", + "note": "15", "powered": "false" } }, @@ -123848,7 +135445,7 @@ "id": 1119, "properties": { "instrument": "didgeridoo", - "note": "20", + "note": "16", "powered": "true" } }, @@ -123856,7 +135453,7 @@ "id": 1120, "properties": { "instrument": "didgeridoo", - "note": "20", + "note": "16", "powered": "false" } }, @@ -123864,7 +135461,7 @@ "id": 1121, "properties": { "instrument": "didgeridoo", - "note": "21", + "note": "17", "powered": "true" } }, @@ -123872,7 +135469,7 @@ "id": 1122, "properties": { "instrument": "didgeridoo", - "note": "21", + "note": "17", "powered": "false" } }, @@ -123880,7 +135477,7 @@ "id": 1123, "properties": { "instrument": "didgeridoo", - "note": "22", + "note": "18", "powered": "true" } }, @@ -123888,7 +135485,7 @@ "id": 1124, "properties": { "instrument": "didgeridoo", - "note": "22", + "note": "18", "powered": "false" } }, @@ -123896,7 +135493,7 @@ "id": 1125, "properties": { "instrument": "didgeridoo", - "note": "23", + "note": "19", "powered": "true" } }, @@ -123904,7 +135501,7 @@ "id": 1126, "properties": { "instrument": "didgeridoo", - "note": "23", + "note": "19", "powered": "false" } }, @@ -123912,7 +135509,7 @@ "id": 1127, "properties": { "instrument": "didgeridoo", - "note": "24", + "note": "20", "powered": "true" } }, @@ -123920,71 +135517,71 @@ "id": 1128, "properties": { "instrument": "didgeridoo", - "note": "24", + "note": "20", "powered": "false" } }, { "id": 1129, "properties": { - "instrument": "bit", - "note": "0", + "instrument": "didgeridoo", + "note": "21", "powered": "true" } }, { "id": 1130, "properties": { - "instrument": "bit", - "note": "0", + "instrument": "didgeridoo", + "note": "21", "powered": "false" } }, { "id": 1131, "properties": { - "instrument": "bit", - "note": "1", + "instrument": "didgeridoo", + "note": "22", "powered": "true" } }, { "id": 1132, "properties": { - "instrument": "bit", - "note": "1", + "instrument": "didgeridoo", + "note": "22", "powered": "false" } }, { "id": 1133, "properties": { - "instrument": "bit", - "note": "2", + "instrument": "didgeridoo", + "note": "23", "powered": "true" } }, { "id": 1134, "properties": { - "instrument": "bit", - "note": "2", + "instrument": "didgeridoo", + "note": "23", "powered": "false" } }, { "id": 1135, "properties": { - "instrument": "bit", - "note": "3", + "instrument": "didgeridoo", + "note": "24", "powered": "true" } }, { "id": 1136, "properties": { - "instrument": "bit", - "note": "3", + "instrument": "didgeridoo", + "note": "24", "powered": "false" } }, @@ -123992,7 +135589,7 @@ "id": 1137, "properties": { "instrument": "bit", - "note": "4", + "note": "0", "powered": "true" } }, @@ -124000,7 +135597,7 @@ "id": 1138, "properties": { "instrument": "bit", - "note": "4", + "note": "0", "powered": "false" } }, @@ -124008,7 +135605,7 @@ "id": 1139, "properties": { "instrument": "bit", - "note": "5", + "note": "1", "powered": "true" } }, @@ -124016,7 +135613,7 @@ "id": 1140, "properties": { "instrument": "bit", - "note": "5", + "note": "1", "powered": "false" } }, @@ -124024,7 +135621,7 @@ "id": 1141, "properties": { "instrument": "bit", - "note": "6", + "note": "2", "powered": "true" } }, @@ -124032,7 +135629,7 @@ "id": 1142, "properties": { "instrument": "bit", - "note": "6", + "note": "2", "powered": "false" } }, @@ -124040,7 +135637,7 @@ "id": 1143, "properties": { "instrument": "bit", - "note": "7", + "note": "3", "powered": "true" } }, @@ -124048,7 +135645,7 @@ "id": 1144, "properties": { "instrument": "bit", - "note": "7", + "note": "3", "powered": "false" } }, @@ -124056,7 +135653,7 @@ "id": 1145, "properties": { "instrument": "bit", - "note": "8", + "note": "4", "powered": "true" } }, @@ -124064,7 +135661,7 @@ "id": 1146, "properties": { "instrument": "bit", - "note": "8", + "note": "4", "powered": "false" } }, @@ -124072,7 +135669,7 @@ "id": 1147, "properties": { "instrument": "bit", - "note": "9", + "note": "5", "powered": "true" } }, @@ -124080,7 +135677,7 @@ "id": 1148, "properties": { "instrument": "bit", - "note": "9", + "note": "5", "powered": "false" } }, @@ -124088,7 +135685,7 @@ "id": 1149, "properties": { "instrument": "bit", - "note": "10", + "note": "6", "powered": "true" } }, @@ -124096,7 +135693,7 @@ "id": 1150, "properties": { "instrument": "bit", - "note": "10", + "note": "6", "powered": "false" } }, @@ -124104,7 +135701,7 @@ "id": 1151, "properties": { "instrument": "bit", - "note": "11", + "note": "7", "powered": "true" } }, @@ -124112,7 +135709,7 @@ "id": 1152, "properties": { "instrument": "bit", - "note": "11", + "note": "7", "powered": "false" } }, @@ -124120,7 +135717,7 @@ "id": 1153, "properties": { "instrument": "bit", - "note": "12", + "note": "8", "powered": "true" } }, @@ -124128,7 +135725,7 @@ "id": 1154, "properties": { "instrument": "bit", - "note": "12", + "note": "8", "powered": "false" } }, @@ -124136,7 +135733,7 @@ "id": 1155, "properties": { "instrument": "bit", - "note": "13", + "note": "9", "powered": "true" } }, @@ -124144,7 +135741,7 @@ "id": 1156, "properties": { "instrument": "bit", - "note": "13", + "note": "9", "powered": "false" } }, @@ -124152,7 +135749,7 @@ "id": 1157, "properties": { "instrument": "bit", - "note": "14", + "note": "10", "powered": "true" } }, @@ -124160,7 +135757,7 @@ "id": 1158, "properties": { "instrument": "bit", - "note": "14", + "note": "10", "powered": "false" } }, @@ -124168,7 +135765,7 @@ "id": 1159, "properties": { "instrument": "bit", - "note": "15", + "note": "11", "powered": "true" } }, @@ -124176,7 +135773,7 @@ "id": 1160, "properties": { "instrument": "bit", - "note": "15", + "note": "11", "powered": "false" } }, @@ -124184,7 +135781,7 @@ "id": 1161, "properties": { "instrument": "bit", - "note": "16", + "note": "12", "powered": "true" } }, @@ -124192,7 +135789,7 @@ "id": 1162, "properties": { "instrument": "bit", - "note": "16", + "note": "12", "powered": "false" } }, @@ -124200,7 +135797,7 @@ "id": 1163, "properties": { "instrument": "bit", - "note": "17", + "note": "13", "powered": "true" } }, @@ -124208,7 +135805,7 @@ "id": 1164, "properties": { "instrument": "bit", - "note": "17", + "note": "13", "powered": "false" } }, @@ -124216,7 +135813,7 @@ "id": 1165, "properties": { "instrument": "bit", - "note": "18", + "note": "14", "powered": "true" } }, @@ -124224,7 +135821,7 @@ "id": 1166, "properties": { "instrument": "bit", - "note": "18", + "note": "14", "powered": "false" } }, @@ -124232,7 +135829,7 @@ "id": 1167, "properties": { "instrument": "bit", - "note": "19", + "note": "15", "powered": "true" } }, @@ -124240,7 +135837,7 @@ "id": 1168, "properties": { "instrument": "bit", - "note": "19", + "note": "15", "powered": "false" } }, @@ -124248,7 +135845,7 @@ "id": 1169, "properties": { "instrument": "bit", - "note": "20", + "note": "16", "powered": "true" } }, @@ -124256,7 +135853,7 @@ "id": 1170, "properties": { "instrument": "bit", - "note": "20", + "note": "16", "powered": "false" } }, @@ -124264,7 +135861,7 @@ "id": 1171, "properties": { "instrument": "bit", - "note": "21", + "note": "17", "powered": "true" } }, @@ -124272,7 +135869,7 @@ "id": 1172, "properties": { "instrument": "bit", - "note": "21", + "note": "17", "powered": "false" } }, @@ -124280,7 +135877,7 @@ "id": 1173, "properties": { "instrument": "bit", - "note": "22", + "note": "18", "powered": "true" } }, @@ -124288,7 +135885,7 @@ "id": 1174, "properties": { "instrument": "bit", - "note": "22", + "note": "18", "powered": "false" } }, @@ -124296,7 +135893,7 @@ "id": 1175, "properties": { "instrument": "bit", - "note": "23", + "note": "19", "powered": "true" } }, @@ -124304,7 +135901,7 @@ "id": 1176, "properties": { "instrument": "bit", - "note": "23", + "note": "19", "powered": "false" } }, @@ -124312,7 +135909,7 @@ "id": 1177, "properties": { "instrument": "bit", - "note": "24", + "note": "20", "powered": "true" } }, @@ -124320,71 +135917,71 @@ "id": 1178, "properties": { "instrument": "bit", - "note": "24", + "note": "20", "powered": "false" } }, { "id": 1179, "properties": { - "instrument": "banjo", - "note": "0", + "instrument": "bit", + "note": "21", "powered": "true" } }, { "id": 1180, "properties": { - "instrument": "banjo", - "note": "0", + "instrument": "bit", + "note": "21", "powered": "false" } }, { "id": 1181, "properties": { - "instrument": "banjo", - "note": "1", + "instrument": "bit", + "note": "22", "powered": "true" } }, { "id": 1182, "properties": { - "instrument": "banjo", - "note": "1", + "instrument": "bit", + "note": "22", "powered": "false" } }, { "id": 1183, "properties": { - "instrument": "banjo", - "note": "2", + "instrument": "bit", + "note": "23", "powered": "true" } }, { "id": 1184, "properties": { - "instrument": "banjo", - "note": "2", + "instrument": "bit", + "note": "23", "powered": "false" } }, { "id": 1185, "properties": { - "instrument": "banjo", - "note": "3", + "instrument": "bit", + "note": "24", "powered": "true" } }, { "id": 1186, "properties": { - "instrument": "banjo", - "note": "3", + "instrument": "bit", + "note": "24", "powered": "false" } }, @@ -124392,7 +135989,7 @@ "id": 1187, "properties": { "instrument": "banjo", - "note": "4", + "note": "0", "powered": "true" } }, @@ -124400,7 +135997,7 @@ "id": 1188, "properties": { "instrument": "banjo", - "note": "4", + "note": "0", "powered": "false" } }, @@ -124408,7 +136005,7 @@ "id": 1189, "properties": { "instrument": "banjo", - "note": "5", + "note": "1", "powered": "true" } }, @@ -124416,7 +136013,7 @@ "id": 1190, "properties": { "instrument": "banjo", - "note": "5", + "note": "1", "powered": "false" } }, @@ -124424,7 +136021,7 @@ "id": 1191, "properties": { "instrument": "banjo", - "note": "6", + "note": "2", "powered": "true" } }, @@ -124432,7 +136029,7 @@ "id": 1192, "properties": { "instrument": "banjo", - "note": "6", + "note": "2", "powered": "false" } }, @@ -124440,7 +136037,7 @@ "id": 1193, "properties": { "instrument": "banjo", - "note": "7", + "note": "3", "powered": "true" } }, @@ -124448,7 +136045,7 @@ "id": 1194, "properties": { "instrument": "banjo", - "note": "7", + "note": "3", "powered": "false" } }, @@ -124456,7 +136053,7 @@ "id": 1195, "properties": { "instrument": "banjo", - "note": "8", + "note": "4", "powered": "true" } }, @@ -124464,7 +136061,7 @@ "id": 1196, "properties": { "instrument": "banjo", - "note": "8", + "note": "4", "powered": "false" } }, @@ -124472,7 +136069,7 @@ "id": 1197, "properties": { "instrument": "banjo", - "note": "9", + "note": "5", "powered": "true" } }, @@ -124480,7 +136077,7 @@ "id": 1198, "properties": { "instrument": "banjo", - "note": "9", + "note": "5", "powered": "false" } }, @@ -124488,7 +136085,7 @@ "id": 1199, "properties": { "instrument": "banjo", - "note": "10", + "note": "6", "powered": "true" } }, @@ -124496,7 +136093,7 @@ "id": 1200, "properties": { "instrument": "banjo", - "note": "10", + "note": "6", "powered": "false" } }, @@ -124504,7 +136101,7 @@ "id": 1201, "properties": { "instrument": "banjo", - "note": "11", + "note": "7", "powered": "true" } }, @@ -124512,7 +136109,7 @@ "id": 1202, "properties": { "instrument": "banjo", - "note": "11", + "note": "7", "powered": "false" } }, @@ -124520,7 +136117,7 @@ "id": 1203, "properties": { "instrument": "banjo", - "note": "12", + "note": "8", "powered": "true" } }, @@ -124528,7 +136125,7 @@ "id": 1204, "properties": { "instrument": "banjo", - "note": "12", + "note": "8", "powered": "false" } }, @@ -124536,7 +136133,7 @@ "id": 1205, "properties": { "instrument": "banjo", - "note": "13", + "note": "9", "powered": "true" } }, @@ -124544,7 +136141,7 @@ "id": 1206, "properties": { "instrument": "banjo", - "note": "13", + "note": "9", "powered": "false" } }, @@ -124552,7 +136149,7 @@ "id": 1207, "properties": { "instrument": "banjo", - "note": "14", + "note": "10", "powered": "true" } }, @@ -124560,7 +136157,7 @@ "id": 1208, "properties": { "instrument": "banjo", - "note": "14", + "note": "10", "powered": "false" } }, @@ -124568,7 +136165,7 @@ "id": 1209, "properties": { "instrument": "banjo", - "note": "15", + "note": "11", "powered": "true" } }, @@ -124576,7 +136173,7 @@ "id": 1210, "properties": { "instrument": "banjo", - "note": "15", + "note": "11", "powered": "false" } }, @@ -124584,7 +136181,7 @@ "id": 1211, "properties": { "instrument": "banjo", - "note": "16", + "note": "12", "powered": "true" } }, @@ -124592,7 +136189,7 @@ "id": 1212, "properties": { "instrument": "banjo", - "note": "16", + "note": "12", "powered": "false" } }, @@ -124600,7 +136197,7 @@ "id": 1213, "properties": { "instrument": "banjo", - "note": "17", + "note": "13", "powered": "true" } }, @@ -124608,7 +136205,7 @@ "id": 1214, "properties": { "instrument": "banjo", - "note": "17", + "note": "13", "powered": "false" } }, @@ -124616,7 +136213,7 @@ "id": 1215, "properties": { "instrument": "banjo", - "note": "18", + "note": "14", "powered": "true" } }, @@ -124624,7 +136221,7 @@ "id": 1216, "properties": { "instrument": "banjo", - "note": "18", + "note": "14", "powered": "false" } }, @@ -124632,7 +136229,7 @@ "id": 1217, "properties": { "instrument": "banjo", - "note": "19", + "note": "15", "powered": "true" } }, @@ -124640,7 +136237,7 @@ "id": 1218, "properties": { "instrument": "banjo", - "note": "19", + "note": "15", "powered": "false" } }, @@ -124648,7 +136245,7 @@ "id": 1219, "properties": { "instrument": "banjo", - "note": "20", + "note": "16", "powered": "true" } }, @@ -124656,7 +136253,7 @@ "id": 1220, "properties": { "instrument": "banjo", - "note": "20", + "note": "16", "powered": "false" } }, @@ -124664,7 +136261,7 @@ "id": 1221, "properties": { "instrument": "banjo", - "note": "21", + "note": "17", "powered": "true" } }, @@ -124672,7 +136269,7 @@ "id": 1222, "properties": { "instrument": "banjo", - "note": "21", + "note": "17", "powered": "false" } }, @@ -124680,7 +136277,7 @@ "id": 1223, "properties": { "instrument": "banjo", - "note": "22", + "note": "18", "powered": "true" } }, @@ -124688,7 +136285,7 @@ "id": 1224, "properties": { "instrument": "banjo", - "note": "22", + "note": "18", "powered": "false" } }, @@ -124696,7 +136293,7 @@ "id": 1225, "properties": { "instrument": "banjo", - "note": "23", + "note": "19", "powered": "true" } }, @@ -124704,7 +136301,7 @@ "id": 1226, "properties": { "instrument": "banjo", - "note": "23", + "note": "19", "powered": "false" } }, @@ -124712,7 +136309,7 @@ "id": 1227, "properties": { "instrument": "banjo", - "note": "24", + "note": "20", "powered": "true" } }, @@ -124720,71 +136317,71 @@ "id": 1228, "properties": { "instrument": "banjo", - "note": "24", + "note": "20", "powered": "false" } }, { "id": 1229, "properties": { - "instrument": "pling", - "note": "0", + "instrument": "banjo", + "note": "21", "powered": "true" } }, { "id": 1230, "properties": { - "instrument": "pling", - "note": "0", + "instrument": "banjo", + "note": "21", "powered": "false" } }, { "id": 1231, "properties": { - "instrument": "pling", - "note": "1", + "instrument": "banjo", + "note": "22", "powered": "true" } }, { "id": 1232, "properties": { - "instrument": "pling", - "note": "1", + "instrument": "banjo", + "note": "22", "powered": "false" } }, { "id": 1233, "properties": { - "instrument": "pling", - "note": "2", + "instrument": "banjo", + "note": "23", "powered": "true" } }, { "id": 1234, "properties": { - "instrument": "pling", - "note": "2", + "instrument": "banjo", + "note": "23", "powered": "false" } }, { "id": 1235, "properties": { - "instrument": "pling", - "note": "3", + "instrument": "banjo", + "note": "24", "powered": "true" } }, { "id": 1236, "properties": { - "instrument": "pling", - "note": "3", + "instrument": "banjo", + "note": "24", "powered": "false" } }, @@ -124792,7 +136389,7 @@ "id": 1237, "properties": { "instrument": "pling", - "note": "4", + "note": "0", "powered": "true" } }, @@ -124800,7 +136397,7 @@ "id": 1238, "properties": { "instrument": "pling", - "note": "4", + "note": "0", "powered": "false" } }, @@ -124808,7 +136405,7 @@ "id": 1239, "properties": { "instrument": "pling", - "note": "5", + "note": "1", "powered": "true" } }, @@ -124816,7 +136413,7 @@ "id": 1240, "properties": { "instrument": "pling", - "note": "5", + "note": "1", "powered": "false" } }, @@ -124824,7 +136421,7 @@ "id": 1241, "properties": { "instrument": "pling", - "note": "6", + "note": "2", "powered": "true" } }, @@ -124832,7 +136429,7 @@ "id": 1242, "properties": { "instrument": "pling", - "note": "6", + "note": "2", "powered": "false" } }, @@ -124840,7 +136437,7 @@ "id": 1243, "properties": { "instrument": "pling", - "note": "7", + "note": "3", "powered": "true" } }, @@ -124848,7 +136445,7 @@ "id": 1244, "properties": { "instrument": "pling", - "note": "7", + "note": "3", "powered": "false" } }, @@ -124856,7 +136453,7 @@ "id": 1245, "properties": { "instrument": "pling", - "note": "8", + "note": "4", "powered": "true" } }, @@ -124864,7 +136461,7 @@ "id": 1246, "properties": { "instrument": "pling", - "note": "8", + "note": "4", "powered": "false" } }, @@ -124872,7 +136469,7 @@ "id": 1247, "properties": { "instrument": "pling", - "note": "9", + "note": "5", "powered": "true" } }, @@ -124880,7 +136477,7 @@ "id": 1248, "properties": { "instrument": "pling", - "note": "9", + "note": "5", "powered": "false" } }, @@ -124888,7 +136485,7 @@ "id": 1249, "properties": { "instrument": "pling", - "note": "10", + "note": "6", "powered": "true" } }, @@ -124896,7 +136493,7 @@ "id": 1250, "properties": { "instrument": "pling", - "note": "10", + "note": "6", "powered": "false" } }, @@ -124904,7 +136501,7 @@ "id": 1251, "properties": { "instrument": "pling", - "note": "11", + "note": "7", "powered": "true" } }, @@ -124912,7 +136509,7 @@ "id": 1252, "properties": { "instrument": "pling", - "note": "11", + "note": "7", "powered": "false" } }, @@ -124920,7 +136517,7 @@ "id": 1253, "properties": { "instrument": "pling", - "note": "12", + "note": "8", "powered": "true" } }, @@ -124928,7 +136525,7 @@ "id": 1254, "properties": { "instrument": "pling", - "note": "12", + "note": "8", "powered": "false" } }, @@ -124936,7 +136533,7 @@ "id": 1255, "properties": { "instrument": "pling", - "note": "13", + "note": "9", "powered": "true" } }, @@ -124944,7 +136541,7 @@ "id": 1256, "properties": { "instrument": "pling", - "note": "13", + "note": "9", "powered": "false" } }, @@ -124952,7 +136549,7 @@ "id": 1257, "properties": { "instrument": "pling", - "note": "14", + "note": "10", "powered": "true" } }, @@ -124960,7 +136557,7 @@ "id": 1258, "properties": { "instrument": "pling", - "note": "14", + "note": "10", "powered": "false" } }, @@ -124968,7 +136565,7 @@ "id": 1259, "properties": { "instrument": "pling", - "note": "15", + "note": "11", "powered": "true" } }, @@ -124976,7 +136573,7 @@ "id": 1260, "properties": { "instrument": "pling", - "note": "15", + "note": "11", "powered": "false" } }, @@ -124984,7 +136581,7 @@ "id": 1261, "properties": { "instrument": "pling", - "note": "16", + "note": "12", "powered": "true" } }, @@ -124992,7 +136589,7 @@ "id": 1262, "properties": { "instrument": "pling", - "note": "16", + "note": "12", "powered": "false" } }, @@ -125000,7 +136597,7 @@ "id": 1263, "properties": { "instrument": "pling", - "note": "17", + "note": "13", "powered": "true" } }, @@ -125008,7 +136605,7 @@ "id": 1264, "properties": { "instrument": "pling", - "note": "17", + "note": "13", "powered": "false" } }, @@ -125016,7 +136613,7 @@ "id": 1265, "properties": { "instrument": "pling", - "note": "18", + "note": "14", "powered": "true" } }, @@ -125024,7 +136621,7 @@ "id": 1266, "properties": { "instrument": "pling", - "note": "18", + "note": "14", "powered": "false" } }, @@ -125032,7 +136629,7 @@ "id": 1267, "properties": { "instrument": "pling", - "note": "19", + "note": "15", "powered": "true" } }, @@ -125040,7 +136637,7 @@ "id": 1268, "properties": { "instrument": "pling", - "note": "19", + "note": "15", "powered": "false" } }, @@ -125048,7 +136645,7 @@ "id": 1269, "properties": { "instrument": "pling", - "note": "20", + "note": "16", "powered": "true" } }, @@ -125056,7 +136653,7 @@ "id": 1270, "properties": { "instrument": "pling", - "note": "20", + "note": "16", "powered": "false" } }, @@ -125064,7 +136661,7 @@ "id": 1271, "properties": { "instrument": "pling", - "note": "21", + "note": "17", "powered": "true" } }, @@ -125072,7 +136669,7 @@ "id": 1272, "properties": { "instrument": "pling", - "note": "21", + "note": "17", "powered": "false" } }, @@ -125080,7 +136677,7 @@ "id": 1273, "properties": { "instrument": "pling", - "note": "22", + "note": "18", "powered": "true" } }, @@ -125088,7 +136685,7 @@ "id": 1274, "properties": { "instrument": "pling", - "note": "22", + "note": "18", "powered": "false" } }, @@ -125096,7 +136693,7 @@ "id": 1275, "properties": { "instrument": "pling", - "note": "23", + "note": "19", "powered": "true" } }, @@ -125104,7 +136701,7 @@ "id": 1276, "properties": { "instrument": "pling", - "note": "23", + "note": "19", "powered": "false" } }, @@ -125112,7 +136709,7 @@ "id": 1277, "properties": { "instrument": "pling", - "note": "24", + "note": "20", "powered": "true" } }, @@ -125120,6 +136717,2870 @@ "id": 1278, "properties": { "instrument": "pling", + "note": "20", + "powered": "false" + } + }, + { + "id": 1279, + "properties": { + "instrument": "pling", + "note": "21", + "powered": "true" + } + }, + { + "id": 1280, + "properties": { + "instrument": "pling", + "note": "21", + "powered": "false" + } + }, + { + "id": 1281, + "properties": { + "instrument": "pling", + "note": "22", + "powered": "true" + } + }, + { + "id": 1282, + "properties": { + "instrument": "pling", + "note": "22", + "powered": "false" + } + }, + { + "id": 1283, + "properties": { + "instrument": "pling", + "note": "23", + "powered": "true" + } + }, + { + "id": 1284, + "properties": { + "instrument": "pling", + "note": "23", + "powered": "false" + } + }, + { + "id": 1285, + "properties": { + "instrument": "pling", + "note": "24", + "powered": "true" + } + }, + { + "id": 1286, + "properties": { + "instrument": "pling", + "note": "24", + "powered": "false" + } + }, + { + "id": 1287, + "properties": { + "instrument": "zombie", + "note": "0", + "powered": "true" + } + }, + { + "id": 1288, + "properties": { + "instrument": "zombie", + "note": "0", + "powered": "false" + } + }, + { + "id": 1289, + "properties": { + "instrument": "zombie", + "note": "1", + "powered": "true" + } + }, + { + "id": 1290, + "properties": { + "instrument": "zombie", + "note": "1", + "powered": "false" + } + }, + { + "id": 1291, + "properties": { + "instrument": "zombie", + "note": "2", + "powered": "true" + } + }, + { + "id": 1292, + "properties": { + "instrument": "zombie", + "note": "2", + "powered": "false" + } + }, + { + "id": 1293, + "properties": { + "instrument": "zombie", + "note": "3", + "powered": "true" + } + }, + { + "id": 1294, + "properties": { + "instrument": "zombie", + "note": "3", + "powered": "false" + } + }, + { + "id": 1295, + "properties": { + "instrument": "zombie", + "note": "4", + "powered": "true" + } + }, + { + "id": 1296, + "properties": { + "instrument": "zombie", + "note": "4", + "powered": "false" + } + }, + { + "id": 1297, + "properties": { + "instrument": "zombie", + "note": "5", + "powered": "true" + } + }, + { + "id": 1298, + "properties": { + "instrument": "zombie", + "note": "5", + "powered": "false" + } + }, + { + "id": 1299, + "properties": { + "instrument": "zombie", + "note": "6", + "powered": "true" + } + }, + { + "id": 1300, + "properties": { + "instrument": "zombie", + "note": "6", + "powered": "false" + } + }, + { + "id": 1301, + "properties": { + "instrument": "zombie", + "note": "7", + "powered": "true" + } + }, + { + "id": 1302, + "properties": { + "instrument": "zombie", + "note": "7", + "powered": "false" + } + }, + { + "id": 1303, + "properties": { + "instrument": "zombie", + "note": "8", + "powered": "true" + } + }, + { + "id": 1304, + "properties": { + "instrument": "zombie", + "note": "8", + "powered": "false" + } + }, + { + "id": 1305, + "properties": { + "instrument": "zombie", + "note": "9", + "powered": "true" + } + }, + { + "id": 1306, + "properties": { + "instrument": "zombie", + "note": "9", + "powered": "false" + } + }, + { + "id": 1307, + "properties": { + "instrument": "zombie", + "note": "10", + "powered": "true" + } + }, + { + "id": 1308, + "properties": { + "instrument": "zombie", + "note": "10", + "powered": "false" + } + }, + { + "id": 1309, + "properties": { + "instrument": "zombie", + "note": "11", + "powered": "true" + } + }, + { + "id": 1310, + "properties": { + "instrument": "zombie", + "note": "11", + "powered": "false" + } + }, + { + "id": 1311, + "properties": { + "instrument": "zombie", + "note": "12", + "powered": "true" + } + }, + { + "id": 1312, + "properties": { + "instrument": "zombie", + "note": "12", + "powered": "false" + } + }, + { + "id": 1313, + "properties": { + "instrument": "zombie", + "note": "13", + "powered": "true" + } + }, + { + "id": 1314, + "properties": { + "instrument": "zombie", + "note": "13", + "powered": "false" + } + }, + { + "id": 1315, + "properties": { + "instrument": "zombie", + "note": "14", + "powered": "true" + } + }, + { + "id": 1316, + "properties": { + "instrument": "zombie", + "note": "14", + "powered": "false" + } + }, + { + "id": 1317, + "properties": { + "instrument": "zombie", + "note": "15", + "powered": "true" + } + }, + { + "id": 1318, + "properties": { + "instrument": "zombie", + "note": "15", + "powered": "false" + } + }, + { + "id": 1319, + "properties": { + "instrument": "zombie", + "note": "16", + "powered": "true" + } + }, + { + "id": 1320, + "properties": { + "instrument": "zombie", + "note": "16", + "powered": "false" + } + }, + { + "id": 1321, + "properties": { + "instrument": "zombie", + "note": "17", + "powered": "true" + } + }, + { + "id": 1322, + "properties": { + "instrument": "zombie", + "note": "17", + "powered": "false" + } + }, + { + "id": 1323, + "properties": { + "instrument": "zombie", + "note": "18", + "powered": "true" + } + }, + { + "id": 1324, + "properties": { + "instrument": "zombie", + "note": "18", + "powered": "false" + } + }, + { + "id": 1325, + "properties": { + "instrument": "zombie", + "note": "19", + "powered": "true" + } + }, + { + "id": 1326, + "properties": { + "instrument": "zombie", + "note": "19", + "powered": "false" + } + }, + { + "id": 1327, + "properties": { + "instrument": "zombie", + "note": "20", + "powered": "true" + } + }, + { + "id": 1328, + "properties": { + "instrument": "zombie", + "note": "20", + "powered": "false" + } + }, + { + "id": 1329, + "properties": { + "instrument": "zombie", + "note": "21", + "powered": "true" + } + }, + { + "id": 1330, + "properties": { + "instrument": "zombie", + "note": "21", + "powered": "false" + } + }, + { + "id": 1331, + "properties": { + "instrument": "zombie", + "note": "22", + "powered": "true" + } + }, + { + "id": 1332, + "properties": { + "instrument": "zombie", + "note": "22", + "powered": "false" + } + }, + { + "id": 1333, + "properties": { + "instrument": "zombie", + "note": "23", + "powered": "true" + } + }, + { + "id": 1334, + "properties": { + "instrument": "zombie", + "note": "23", + "powered": "false" + } + }, + { + "id": 1335, + "properties": { + "instrument": "zombie", + "note": "24", + "powered": "true" + } + }, + { + "id": 1336, + "properties": { + "instrument": "zombie", + "note": "24", + "powered": "false" + } + }, + { + "id": 1337, + "properties": { + "instrument": "skeleton", + "note": "0", + "powered": "true" + } + }, + { + "id": 1338, + "properties": { + "instrument": "skeleton", + "note": "0", + "powered": "false" + } + }, + { + "id": 1339, + "properties": { + "instrument": "skeleton", + "note": "1", + "powered": "true" + } + }, + { + "id": 1340, + "properties": { + "instrument": "skeleton", + "note": "1", + "powered": "false" + } + }, + { + "id": 1341, + "properties": { + "instrument": "skeleton", + "note": "2", + "powered": "true" + } + }, + { + "id": 1342, + "properties": { + "instrument": "skeleton", + "note": "2", + "powered": "false" + } + }, + { + "id": 1343, + "properties": { + "instrument": "skeleton", + "note": "3", + "powered": "true" + } + }, + { + "id": 1344, + "properties": { + "instrument": "skeleton", + "note": "3", + "powered": "false" + } + }, + { + "id": 1345, + "properties": { + "instrument": "skeleton", + "note": "4", + "powered": "true" + } + }, + { + "id": 1346, + "properties": { + "instrument": "skeleton", + "note": "4", + "powered": "false" + } + }, + { + "id": 1347, + "properties": { + "instrument": "skeleton", + "note": "5", + "powered": "true" + } + }, + { + "id": 1348, + "properties": { + "instrument": "skeleton", + "note": "5", + "powered": "false" + } + }, + { + "id": 1349, + "properties": { + "instrument": "skeleton", + "note": "6", + "powered": "true" + } + }, + { + "id": 1350, + "properties": { + "instrument": "skeleton", + "note": "6", + "powered": "false" + } + }, + { + "id": 1351, + "properties": { + "instrument": "skeleton", + "note": "7", + "powered": "true" + } + }, + { + "id": 1352, + "properties": { + "instrument": "skeleton", + "note": "7", + "powered": "false" + } + }, + { + "id": 1353, + "properties": { + "instrument": "skeleton", + "note": "8", + "powered": "true" + } + }, + { + "id": 1354, + "properties": { + "instrument": "skeleton", + "note": "8", + "powered": "false" + } + }, + { + "id": 1355, + "properties": { + "instrument": "skeleton", + "note": "9", + "powered": "true" + } + }, + { + "id": 1356, + "properties": { + "instrument": "skeleton", + "note": "9", + "powered": "false" + } + }, + { + "id": 1357, + "properties": { + "instrument": "skeleton", + "note": "10", + "powered": "true" + } + }, + { + "id": 1358, + "properties": { + "instrument": "skeleton", + "note": "10", + "powered": "false" + } + }, + { + "id": 1359, + "properties": { + "instrument": "skeleton", + "note": "11", + "powered": "true" + } + }, + { + "id": 1360, + "properties": { + "instrument": "skeleton", + "note": "11", + "powered": "false" + } + }, + { + "id": 1361, + "properties": { + "instrument": "skeleton", + "note": "12", + "powered": "true" + } + }, + { + "id": 1362, + "properties": { + "instrument": "skeleton", + "note": "12", + "powered": "false" + } + }, + { + "id": 1363, + "properties": { + "instrument": "skeleton", + "note": "13", + "powered": "true" + } + }, + { + "id": 1364, + "properties": { + "instrument": "skeleton", + "note": "13", + "powered": "false" + } + }, + { + "id": 1365, + "properties": { + "instrument": "skeleton", + "note": "14", + "powered": "true" + } + }, + { + "id": 1366, + "properties": { + "instrument": "skeleton", + "note": "14", + "powered": "false" + } + }, + { + "id": 1367, + "properties": { + "instrument": "skeleton", + "note": "15", + "powered": "true" + } + }, + { + "id": 1368, + "properties": { + "instrument": "skeleton", + "note": "15", + "powered": "false" + } + }, + { + "id": 1369, + "properties": { + "instrument": "skeleton", + "note": "16", + "powered": "true" + } + }, + { + "id": 1370, + "properties": { + "instrument": "skeleton", + "note": "16", + "powered": "false" + } + }, + { + "id": 1371, + "properties": { + "instrument": "skeleton", + "note": "17", + "powered": "true" + } + }, + { + "id": 1372, + "properties": { + "instrument": "skeleton", + "note": "17", + "powered": "false" + } + }, + { + "id": 1373, + "properties": { + "instrument": "skeleton", + "note": "18", + "powered": "true" + } + }, + { + "id": 1374, + "properties": { + "instrument": "skeleton", + "note": "18", + "powered": "false" + } + }, + { + "id": 1375, + "properties": { + "instrument": "skeleton", + "note": "19", + "powered": "true" + } + }, + { + "id": 1376, + "properties": { + "instrument": "skeleton", + "note": "19", + "powered": "false" + } + }, + { + "id": 1377, + "properties": { + "instrument": "skeleton", + "note": "20", + "powered": "true" + } + }, + { + "id": 1378, + "properties": { + "instrument": "skeleton", + "note": "20", + "powered": "false" + } + }, + { + "id": 1379, + "properties": { + "instrument": "skeleton", + "note": "21", + "powered": "true" + } + }, + { + "id": 1380, + "properties": { + "instrument": "skeleton", + "note": "21", + "powered": "false" + } + }, + { + "id": 1381, + "properties": { + "instrument": "skeleton", + "note": "22", + "powered": "true" + } + }, + { + "id": 1382, + "properties": { + "instrument": "skeleton", + "note": "22", + "powered": "false" + } + }, + { + "id": 1383, + "properties": { + "instrument": "skeleton", + "note": "23", + "powered": "true" + } + }, + { + "id": 1384, + "properties": { + "instrument": "skeleton", + "note": "23", + "powered": "false" + } + }, + { + "id": 1385, + "properties": { + "instrument": "skeleton", + "note": "24", + "powered": "true" + } + }, + { + "id": 1386, + "properties": { + "instrument": "skeleton", + "note": "24", + "powered": "false" + } + }, + { + "id": 1387, + "properties": { + "instrument": "creeper", + "note": "0", + "powered": "true" + } + }, + { + "id": 1388, + "properties": { + "instrument": "creeper", + "note": "0", + "powered": "false" + } + }, + { + "id": 1389, + "properties": { + "instrument": "creeper", + "note": "1", + "powered": "true" + } + }, + { + "id": 1390, + "properties": { + "instrument": "creeper", + "note": "1", + "powered": "false" + } + }, + { + "id": 1391, + "properties": { + "instrument": "creeper", + "note": "2", + "powered": "true" + } + }, + { + "id": 1392, + "properties": { + "instrument": "creeper", + "note": "2", + "powered": "false" + } + }, + { + "id": 1393, + "properties": { + "instrument": "creeper", + "note": "3", + "powered": "true" + } + }, + { + "id": 1394, + "properties": { + "instrument": "creeper", + "note": "3", + "powered": "false" + } + }, + { + "id": 1395, + "properties": { + "instrument": "creeper", + "note": "4", + "powered": "true" + } + }, + { + "id": 1396, + "properties": { + "instrument": "creeper", + "note": "4", + "powered": "false" + } + }, + { + "id": 1397, + "properties": { + "instrument": "creeper", + "note": "5", + "powered": "true" + } + }, + { + "id": 1398, + "properties": { + "instrument": "creeper", + "note": "5", + "powered": "false" + } + }, + { + "id": 1399, + "properties": { + "instrument": "creeper", + "note": "6", + "powered": "true" + } + }, + { + "id": 1400, + "properties": { + "instrument": "creeper", + "note": "6", + "powered": "false" + } + }, + { + "id": 1401, + "properties": { + "instrument": "creeper", + "note": "7", + "powered": "true" + } + }, + { + "id": 1402, + "properties": { + "instrument": "creeper", + "note": "7", + "powered": "false" + } + }, + { + "id": 1403, + "properties": { + "instrument": "creeper", + "note": "8", + "powered": "true" + } + }, + { + "id": 1404, + "properties": { + "instrument": "creeper", + "note": "8", + "powered": "false" + } + }, + { + "id": 1405, + "properties": { + "instrument": "creeper", + "note": "9", + "powered": "true" + } + }, + { + "id": 1406, + "properties": { + "instrument": "creeper", + "note": "9", + "powered": "false" + } + }, + { + "id": 1407, + "properties": { + "instrument": "creeper", + "note": "10", + "powered": "true" + } + }, + { + "id": 1408, + "properties": { + "instrument": "creeper", + "note": "10", + "powered": "false" + } + }, + { + "id": 1409, + "properties": { + "instrument": "creeper", + "note": "11", + "powered": "true" + } + }, + { + "id": 1410, + "properties": { + "instrument": "creeper", + "note": "11", + "powered": "false" + } + }, + { + "id": 1411, + "properties": { + "instrument": "creeper", + "note": "12", + "powered": "true" + } + }, + { + "id": 1412, + "properties": { + "instrument": "creeper", + "note": "12", + "powered": "false" + } + }, + { + "id": 1413, + "properties": { + "instrument": "creeper", + "note": "13", + "powered": "true" + } + }, + { + "id": 1414, + "properties": { + "instrument": "creeper", + "note": "13", + "powered": "false" + } + }, + { + "id": 1415, + "properties": { + "instrument": "creeper", + "note": "14", + "powered": "true" + } + }, + { + "id": 1416, + "properties": { + "instrument": "creeper", + "note": "14", + "powered": "false" + } + }, + { + "id": 1417, + "properties": { + "instrument": "creeper", + "note": "15", + "powered": "true" + } + }, + { + "id": 1418, + "properties": { + "instrument": "creeper", + "note": "15", + "powered": "false" + } + }, + { + "id": 1419, + "properties": { + "instrument": "creeper", + "note": "16", + "powered": "true" + } + }, + { + "id": 1420, + "properties": { + "instrument": "creeper", + "note": "16", + "powered": "false" + } + }, + { + "id": 1421, + "properties": { + "instrument": "creeper", + "note": "17", + "powered": "true" + } + }, + { + "id": 1422, + "properties": { + "instrument": "creeper", + "note": "17", + "powered": "false" + } + }, + { + "id": 1423, + "properties": { + "instrument": "creeper", + "note": "18", + "powered": "true" + } + }, + { + "id": 1424, + "properties": { + "instrument": "creeper", + "note": "18", + "powered": "false" + } + }, + { + "id": 1425, + "properties": { + "instrument": "creeper", + "note": "19", + "powered": "true" + } + }, + { + "id": 1426, + "properties": { + "instrument": "creeper", + "note": "19", + "powered": "false" + } + }, + { + "id": 1427, + "properties": { + "instrument": "creeper", + "note": "20", + "powered": "true" + } + }, + { + "id": 1428, + "properties": { + "instrument": "creeper", + "note": "20", + "powered": "false" + } + }, + { + "id": 1429, + "properties": { + "instrument": "creeper", + "note": "21", + "powered": "true" + } + }, + { + "id": 1430, + "properties": { + "instrument": "creeper", + "note": "21", + "powered": "false" + } + }, + { + "id": 1431, + "properties": { + "instrument": "creeper", + "note": "22", + "powered": "true" + } + }, + { + "id": 1432, + "properties": { + "instrument": "creeper", + "note": "22", + "powered": "false" + } + }, + { + "id": 1433, + "properties": { + "instrument": "creeper", + "note": "23", + "powered": "true" + } + }, + { + "id": 1434, + "properties": { + "instrument": "creeper", + "note": "23", + "powered": "false" + } + }, + { + "id": 1435, + "properties": { + "instrument": "creeper", + "note": "24", + "powered": "true" + } + }, + { + "id": 1436, + "properties": { + "instrument": "creeper", + "note": "24", + "powered": "false" + } + }, + { + "id": 1437, + "properties": { + "instrument": "dragon", + "note": "0", + "powered": "true" + } + }, + { + "id": 1438, + "properties": { + "instrument": "dragon", + "note": "0", + "powered": "false" + } + }, + { + "id": 1439, + "properties": { + "instrument": "dragon", + "note": "1", + "powered": "true" + } + }, + { + "id": 1440, + "properties": { + "instrument": "dragon", + "note": "1", + "powered": "false" + } + }, + { + "id": 1441, + "properties": { + "instrument": "dragon", + "note": "2", + "powered": "true" + } + }, + { + "id": 1442, + "properties": { + "instrument": "dragon", + "note": "2", + "powered": "false" + } + }, + { + "id": 1443, + "properties": { + "instrument": "dragon", + "note": "3", + "powered": "true" + } + }, + { + "id": 1444, + "properties": { + "instrument": "dragon", + "note": "3", + "powered": "false" + } + }, + { + "id": 1445, + "properties": { + "instrument": "dragon", + "note": "4", + "powered": "true" + } + }, + { + "id": 1446, + "properties": { + "instrument": "dragon", + "note": "4", + "powered": "false" + } + }, + { + "id": 1447, + "properties": { + "instrument": "dragon", + "note": "5", + "powered": "true" + } + }, + { + "id": 1448, + "properties": { + "instrument": "dragon", + "note": "5", + "powered": "false" + } + }, + { + "id": 1449, + "properties": { + "instrument": "dragon", + "note": "6", + "powered": "true" + } + }, + { + "id": 1450, + "properties": { + "instrument": "dragon", + "note": "6", + "powered": "false" + } + }, + { + "id": 1451, + "properties": { + "instrument": "dragon", + "note": "7", + "powered": "true" + } + }, + { + "id": 1452, + "properties": { + "instrument": "dragon", + "note": "7", + "powered": "false" + } + }, + { + "id": 1453, + "properties": { + "instrument": "dragon", + "note": "8", + "powered": "true" + } + }, + { + "id": 1454, + "properties": { + "instrument": "dragon", + "note": "8", + "powered": "false" + } + }, + { + "id": 1455, + "properties": { + "instrument": "dragon", + "note": "9", + "powered": "true" + } + }, + { + "id": 1456, + "properties": { + "instrument": "dragon", + "note": "9", + "powered": "false" + } + }, + { + "id": 1457, + "properties": { + "instrument": "dragon", + "note": "10", + "powered": "true" + } + }, + { + "id": 1458, + "properties": { + "instrument": "dragon", + "note": "10", + "powered": "false" + } + }, + { + "id": 1459, + "properties": { + "instrument": "dragon", + "note": "11", + "powered": "true" + } + }, + { + "id": 1460, + "properties": { + "instrument": "dragon", + "note": "11", + "powered": "false" + } + }, + { + "id": 1461, + "properties": { + "instrument": "dragon", + "note": "12", + "powered": "true" + } + }, + { + "id": 1462, + "properties": { + "instrument": "dragon", + "note": "12", + "powered": "false" + } + }, + { + "id": 1463, + "properties": { + "instrument": "dragon", + "note": "13", + "powered": "true" + } + }, + { + "id": 1464, + "properties": { + "instrument": "dragon", + "note": "13", + "powered": "false" + } + }, + { + "id": 1465, + "properties": { + "instrument": "dragon", + "note": "14", + "powered": "true" + } + }, + { + "id": 1466, + "properties": { + "instrument": "dragon", + "note": "14", + "powered": "false" + } + }, + { + "id": 1467, + "properties": { + "instrument": "dragon", + "note": "15", + "powered": "true" + } + }, + { + "id": 1468, + "properties": { + "instrument": "dragon", + "note": "15", + "powered": "false" + } + }, + { + "id": 1469, + "properties": { + "instrument": "dragon", + "note": "16", + "powered": "true" + } + }, + { + "id": 1470, + "properties": { + "instrument": "dragon", + "note": "16", + "powered": "false" + } + }, + { + "id": 1471, + "properties": { + "instrument": "dragon", + "note": "17", + "powered": "true" + } + }, + { + "id": 1472, + "properties": { + "instrument": "dragon", + "note": "17", + "powered": "false" + } + }, + { + "id": 1473, + "properties": { + "instrument": "dragon", + "note": "18", + "powered": "true" + } + }, + { + "id": 1474, + "properties": { + "instrument": "dragon", + "note": "18", + "powered": "false" + } + }, + { + "id": 1475, + "properties": { + "instrument": "dragon", + "note": "19", + "powered": "true" + } + }, + { + "id": 1476, + "properties": { + "instrument": "dragon", + "note": "19", + "powered": "false" + } + }, + { + "id": 1477, + "properties": { + "instrument": "dragon", + "note": "20", + "powered": "true" + } + }, + { + "id": 1478, + "properties": { + "instrument": "dragon", + "note": "20", + "powered": "false" + } + }, + { + "id": 1479, + "properties": { + "instrument": "dragon", + "note": "21", + "powered": "true" + } + }, + { + "id": 1480, + "properties": { + "instrument": "dragon", + "note": "21", + "powered": "false" + } + }, + { + "id": 1481, + "properties": { + "instrument": "dragon", + "note": "22", + "powered": "true" + } + }, + { + "id": 1482, + "properties": { + "instrument": "dragon", + "note": "22", + "powered": "false" + } + }, + { + "id": 1483, + "properties": { + "instrument": "dragon", + "note": "23", + "powered": "true" + } + }, + { + "id": 1484, + "properties": { + "instrument": "dragon", + "note": "23", + "powered": "false" + } + }, + { + "id": 1485, + "properties": { + "instrument": "dragon", + "note": "24", + "powered": "true" + } + }, + { + "id": 1486, + "properties": { + "instrument": "dragon", + "note": "24", + "powered": "false" + } + }, + { + "id": 1487, + "properties": { + "instrument": "wither_skeleton", + "note": "0", + "powered": "true" + } + }, + { + "id": 1488, + "properties": { + "instrument": "wither_skeleton", + "note": "0", + "powered": "false" + } + }, + { + "id": 1489, + "properties": { + "instrument": "wither_skeleton", + "note": "1", + "powered": "true" + } + }, + { + "id": 1490, + "properties": { + "instrument": "wither_skeleton", + "note": "1", + "powered": "false" + } + }, + { + "id": 1491, + "properties": { + "instrument": "wither_skeleton", + "note": "2", + "powered": "true" + } + }, + { + "id": 1492, + "properties": { + "instrument": "wither_skeleton", + "note": "2", + "powered": "false" + } + }, + { + "id": 1493, + "properties": { + "instrument": "wither_skeleton", + "note": "3", + "powered": "true" + } + }, + { + "id": 1494, + "properties": { + "instrument": "wither_skeleton", + "note": "3", + "powered": "false" + } + }, + { + "id": 1495, + "properties": { + "instrument": "wither_skeleton", + "note": "4", + "powered": "true" + } + }, + { + "id": 1496, + "properties": { + "instrument": "wither_skeleton", + "note": "4", + "powered": "false" + } + }, + { + "id": 1497, + "properties": { + "instrument": "wither_skeleton", + "note": "5", + "powered": "true" + } + }, + { + "id": 1498, + "properties": { + "instrument": "wither_skeleton", + "note": "5", + "powered": "false" + } + }, + { + "id": 1499, + "properties": { + "instrument": "wither_skeleton", + "note": "6", + "powered": "true" + } + }, + { + "id": 1500, + "properties": { + "instrument": "wither_skeleton", + "note": "6", + "powered": "false" + } + }, + { + "id": 1501, + "properties": { + "instrument": "wither_skeleton", + "note": "7", + "powered": "true" + } + }, + { + "id": 1502, + "properties": { + "instrument": "wither_skeleton", + "note": "7", + "powered": "false" + } + }, + { + "id": 1503, + "properties": { + "instrument": "wither_skeleton", + "note": "8", + "powered": "true" + } + }, + { + "id": 1504, + "properties": { + "instrument": "wither_skeleton", + "note": "8", + "powered": "false" + } + }, + { + "id": 1505, + "properties": { + "instrument": "wither_skeleton", + "note": "9", + "powered": "true" + } + }, + { + "id": 1506, + "properties": { + "instrument": "wither_skeleton", + "note": "9", + "powered": "false" + } + }, + { + "id": 1507, + "properties": { + "instrument": "wither_skeleton", + "note": "10", + "powered": "true" + } + }, + { + "id": 1508, + "properties": { + "instrument": "wither_skeleton", + "note": "10", + "powered": "false" + } + }, + { + "id": 1509, + "properties": { + "instrument": "wither_skeleton", + "note": "11", + "powered": "true" + } + }, + { + "id": 1510, + "properties": { + "instrument": "wither_skeleton", + "note": "11", + "powered": "false" + } + }, + { + "id": 1511, + "properties": { + "instrument": "wither_skeleton", + "note": "12", + "powered": "true" + } + }, + { + "id": 1512, + "properties": { + "instrument": "wither_skeleton", + "note": "12", + "powered": "false" + } + }, + { + "id": 1513, + "properties": { + "instrument": "wither_skeleton", + "note": "13", + "powered": "true" + } + }, + { + "id": 1514, + "properties": { + "instrument": "wither_skeleton", + "note": "13", + "powered": "false" + } + }, + { + "id": 1515, + "properties": { + "instrument": "wither_skeleton", + "note": "14", + "powered": "true" + } + }, + { + "id": 1516, + "properties": { + "instrument": "wither_skeleton", + "note": "14", + "powered": "false" + } + }, + { + "id": 1517, + "properties": { + "instrument": "wither_skeleton", + "note": "15", + "powered": "true" + } + }, + { + "id": 1518, + "properties": { + "instrument": "wither_skeleton", + "note": "15", + "powered": "false" + } + }, + { + "id": 1519, + "properties": { + "instrument": "wither_skeleton", + "note": "16", + "powered": "true" + } + }, + { + "id": 1520, + "properties": { + "instrument": "wither_skeleton", + "note": "16", + "powered": "false" + } + }, + { + "id": 1521, + "properties": { + "instrument": "wither_skeleton", + "note": "17", + "powered": "true" + } + }, + { + "id": 1522, + "properties": { + "instrument": "wither_skeleton", + "note": "17", + "powered": "false" + } + }, + { + "id": 1523, + "properties": { + "instrument": "wither_skeleton", + "note": "18", + "powered": "true" + } + }, + { + "id": 1524, + "properties": { + "instrument": "wither_skeleton", + "note": "18", + "powered": "false" + } + }, + { + "id": 1525, + "properties": { + "instrument": "wither_skeleton", + "note": "19", + "powered": "true" + } + }, + { + "id": 1526, + "properties": { + "instrument": "wither_skeleton", + "note": "19", + "powered": "false" + } + }, + { + "id": 1527, + "properties": { + "instrument": "wither_skeleton", + "note": "20", + "powered": "true" + } + }, + { + "id": 1528, + "properties": { + "instrument": "wither_skeleton", + "note": "20", + "powered": "false" + } + }, + { + "id": 1529, + "properties": { + "instrument": "wither_skeleton", + "note": "21", + "powered": "true" + } + }, + { + "id": 1530, + "properties": { + "instrument": "wither_skeleton", + "note": "21", + "powered": "false" + } + }, + { + "id": 1531, + "properties": { + "instrument": "wither_skeleton", + "note": "22", + "powered": "true" + } + }, + { + "id": 1532, + "properties": { + "instrument": "wither_skeleton", + "note": "22", + "powered": "false" + } + }, + { + "id": 1533, + "properties": { + "instrument": "wither_skeleton", + "note": "23", + "powered": "true" + } + }, + { + "id": 1534, + "properties": { + "instrument": "wither_skeleton", + "note": "23", + "powered": "false" + } + }, + { + "id": 1535, + "properties": { + "instrument": "wither_skeleton", + "note": "24", + "powered": "true" + } + }, + { + "id": 1536, + "properties": { + "instrument": "wither_skeleton", + "note": "24", + "powered": "false" + } + }, + { + "id": 1537, + "properties": { + "instrument": "piglin", + "note": "0", + "powered": "true" + } + }, + { + "id": 1538, + "properties": { + "instrument": "piglin", + "note": "0", + "powered": "false" + } + }, + { + "id": 1539, + "properties": { + "instrument": "piglin", + "note": "1", + "powered": "true" + } + }, + { + "id": 1540, + "properties": { + "instrument": "piglin", + "note": "1", + "powered": "false" + } + }, + { + "id": 1541, + "properties": { + "instrument": "piglin", + "note": "2", + "powered": "true" + } + }, + { + "id": 1542, + "properties": { + "instrument": "piglin", + "note": "2", + "powered": "false" + } + }, + { + "id": 1543, + "properties": { + "instrument": "piglin", + "note": "3", + "powered": "true" + } + }, + { + "id": 1544, + "properties": { + "instrument": "piglin", + "note": "3", + "powered": "false" + } + }, + { + "id": 1545, + "properties": { + "instrument": "piglin", + "note": "4", + "powered": "true" + } + }, + { + "id": 1546, + "properties": { + "instrument": "piglin", + "note": "4", + "powered": "false" + } + }, + { + "id": 1547, + "properties": { + "instrument": "piglin", + "note": "5", + "powered": "true" + } + }, + { + "id": 1548, + "properties": { + "instrument": "piglin", + "note": "5", + "powered": "false" + } + }, + { + "id": 1549, + "properties": { + "instrument": "piglin", + "note": "6", + "powered": "true" + } + }, + { + "id": 1550, + "properties": { + "instrument": "piglin", + "note": "6", + "powered": "false" + } + }, + { + "id": 1551, + "properties": { + "instrument": "piglin", + "note": "7", + "powered": "true" + } + }, + { + "id": 1552, + "properties": { + "instrument": "piglin", + "note": "7", + "powered": "false" + } + }, + { + "id": 1553, + "properties": { + "instrument": "piglin", + "note": "8", + "powered": "true" + } + }, + { + "id": 1554, + "properties": { + "instrument": "piglin", + "note": "8", + "powered": "false" + } + }, + { + "id": 1555, + "properties": { + "instrument": "piglin", + "note": "9", + "powered": "true" + } + }, + { + "id": 1556, + "properties": { + "instrument": "piglin", + "note": "9", + "powered": "false" + } + }, + { + "id": 1557, + "properties": { + "instrument": "piglin", + "note": "10", + "powered": "true" + } + }, + { + "id": 1558, + "properties": { + "instrument": "piglin", + "note": "10", + "powered": "false" + } + }, + { + "id": 1559, + "properties": { + "instrument": "piglin", + "note": "11", + "powered": "true" + } + }, + { + "id": 1560, + "properties": { + "instrument": "piglin", + "note": "11", + "powered": "false" + } + }, + { + "id": 1561, + "properties": { + "instrument": "piglin", + "note": "12", + "powered": "true" + } + }, + { + "id": 1562, + "properties": { + "instrument": "piglin", + "note": "12", + "powered": "false" + } + }, + { + "id": 1563, + "properties": { + "instrument": "piglin", + "note": "13", + "powered": "true" + } + }, + { + "id": 1564, + "properties": { + "instrument": "piglin", + "note": "13", + "powered": "false" + } + }, + { + "id": 1565, + "properties": { + "instrument": "piglin", + "note": "14", + "powered": "true" + } + }, + { + "id": 1566, + "properties": { + "instrument": "piglin", + "note": "14", + "powered": "false" + } + }, + { + "id": 1567, + "properties": { + "instrument": "piglin", + "note": "15", + "powered": "true" + } + }, + { + "id": 1568, + "properties": { + "instrument": "piglin", + "note": "15", + "powered": "false" + } + }, + { + "id": 1569, + "properties": { + "instrument": "piglin", + "note": "16", + "powered": "true" + } + }, + { + "id": 1570, + "properties": { + "instrument": "piglin", + "note": "16", + "powered": "false" + } + }, + { + "id": 1571, + "properties": { + "instrument": "piglin", + "note": "17", + "powered": "true" + } + }, + { + "id": 1572, + "properties": { + "instrument": "piglin", + "note": "17", + "powered": "false" + } + }, + { + "id": 1573, + "properties": { + "instrument": "piglin", + "note": "18", + "powered": "true" + } + }, + { + "id": 1574, + "properties": { + "instrument": "piglin", + "note": "18", + "powered": "false" + } + }, + { + "id": 1575, + "properties": { + "instrument": "piglin", + "note": "19", + "powered": "true" + } + }, + { + "id": 1576, + "properties": { + "instrument": "piglin", + "note": "19", + "powered": "false" + } + }, + { + "id": 1577, + "properties": { + "instrument": "piglin", + "note": "20", + "powered": "true" + } + }, + { + "id": 1578, + "properties": { + "instrument": "piglin", + "note": "20", + "powered": "false" + } + }, + { + "id": 1579, + "properties": { + "instrument": "piglin", + "note": "21", + "powered": "true" + } + }, + { + "id": 1580, + "properties": { + "instrument": "piglin", + "note": "21", + "powered": "false" + } + }, + { + "id": 1581, + "properties": { + "instrument": "piglin", + "note": "22", + "powered": "true" + } + }, + { + "id": 1582, + "properties": { + "instrument": "piglin", + "note": "22", + "powered": "false" + } + }, + { + "id": 1583, + "properties": { + "instrument": "piglin", + "note": "23", + "powered": "true" + } + }, + { + "id": 1584, + "properties": { + "instrument": "piglin", + "note": "23", + "powered": "false" + } + }, + { + "id": 1585, + "properties": { + "instrument": "piglin", + "note": "24", + "powered": "true" + } + }, + { + "id": 1586, + "properties": { + "instrument": "piglin", + "note": "24", + "powered": "false" + } + }, + { + "id": 1587, + "properties": { + "instrument": "custom_head", + "note": "0", + "powered": "true" + } + }, + { + "id": 1588, + "properties": { + "instrument": "custom_head", + "note": "0", + "powered": "false" + } + }, + { + "id": 1589, + "properties": { + "instrument": "custom_head", + "note": "1", + "powered": "true" + } + }, + { + "id": 1590, + "properties": { + "instrument": "custom_head", + "note": "1", + "powered": "false" + } + }, + { + "id": 1591, + "properties": { + "instrument": "custom_head", + "note": "2", + "powered": "true" + } + }, + { + "id": 1592, + "properties": { + "instrument": "custom_head", + "note": "2", + "powered": "false" + } + }, + { + "id": 1593, + "properties": { + "instrument": "custom_head", + "note": "3", + "powered": "true" + } + }, + { + "id": 1594, + "properties": { + "instrument": "custom_head", + "note": "3", + "powered": "false" + } + }, + { + "id": 1595, + "properties": { + "instrument": "custom_head", + "note": "4", + "powered": "true" + } + }, + { + "id": 1596, + "properties": { + "instrument": "custom_head", + "note": "4", + "powered": "false" + } + }, + { + "id": 1597, + "properties": { + "instrument": "custom_head", + "note": "5", + "powered": "true" + } + }, + { + "id": 1598, + "properties": { + "instrument": "custom_head", + "note": "5", + "powered": "false" + } + }, + { + "id": 1599, + "properties": { + "instrument": "custom_head", + "note": "6", + "powered": "true" + } + }, + { + "id": 1600, + "properties": { + "instrument": "custom_head", + "note": "6", + "powered": "false" + } + }, + { + "id": 1601, + "properties": { + "instrument": "custom_head", + "note": "7", + "powered": "true" + } + }, + { + "id": 1602, + "properties": { + "instrument": "custom_head", + "note": "7", + "powered": "false" + } + }, + { + "id": 1603, + "properties": { + "instrument": "custom_head", + "note": "8", + "powered": "true" + } + }, + { + "id": 1604, + "properties": { + "instrument": "custom_head", + "note": "8", + "powered": "false" + } + }, + { + "id": 1605, + "properties": { + "instrument": "custom_head", + "note": "9", + "powered": "true" + } + }, + { + "id": 1606, + "properties": { + "instrument": "custom_head", + "note": "9", + "powered": "false" + } + }, + { + "id": 1607, + "properties": { + "instrument": "custom_head", + "note": "10", + "powered": "true" + } + }, + { + "id": 1608, + "properties": { + "instrument": "custom_head", + "note": "10", + "powered": "false" + } + }, + { + "id": 1609, + "properties": { + "instrument": "custom_head", + "note": "11", + "powered": "true" + } + }, + { + "id": 1610, + "properties": { + "instrument": "custom_head", + "note": "11", + "powered": "false" + } + }, + { + "id": 1611, + "properties": { + "instrument": "custom_head", + "note": "12", + "powered": "true" + } + }, + { + "id": 1612, + "properties": { + "instrument": "custom_head", + "note": "12", + "powered": "false" + } + }, + { + "id": 1613, + "properties": { + "instrument": "custom_head", + "note": "13", + "powered": "true" + } + }, + { + "id": 1614, + "properties": { + "instrument": "custom_head", + "note": "13", + "powered": "false" + } + }, + { + "id": 1615, + "properties": { + "instrument": "custom_head", + "note": "14", + "powered": "true" + } + }, + { + "id": 1616, + "properties": { + "instrument": "custom_head", + "note": "14", + "powered": "false" + } + }, + { + "id": 1617, + "properties": { + "instrument": "custom_head", + "note": "15", + "powered": "true" + } + }, + { + "id": 1618, + "properties": { + "instrument": "custom_head", + "note": "15", + "powered": "false" + } + }, + { + "id": 1619, + "properties": { + "instrument": "custom_head", + "note": "16", + "powered": "true" + } + }, + { + "id": 1620, + "properties": { + "instrument": "custom_head", + "note": "16", + "powered": "false" + } + }, + { + "id": 1621, + "properties": { + "instrument": "custom_head", + "note": "17", + "powered": "true" + } + }, + { + "id": 1622, + "properties": { + "instrument": "custom_head", + "note": "17", + "powered": "false" + } + }, + { + "id": 1623, + "properties": { + "instrument": "custom_head", + "note": "18", + "powered": "true" + } + }, + { + "id": 1624, + "properties": { + "instrument": "custom_head", + "note": "18", + "powered": "false" + } + }, + { + "id": 1625, + "properties": { + "instrument": "custom_head", + "note": "19", + "powered": "true" + } + }, + { + "id": 1626, + "properties": { + "instrument": "custom_head", + "note": "19", + "powered": "false" + } + }, + { + "id": 1627, + "properties": { + "instrument": "custom_head", + "note": "20", + "powered": "true" + } + }, + { + "id": 1628, + "properties": { + "instrument": "custom_head", + "note": "20", + "powered": "false" + } + }, + { + "id": 1629, + "properties": { + "instrument": "custom_head", + "note": "21", + "powered": "true" + } + }, + { + "id": 1630, + "properties": { + "instrument": "custom_head", + "note": "21", + "powered": "false" + } + }, + { + "id": 1631, + "properties": { + "instrument": "custom_head", + "note": "22", + "powered": "true" + } + }, + { + "id": 1632, + "properties": { + "instrument": "custom_head", + "note": "22", + "powered": "false" + } + }, + { + "id": 1633, + "properties": { + "instrument": "custom_head", + "note": "23", + "powered": "true" + } + }, + { + "id": 1634, + "properties": { + "instrument": "custom_head", + "note": "23", + "powered": "false" + } + }, + { + "id": 1635, + "properties": { + "instrument": "custom_head", + "note": "24", + "powered": "true" + } + }, + { + "id": 1636, + "properties": { + "instrument": "custom_head", "note": "24", "powered": "false" } @@ -125146,7 +139607,7 @@ }, "states": [ { - "id": 6939, + "id": 8379, "properties": { "face": "floor", "facing": "north", @@ -125154,7 +139615,7 @@ } }, { - "id": 6940, + "id": 8380, "properties": { "face": "floor", "facing": "north", @@ -125162,7 +139623,7 @@ } }, { - "id": 6941, + "id": 8381, "properties": { "face": "floor", "facing": "south", @@ -125170,7 +139631,7 @@ } }, { - "id": 6942, + "id": 8382, "properties": { "face": "floor", "facing": "south", @@ -125178,7 +139639,7 @@ } }, { - "id": 6943, + "id": 8383, "properties": { "face": "floor", "facing": "west", @@ -125186,7 +139647,7 @@ } }, { - "id": 6944, + "id": 8384, "properties": { "face": "floor", "facing": "west", @@ -125194,7 +139655,7 @@ } }, { - "id": 6945, + "id": 8385, "properties": { "face": "floor", "facing": "east", @@ -125202,7 +139663,7 @@ } }, { - "id": 6946, + "id": 8386, "properties": { "face": "floor", "facing": "east", @@ -125210,7 +139671,7 @@ } }, { - "id": 6947, + "id": 8387, "properties": { "face": "wall", "facing": "north", @@ -125219,7 +139680,7 @@ }, { "default": true, - "id": 6948, + "id": 8388, "properties": { "face": "wall", "facing": "north", @@ -125227,7 +139688,7 @@ } }, { - "id": 6949, + "id": 8389, "properties": { "face": "wall", "facing": "south", @@ -125235,7 +139696,7 @@ } }, { - "id": 6950, + "id": 8390, "properties": { "face": "wall", "facing": "south", @@ -125243,7 +139704,7 @@ } }, { - "id": 6951, + "id": 8391, "properties": { "face": "wall", "facing": "west", @@ -125251,7 +139712,7 @@ } }, { - "id": 6952, + "id": 8392, "properties": { "face": "wall", "facing": "west", @@ -125259,7 +139720,7 @@ } }, { - "id": 6953, + "id": 8393, "properties": { "face": "wall", "facing": "east", @@ -125267,7 +139728,7 @@ } }, { - "id": 6954, + "id": 8394, "properties": { "face": "wall", "facing": "east", @@ -125275,7 +139736,7 @@ } }, { - "id": 6955, + "id": 8395, "properties": { "face": "ceiling", "facing": "north", @@ -125283,7 +139744,7 @@ } }, { - "id": 6956, + "id": 8396, "properties": { "face": "ceiling", "facing": "north", @@ -125291,7 +139752,7 @@ } }, { - "id": 6957, + "id": 8397, "properties": { "face": "ceiling", "facing": "south", @@ -125299,7 +139760,7 @@ } }, { - "id": 6958, + "id": 8398, "properties": { "face": "ceiling", "facing": "south", @@ -125307,7 +139768,7 @@ } }, { - "id": 6959, + "id": 8399, "properties": { "face": "ceiling", "facing": "west", @@ -125315,7 +139776,7 @@ } }, { - "id": 6960, + "id": 8400, "properties": { "face": "ceiling", "facing": "west", @@ -125323,7 +139784,7 @@ } }, { - "id": 6961, + "id": 8401, "properties": { "face": "ceiling", "facing": "east", @@ -125331,7 +139792,7 @@ } }, { - "id": 6962, + "id": 8402, "properties": { "face": "ceiling", "facing": "east", @@ -125367,7 +139828,7 @@ }, "states": [ { - "id": 3860, + "id": 4506, "properties": { "facing": "north", "half": "upper", @@ -125377,7 +139838,7 @@ } }, { - "id": 3861, + "id": 4507, "properties": { "facing": "north", "half": "upper", @@ -125387,7 +139848,7 @@ } }, { - "id": 3862, + "id": 4508, "properties": { "facing": "north", "half": "upper", @@ -125397,7 +139858,7 @@ } }, { - "id": 3863, + "id": 4509, "properties": { "facing": "north", "half": "upper", @@ -125407,7 +139868,7 @@ } }, { - "id": 3864, + "id": 4510, "properties": { "facing": "north", "half": "upper", @@ -125417,7 +139878,7 @@ } }, { - "id": 3865, + "id": 4511, "properties": { "facing": "north", "half": "upper", @@ -125427,7 +139888,7 @@ } }, { - "id": 3866, + "id": 4512, "properties": { "facing": "north", "half": "upper", @@ -125437,7 +139898,7 @@ } }, { - "id": 3867, + "id": 4513, "properties": { "facing": "north", "half": "upper", @@ -125447,7 +139908,7 @@ } }, { - "id": 3868, + "id": 4514, "properties": { "facing": "north", "half": "lower", @@ -125457,7 +139918,7 @@ } }, { - "id": 3869, + "id": 4515, "properties": { "facing": "north", "half": "lower", @@ -125467,7 +139928,7 @@ } }, { - "id": 3870, + "id": 4516, "properties": { "facing": "north", "half": "lower", @@ -125478,7 +139939,7 @@ }, { "default": true, - "id": 3871, + "id": 4517, "properties": { "facing": "north", "half": "lower", @@ -125488,7 +139949,7 @@ } }, { - "id": 3872, + "id": 4518, "properties": { "facing": "north", "half": "lower", @@ -125498,7 +139959,7 @@ } }, { - "id": 3873, + "id": 4519, "properties": { "facing": "north", "half": "lower", @@ -125508,7 +139969,7 @@ } }, { - "id": 3874, + "id": 4520, "properties": { "facing": "north", "half": "lower", @@ -125518,7 +139979,7 @@ } }, { - "id": 3875, + "id": 4521, "properties": { "facing": "north", "half": "lower", @@ -125528,7 +139989,7 @@ } }, { - "id": 3876, + "id": 4522, "properties": { "facing": "south", "half": "upper", @@ -125538,7 +139999,7 @@ } }, { - "id": 3877, + "id": 4523, "properties": { "facing": "south", "half": "upper", @@ -125548,7 +140009,7 @@ } }, { - "id": 3878, + "id": 4524, "properties": { "facing": "south", "half": "upper", @@ -125558,7 +140019,7 @@ } }, { - "id": 3879, + "id": 4525, "properties": { "facing": "south", "half": "upper", @@ -125568,7 +140029,7 @@ } }, { - "id": 3880, + "id": 4526, "properties": { "facing": "south", "half": "upper", @@ -125578,7 +140039,7 @@ } }, { - "id": 3881, + "id": 4527, "properties": { "facing": "south", "half": "upper", @@ -125588,7 +140049,7 @@ } }, { - "id": 3882, + "id": 4528, "properties": { "facing": "south", "half": "upper", @@ -125598,7 +140059,7 @@ } }, { - "id": 3883, + "id": 4529, "properties": { "facing": "south", "half": "upper", @@ -125608,7 +140069,7 @@ } }, { - "id": 3884, + "id": 4530, "properties": { "facing": "south", "half": "lower", @@ -125618,7 +140079,7 @@ } }, { - "id": 3885, + "id": 4531, "properties": { "facing": "south", "half": "lower", @@ -125628,7 +140089,7 @@ } }, { - "id": 3886, + "id": 4532, "properties": { "facing": "south", "half": "lower", @@ -125638,7 +140099,7 @@ } }, { - "id": 3887, + "id": 4533, "properties": { "facing": "south", "half": "lower", @@ -125648,7 +140109,7 @@ } }, { - "id": 3888, + "id": 4534, "properties": { "facing": "south", "half": "lower", @@ -125658,7 +140119,7 @@ } }, { - "id": 3889, + "id": 4535, "properties": { "facing": "south", "half": "lower", @@ -125668,7 +140129,7 @@ } }, { - "id": 3890, + "id": 4536, "properties": { "facing": "south", "half": "lower", @@ -125678,7 +140139,7 @@ } }, { - "id": 3891, + "id": 4537, "properties": { "facing": "south", "half": "lower", @@ -125688,7 +140149,7 @@ } }, { - "id": 3892, + "id": 4538, "properties": { "facing": "west", "half": "upper", @@ -125698,7 +140159,7 @@ } }, { - "id": 3893, + "id": 4539, "properties": { "facing": "west", "half": "upper", @@ -125708,7 +140169,7 @@ } }, { - "id": 3894, + "id": 4540, "properties": { "facing": "west", "half": "upper", @@ -125718,7 +140179,7 @@ } }, { - "id": 3895, + "id": 4541, "properties": { "facing": "west", "half": "upper", @@ -125728,7 +140189,7 @@ } }, { - "id": 3896, + "id": 4542, "properties": { "facing": "west", "half": "upper", @@ -125738,7 +140199,7 @@ } }, { - "id": 3897, + "id": 4543, "properties": { "facing": "west", "half": "upper", @@ -125748,7 +140209,7 @@ } }, { - "id": 3898, + "id": 4544, "properties": { "facing": "west", "half": "upper", @@ -125758,7 +140219,7 @@ } }, { - "id": 3899, + "id": 4545, "properties": { "facing": "west", "half": "upper", @@ -125768,7 +140229,7 @@ } }, { - "id": 3900, + "id": 4546, "properties": { "facing": "west", "half": "lower", @@ -125778,7 +140239,7 @@ } }, { - "id": 3901, + "id": 4547, "properties": { "facing": "west", "half": "lower", @@ -125788,7 +140249,7 @@ } }, { - "id": 3902, + "id": 4548, "properties": { "facing": "west", "half": "lower", @@ -125798,7 +140259,7 @@ } }, { - "id": 3903, + "id": 4549, "properties": { "facing": "west", "half": "lower", @@ -125808,7 +140269,7 @@ } }, { - "id": 3904, + "id": 4550, "properties": { "facing": "west", "half": "lower", @@ -125818,7 +140279,7 @@ } }, { - "id": 3905, + "id": 4551, "properties": { "facing": "west", "half": "lower", @@ -125828,7 +140289,7 @@ } }, { - "id": 3906, + "id": 4552, "properties": { "facing": "west", "half": "lower", @@ -125838,7 +140299,7 @@ } }, { - "id": 3907, + "id": 4553, "properties": { "facing": "west", "half": "lower", @@ -125848,7 +140309,7 @@ } }, { - "id": 3908, + "id": 4554, "properties": { "facing": "east", "half": "upper", @@ -125858,7 +140319,7 @@ } }, { - "id": 3909, + "id": 4555, "properties": { "facing": "east", "half": "upper", @@ -125868,7 +140329,7 @@ } }, { - "id": 3910, + "id": 4556, "properties": { "facing": "east", "half": "upper", @@ -125878,7 +140339,7 @@ } }, { - "id": 3911, + "id": 4557, "properties": { "facing": "east", "half": "upper", @@ -125888,7 +140349,7 @@ } }, { - "id": 3912, + "id": 4558, "properties": { "facing": "east", "half": "upper", @@ -125898,7 +140359,7 @@ } }, { - "id": 3913, + "id": 4559, "properties": { "facing": "east", "half": "upper", @@ -125908,7 +140369,7 @@ } }, { - "id": 3914, + "id": 4560, "properties": { "facing": "east", "half": "upper", @@ -125918,7 +140379,7 @@ } }, { - "id": 3915, + "id": 4561, "properties": { "facing": "east", "half": "upper", @@ -125928,7 +140389,7 @@ } }, { - "id": 3916, + "id": 4562, "properties": { "facing": "east", "half": "lower", @@ -125938,7 +140399,7 @@ } }, { - "id": 3917, + "id": 4563, "properties": { "facing": "east", "half": "lower", @@ -125948,7 +140409,7 @@ } }, { - "id": 3918, + "id": 4564, "properties": { "facing": "east", "half": "lower", @@ -125958,7 +140419,7 @@ } }, { - "id": 3919, + "id": 4565, "properties": { "facing": "east", "half": "lower", @@ -125968,7 +140429,7 @@ } }, { - "id": 3920, + "id": 4566, "properties": { "facing": "east", "half": "lower", @@ -125978,7 +140439,7 @@ } }, { - "id": 3921, + "id": 4567, "properties": { "facing": "east", "half": "lower", @@ -125988,7 +140449,7 @@ } }, { - "id": 3922, + "id": 4568, "properties": { "facing": "east", "half": "lower", @@ -125998,7 +140459,7 @@ } }, { - "id": 3923, + "id": 4569, "properties": { "facing": "east", "half": "lower", @@ -126034,7 +140495,7 @@ }, "states": [ { - "id": 4275, + "id": 5651, "properties": { "east": "true", "north": "true", @@ -126044,7 +140505,7 @@ } }, { - "id": 4276, + "id": 5652, "properties": { "east": "true", "north": "true", @@ -126054,7 +140515,7 @@ } }, { - "id": 4277, + "id": 5653, "properties": { "east": "true", "north": "true", @@ -126064,7 +140525,7 @@ } }, { - "id": 4278, + "id": 5654, "properties": { "east": "true", "north": "true", @@ -126074,7 +140535,7 @@ } }, { - "id": 4279, + "id": 5655, "properties": { "east": "true", "north": "true", @@ -126084,7 +140545,7 @@ } }, { - "id": 4280, + "id": 5656, "properties": { "east": "true", "north": "true", @@ -126094,7 +140555,7 @@ } }, { - "id": 4281, + "id": 5657, "properties": { "east": "true", "north": "true", @@ -126104,7 +140565,7 @@ } }, { - "id": 4282, + "id": 5658, "properties": { "east": "true", "north": "true", @@ -126114,7 +140575,7 @@ } }, { - "id": 4283, + "id": 5659, "properties": { "east": "true", "north": "false", @@ -126124,7 +140585,7 @@ } }, { - "id": 4284, + "id": 5660, "properties": { "east": "true", "north": "false", @@ -126134,7 +140595,7 @@ } }, { - "id": 4285, + "id": 5661, "properties": { "east": "true", "north": "false", @@ -126144,7 +140605,7 @@ } }, { - "id": 4286, + "id": 5662, "properties": { "east": "true", "north": "false", @@ -126154,7 +140615,7 @@ } }, { - "id": 4287, + "id": 5663, "properties": { "east": "true", "north": "false", @@ -126164,7 +140625,7 @@ } }, { - "id": 4288, + "id": 5664, "properties": { "east": "true", "north": "false", @@ -126174,7 +140635,7 @@ } }, { - "id": 4289, + "id": 5665, "properties": { "east": "true", "north": "false", @@ -126184,7 +140645,7 @@ } }, { - "id": 4290, + "id": 5666, "properties": { "east": "true", "north": "false", @@ -126194,7 +140655,7 @@ } }, { - "id": 4291, + "id": 5667, "properties": { "east": "false", "north": "true", @@ -126204,7 +140665,7 @@ } }, { - "id": 4292, + "id": 5668, "properties": { "east": "false", "north": "true", @@ -126214,7 +140675,7 @@ } }, { - "id": 4293, + "id": 5669, "properties": { "east": "false", "north": "true", @@ -126224,7 +140685,7 @@ } }, { - "id": 4294, + "id": 5670, "properties": { "east": "false", "north": "true", @@ -126234,7 +140695,7 @@ } }, { - "id": 4295, + "id": 5671, "properties": { "east": "false", "north": "true", @@ -126244,7 +140705,7 @@ } }, { - "id": 4296, + "id": 5672, "properties": { "east": "false", "north": "true", @@ -126254,7 +140715,7 @@ } }, { - "id": 4297, + "id": 5673, "properties": { "east": "false", "north": "true", @@ -126264,7 +140725,7 @@ } }, { - "id": 4298, + "id": 5674, "properties": { "east": "false", "north": "true", @@ -126274,7 +140735,7 @@ } }, { - "id": 4299, + "id": 5675, "properties": { "east": "false", "north": "false", @@ -126284,7 +140745,7 @@ } }, { - "id": 4300, + "id": 5676, "properties": { "east": "false", "north": "false", @@ -126294,7 +140755,7 @@ } }, { - "id": 4301, + "id": 5677, "properties": { "east": "false", "north": "false", @@ -126304,7 +140765,7 @@ } }, { - "id": 4302, + "id": 5678, "properties": { "east": "false", "north": "false", @@ -126314,7 +140775,7 @@ } }, { - "id": 4303, + "id": 5679, "properties": { "east": "false", "north": "false", @@ -126324,7 +140785,7 @@ } }, { - "id": 4304, + "id": 5680, "properties": { "east": "false", "north": "false", @@ -126334,7 +140795,7 @@ } }, { - "id": 4305, + "id": 5681, "properties": { "east": "false", "north": "false", @@ -126345,7 +140806,7 @@ }, { "default": true, - "id": 4306, + "id": 5682, "properties": { "east": "false", "north": "false", @@ -126379,7 +140840,7 @@ }, "states": [ { - "id": 5327, + "id": 6767, "properties": { "facing": "north", "in_wall": "true", @@ -126388,7 +140849,7 @@ } }, { - "id": 5328, + "id": 6768, "properties": { "facing": "north", "in_wall": "true", @@ -126397,7 +140858,7 @@ } }, { - "id": 5329, + "id": 6769, "properties": { "facing": "north", "in_wall": "true", @@ -126406,7 +140867,7 @@ } }, { - "id": 5330, + "id": 6770, "properties": { "facing": "north", "in_wall": "true", @@ -126415,7 +140876,7 @@ } }, { - "id": 5331, + "id": 6771, "properties": { "facing": "north", "in_wall": "false", @@ -126424,7 +140885,7 @@ } }, { - "id": 5332, + "id": 6772, "properties": { "facing": "north", "in_wall": "false", @@ -126433,7 +140894,7 @@ } }, { - "id": 5333, + "id": 6773, "properties": { "facing": "north", "in_wall": "false", @@ -126443,7 +140904,7 @@ }, { "default": true, - "id": 5334, + "id": 6774, "properties": { "facing": "north", "in_wall": "false", @@ -126452,7 +140913,7 @@ } }, { - "id": 5335, + "id": 6775, "properties": { "facing": "south", "in_wall": "true", @@ -126461,7 +140922,7 @@ } }, { - "id": 5336, + "id": 6776, "properties": { "facing": "south", "in_wall": "true", @@ -126470,7 +140931,7 @@ } }, { - "id": 5337, + "id": 6777, "properties": { "facing": "south", "in_wall": "true", @@ -126479,7 +140940,7 @@ } }, { - "id": 5338, + "id": 6778, "properties": { "facing": "south", "in_wall": "true", @@ -126488,7 +140949,7 @@ } }, { - "id": 5339, + "id": 6779, "properties": { "facing": "south", "in_wall": "false", @@ -126497,7 +140958,7 @@ } }, { - "id": 5340, + "id": 6780, "properties": { "facing": "south", "in_wall": "false", @@ -126506,7 +140967,7 @@ } }, { - "id": 5341, + "id": 6781, "properties": { "facing": "south", "in_wall": "false", @@ -126515,7 +140976,7 @@ } }, { - "id": 5342, + "id": 6782, "properties": { "facing": "south", "in_wall": "false", @@ -126524,7 +140985,7 @@ } }, { - "id": 5343, + "id": 6783, "properties": { "facing": "west", "in_wall": "true", @@ -126533,7 +140994,7 @@ } }, { - "id": 5344, + "id": 6784, "properties": { "facing": "west", "in_wall": "true", @@ -126542,7 +141003,7 @@ } }, { - "id": 5345, + "id": 6785, "properties": { "facing": "west", "in_wall": "true", @@ -126551,7 +141012,7 @@ } }, { - "id": 5346, + "id": 6786, "properties": { "facing": "west", "in_wall": "true", @@ -126560,7 +141021,7 @@ } }, { - "id": 5347, + "id": 6787, "properties": { "facing": "west", "in_wall": "false", @@ -126569,7 +141030,7 @@ } }, { - "id": 5348, + "id": 6788, "properties": { "facing": "west", "in_wall": "false", @@ -126578,7 +141039,7 @@ } }, { - "id": 5349, + "id": 6789, "properties": { "facing": "west", "in_wall": "false", @@ -126587,7 +141048,7 @@ } }, { - "id": 5350, + "id": 6790, "properties": { "facing": "west", "in_wall": "false", @@ -126596,7 +141057,7 @@ } }, { - "id": 5351, + "id": 6791, "properties": { "facing": "east", "in_wall": "true", @@ -126605,7 +141066,7 @@ } }, { - "id": 5352, + "id": 6792, "properties": { "facing": "east", "in_wall": "true", @@ -126614,7 +141075,7 @@ } }, { - "id": 5353, + "id": 6793, "properties": { "facing": "east", "in_wall": "true", @@ -126623,7 +141084,7 @@ } }, { - "id": 5354, + "id": 6794, "properties": { "facing": "east", "in_wall": "true", @@ -126632,7 +141093,7 @@ } }, { - "id": 5355, + "id": 6795, "properties": { "facing": "east", "in_wall": "false", @@ -126641,7 +141102,7 @@ } }, { - "id": 5356, + "id": 6796, "properties": { "facing": "east", "in_wall": "false", @@ -126650,7 +141111,7 @@ } }, { - "id": 5357, + "id": 6797, "properties": { "facing": "east", "in_wall": "false", @@ -126659,7 +141120,7 @@ } }, { - "id": 5358, + "id": 6798, "properties": { "facing": "east", "in_wall": "false", @@ -126669,6 +141130,551 @@ } ] }, + "minecraft:oak_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4742, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 4743, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4744, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4745, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4746, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4747, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4748, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4749, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4750, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4751, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4752, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4753, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4754, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4755, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4756, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4757, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4758, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4759, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4760, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4761, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4762, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4763, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4764, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4765, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4766, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4767, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4768, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4769, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4770, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4771, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4772, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4773, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 4774, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4775, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4776, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4777, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4778, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4779, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4780, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4781, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4782, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4783, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4784, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4785, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4786, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4787, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4788, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4789, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4790, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4791, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4792, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4793, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4794, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4795, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4796, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4797, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4798, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4799, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4800, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4801, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4802, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4803, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4804, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4805, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, "minecraft:oak_leaves": { "properties": { "distance": [ @@ -126690,74 +141696,10 @@ ] }, "states": [ - { - "id": 206, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 207, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 208, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 209, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 210, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 211, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 212, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 213, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, { "id": 214, "properties": { - "distance": "3", + "distance": "1", "persistent": "true", "waterlogged": "true" } @@ -126765,7 +141707,7 @@ { "id": 215, "properties": { - "distance": "3", + "distance": "1", "persistent": "true", "waterlogged": "false" } @@ -126773,7 +141715,7 @@ { "id": 216, "properties": { - "distance": "3", + "distance": "1", "persistent": "false", "waterlogged": "true" } @@ -126781,7 +141723,7 @@ { "id": 217, "properties": { - "distance": "3", + "distance": "1", "persistent": "false", "waterlogged": "false" } @@ -126789,7 +141731,7 @@ { "id": 218, "properties": { - "distance": "4", + "distance": "2", "persistent": "true", "waterlogged": "true" } @@ -126797,7 +141739,7 @@ { "id": 219, "properties": { - "distance": "4", + "distance": "2", "persistent": "true", "waterlogged": "false" } @@ -126805,7 +141747,7 @@ { "id": 220, "properties": { - "distance": "4", + "distance": "2", "persistent": "false", "waterlogged": "true" } @@ -126813,7 +141755,7 @@ { "id": 221, "properties": { - "distance": "4", + "distance": "2", "persistent": "false", "waterlogged": "false" } @@ -126821,7 +141763,7 @@ { "id": 222, "properties": { - "distance": "5", + "distance": "3", "persistent": "true", "waterlogged": "true" } @@ -126829,7 +141771,7 @@ { "id": 223, "properties": { - "distance": "5", + "distance": "3", "persistent": "true", "waterlogged": "false" } @@ -126837,7 +141779,7 @@ { "id": 224, "properties": { - "distance": "5", + "distance": "3", "persistent": "false", "waterlogged": "true" } @@ -126845,7 +141787,7 @@ { "id": 225, "properties": { - "distance": "5", + "distance": "3", "persistent": "false", "waterlogged": "false" } @@ -126853,7 +141795,7 @@ { "id": 226, "properties": { - "distance": "6", + "distance": "4", "persistent": "true", "waterlogged": "true" } @@ -126861,7 +141803,7 @@ { "id": 227, "properties": { - "distance": "6", + "distance": "4", "persistent": "true", "waterlogged": "false" } @@ -126869,7 +141811,7 @@ { "id": 228, "properties": { - "distance": "6", + "distance": "4", "persistent": "false", "waterlogged": "true" } @@ -126877,7 +141819,7 @@ { "id": 229, "properties": { - "distance": "6", + "distance": "4", "persistent": "false", "waterlogged": "false" } @@ -126885,7 +141827,7 @@ { "id": 230, "properties": { - "distance": "7", + "distance": "5", "persistent": "true", "waterlogged": "true" } @@ -126893,13 +141835,77 @@ { "id": 231, "properties": { - "distance": "7", + "distance": "5", "persistent": "true", "waterlogged": "false" } }, { "id": 232, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 233, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 234, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 235, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 236, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 237, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 238, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 239, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 240, "properties": { "distance": "7", "persistent": "false", @@ -126908,7 +141914,7 @@ }, { "default": true, - "id": 233, + "id": 241, "properties": { "distance": "7", "persistent": "false", @@ -126927,20 +141933,20 @@ }, "states": [ { - "id": 117, + "id": 119, "properties": { "axis": "x" } }, { "default": true, - "id": 118, + "id": 120, "properties": { "axis": "y" } }, { - "id": 119, + "id": 121, "properties": { "axis": "z" } @@ -126964,14 +141970,14 @@ }, "states": [ { - "id": 4178, + "id": 5552, "properties": { "powered": "true" } }, { "default": true, - "id": 4179, + "id": 5553, "properties": { "powered": "false" } @@ -126988,13 +141994,13 @@ "states": [ { "default": true, - "id": 22, + "id": 24, "properties": { "stage": "0" } }, { - "id": 23, + "id": 25, "properties": { "stage": "1" } @@ -127028,7 +142034,7 @@ }, "states": [ { - "id": 3636, + "id": 4250, "properties": { "rotation": "0", "waterlogged": "true" @@ -127036,217 +142042,217 @@ }, { "default": true, - "id": 3637, + "id": 4251, "properties": { "rotation": "0", "waterlogged": "false" } }, { - "id": 3638, + "id": 4252, "properties": { "rotation": "1", "waterlogged": "true" } }, { - "id": 3639, + "id": 4253, "properties": { "rotation": "1", "waterlogged": "false" } }, { - "id": 3640, + "id": 4254, "properties": { "rotation": "2", "waterlogged": "true" } }, { - "id": 3641, + "id": 4255, "properties": { "rotation": "2", "waterlogged": "false" } }, { - "id": 3642, + "id": 4256, "properties": { "rotation": "3", "waterlogged": "true" } }, { - "id": 3643, + "id": 4257, "properties": { "rotation": "3", "waterlogged": "false" } }, { - "id": 3644, + "id": 4258, "properties": { "rotation": "4", "waterlogged": "true" } }, { - "id": 3645, + "id": 4259, "properties": { "rotation": "4", "waterlogged": "false" } }, { - "id": 3646, + "id": 4260, "properties": { "rotation": "5", "waterlogged": "true" } }, { - "id": 3647, + "id": 4261, "properties": { "rotation": "5", "waterlogged": "false" } }, { - "id": 3648, + "id": 4262, "properties": { "rotation": "6", "waterlogged": "true" } }, { - "id": 3649, + "id": 4263, "properties": { "rotation": "6", "waterlogged": "false" } }, { - "id": 3650, + "id": 4264, "properties": { "rotation": "7", "waterlogged": "true" } }, { - "id": 3651, + "id": 4265, "properties": { "rotation": "7", "waterlogged": "false" } }, { - "id": 3652, + "id": 4266, "properties": { "rotation": "8", "waterlogged": "true" } }, { - "id": 3653, + "id": 4267, "properties": { "rotation": "8", "waterlogged": "false" } }, { - "id": 3654, + "id": 4268, "properties": { "rotation": "9", "waterlogged": "true" } }, { - "id": 3655, + "id": 4269, "properties": { "rotation": "9", "waterlogged": "false" } }, { - "id": 3656, + "id": 4270, "properties": { "rotation": "10", "waterlogged": "true" } }, { - "id": 3657, + "id": 4271, "properties": { "rotation": "10", "waterlogged": "false" } }, { - "id": 3658, + "id": 4272, "properties": { "rotation": "11", "waterlogged": "true" } }, { - "id": 3659, + "id": 4273, "properties": { "rotation": "11", "waterlogged": "false" } }, { - "id": 3660, + "id": 4274, "properties": { "rotation": "12", "waterlogged": "true" } }, { - "id": 3661, + "id": 4275, "properties": { "rotation": "12", "waterlogged": "false" } }, { - "id": 3662, + "id": 4276, "properties": { "rotation": "13", "waterlogged": "true" } }, { - "id": 3663, + "id": 4277, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 3664, + "id": 4278, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 3665, + "id": 4279, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 3666, + "id": 4280, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 3667, + "id": 4281, "properties": { "rotation": "15", "waterlogged": "false" @@ -127268,21 +142274,21 @@ }, "states": [ { - "id": 9041, + "id": 10685, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 9042, + "id": 10686, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 9043, + "id": 10687, "properties": { "type": "bottom", "waterlogged": "true" @@ -127290,21 +142296,21 @@ }, { "default": true, - "id": 9044, + "id": 10688, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 9045, + "id": 10689, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 9046, + "id": 10690, "properties": { "type": "double", "waterlogged": "false" @@ -127338,7 +142344,7 @@ }, "states": [ { - "id": 2208, + "id": 2822, "properties": { "facing": "north", "half": "top", @@ -127347,7 +142353,7 @@ } }, { - "id": 2209, + "id": 2823, "properties": { "facing": "north", "half": "top", @@ -127356,7 +142362,7 @@ } }, { - "id": 2210, + "id": 2824, "properties": { "facing": "north", "half": "top", @@ -127365,7 +142371,7 @@ } }, { - "id": 2211, + "id": 2825, "properties": { "facing": "north", "half": "top", @@ -127374,7 +142380,7 @@ } }, { - "id": 2212, + "id": 2826, "properties": { "facing": "north", "half": "top", @@ -127383,7 +142389,7 @@ } }, { - "id": 2213, + "id": 2827, "properties": { "facing": "north", "half": "top", @@ -127392,7 +142398,7 @@ } }, { - "id": 2214, + "id": 2828, "properties": { "facing": "north", "half": "top", @@ -127401,7 +142407,7 @@ } }, { - "id": 2215, + "id": 2829, "properties": { "facing": "north", "half": "top", @@ -127410,7 +142416,7 @@ } }, { - "id": 2216, + "id": 2830, "properties": { "facing": "north", "half": "top", @@ -127419,7 +142425,7 @@ } }, { - "id": 2217, + "id": 2831, "properties": { "facing": "north", "half": "top", @@ -127428,7 +142434,7 @@ } }, { - "id": 2218, + "id": 2832, "properties": { "facing": "north", "half": "bottom", @@ -127438,7 +142444,7 @@ }, { "default": true, - "id": 2219, + "id": 2833, "properties": { "facing": "north", "half": "bottom", @@ -127447,7 +142453,7 @@ } }, { - "id": 2220, + "id": 2834, "properties": { "facing": "north", "half": "bottom", @@ -127456,7 +142462,7 @@ } }, { - "id": 2221, + "id": 2835, "properties": { "facing": "north", "half": "bottom", @@ -127465,7 +142471,7 @@ } }, { - "id": 2222, + "id": 2836, "properties": { "facing": "north", "half": "bottom", @@ -127474,7 +142480,7 @@ } }, { - "id": 2223, + "id": 2837, "properties": { "facing": "north", "half": "bottom", @@ -127483,7 +142489,7 @@ } }, { - "id": 2224, + "id": 2838, "properties": { "facing": "north", "half": "bottom", @@ -127492,7 +142498,7 @@ } }, { - "id": 2225, + "id": 2839, "properties": { "facing": "north", "half": "bottom", @@ -127501,7 +142507,7 @@ } }, { - "id": 2226, + "id": 2840, "properties": { "facing": "north", "half": "bottom", @@ -127510,7 +142516,7 @@ } }, { - "id": 2227, + "id": 2841, "properties": { "facing": "north", "half": "bottom", @@ -127519,7 +142525,7 @@ } }, { - "id": 2228, + "id": 2842, "properties": { "facing": "south", "half": "top", @@ -127528,7 +142534,7 @@ } }, { - "id": 2229, + "id": 2843, "properties": { "facing": "south", "half": "top", @@ -127537,7 +142543,7 @@ } }, { - "id": 2230, + "id": 2844, "properties": { "facing": "south", "half": "top", @@ -127546,7 +142552,7 @@ } }, { - "id": 2231, + "id": 2845, "properties": { "facing": "south", "half": "top", @@ -127555,7 +142561,7 @@ } }, { - "id": 2232, + "id": 2846, "properties": { "facing": "south", "half": "top", @@ -127564,7 +142570,7 @@ } }, { - "id": 2233, + "id": 2847, "properties": { "facing": "south", "half": "top", @@ -127573,7 +142579,7 @@ } }, { - "id": 2234, + "id": 2848, "properties": { "facing": "south", "half": "top", @@ -127582,7 +142588,7 @@ } }, { - "id": 2235, + "id": 2849, "properties": { "facing": "south", "half": "top", @@ -127591,7 +142597,7 @@ } }, { - "id": 2236, + "id": 2850, "properties": { "facing": "south", "half": "top", @@ -127600,7 +142606,7 @@ } }, { - "id": 2237, + "id": 2851, "properties": { "facing": "south", "half": "top", @@ -127609,7 +142615,7 @@ } }, { - "id": 2238, + "id": 2852, "properties": { "facing": "south", "half": "bottom", @@ -127618,7 +142624,7 @@ } }, { - "id": 2239, + "id": 2853, "properties": { "facing": "south", "half": "bottom", @@ -127627,7 +142633,7 @@ } }, { - "id": 2240, + "id": 2854, "properties": { "facing": "south", "half": "bottom", @@ -127636,7 +142642,7 @@ } }, { - "id": 2241, + "id": 2855, "properties": { "facing": "south", "half": "bottom", @@ -127645,7 +142651,7 @@ } }, { - "id": 2242, + "id": 2856, "properties": { "facing": "south", "half": "bottom", @@ -127654,7 +142660,7 @@ } }, { - "id": 2243, + "id": 2857, "properties": { "facing": "south", "half": "bottom", @@ -127663,7 +142669,7 @@ } }, { - "id": 2244, + "id": 2858, "properties": { "facing": "south", "half": "bottom", @@ -127672,7 +142678,7 @@ } }, { - "id": 2245, + "id": 2859, "properties": { "facing": "south", "half": "bottom", @@ -127681,7 +142687,7 @@ } }, { - "id": 2246, + "id": 2860, "properties": { "facing": "south", "half": "bottom", @@ -127690,7 +142696,7 @@ } }, { - "id": 2247, + "id": 2861, "properties": { "facing": "south", "half": "bottom", @@ -127699,7 +142705,7 @@ } }, { - "id": 2248, + "id": 2862, "properties": { "facing": "west", "half": "top", @@ -127708,7 +142714,7 @@ } }, { - "id": 2249, + "id": 2863, "properties": { "facing": "west", "half": "top", @@ -127717,7 +142723,7 @@ } }, { - "id": 2250, + "id": 2864, "properties": { "facing": "west", "half": "top", @@ -127726,7 +142732,7 @@ } }, { - "id": 2251, + "id": 2865, "properties": { "facing": "west", "half": "top", @@ -127735,7 +142741,7 @@ } }, { - "id": 2252, + "id": 2866, "properties": { "facing": "west", "half": "top", @@ -127744,7 +142750,7 @@ } }, { - "id": 2253, + "id": 2867, "properties": { "facing": "west", "half": "top", @@ -127753,7 +142759,7 @@ } }, { - "id": 2254, + "id": 2868, "properties": { "facing": "west", "half": "top", @@ -127762,7 +142768,7 @@ } }, { - "id": 2255, + "id": 2869, "properties": { "facing": "west", "half": "top", @@ -127771,7 +142777,7 @@ } }, { - "id": 2256, + "id": 2870, "properties": { "facing": "west", "half": "top", @@ -127780,7 +142786,7 @@ } }, { - "id": 2257, + "id": 2871, "properties": { "facing": "west", "half": "top", @@ -127789,7 +142795,7 @@ } }, { - "id": 2258, + "id": 2872, "properties": { "facing": "west", "half": "bottom", @@ -127798,7 +142804,7 @@ } }, { - "id": 2259, + "id": 2873, "properties": { "facing": "west", "half": "bottom", @@ -127807,7 +142813,7 @@ } }, { - "id": 2260, + "id": 2874, "properties": { "facing": "west", "half": "bottom", @@ -127816,7 +142822,7 @@ } }, { - "id": 2261, + "id": 2875, "properties": { "facing": "west", "half": "bottom", @@ -127825,7 +142831,7 @@ } }, { - "id": 2262, + "id": 2876, "properties": { "facing": "west", "half": "bottom", @@ -127834,7 +142840,7 @@ } }, { - "id": 2263, + "id": 2877, "properties": { "facing": "west", "half": "bottom", @@ -127843,7 +142849,7 @@ } }, { - "id": 2264, + "id": 2878, "properties": { "facing": "west", "half": "bottom", @@ -127852,7 +142858,7 @@ } }, { - "id": 2265, + "id": 2879, "properties": { "facing": "west", "half": "bottom", @@ -127861,7 +142867,7 @@ } }, { - "id": 2266, + "id": 2880, "properties": { "facing": "west", "half": "bottom", @@ -127870,7 +142876,7 @@ } }, { - "id": 2267, + "id": 2881, "properties": { "facing": "west", "half": "bottom", @@ -127879,7 +142885,7 @@ } }, { - "id": 2268, + "id": 2882, "properties": { "facing": "east", "half": "top", @@ -127888,7 +142894,7 @@ } }, { - "id": 2269, + "id": 2883, "properties": { "facing": "east", "half": "top", @@ -127897,7 +142903,7 @@ } }, { - "id": 2270, + "id": 2884, "properties": { "facing": "east", "half": "top", @@ -127906,7 +142912,7 @@ } }, { - "id": 2271, + "id": 2885, "properties": { "facing": "east", "half": "top", @@ -127915,7 +142921,7 @@ } }, { - "id": 2272, + "id": 2886, "properties": { "facing": "east", "half": "top", @@ -127924,7 +142930,7 @@ } }, { - "id": 2273, + "id": 2887, "properties": { "facing": "east", "half": "top", @@ -127933,7 +142939,7 @@ } }, { - "id": 2274, + "id": 2888, "properties": { "facing": "east", "half": "top", @@ -127942,7 +142948,7 @@ } }, { - "id": 2275, + "id": 2889, "properties": { "facing": "east", "half": "top", @@ -127951,7 +142957,7 @@ } }, { - "id": 2276, + "id": 2890, "properties": { "facing": "east", "half": "top", @@ -127960,7 +142966,7 @@ } }, { - "id": 2277, + "id": 2891, "properties": { "facing": "east", "half": "top", @@ -127969,7 +142975,7 @@ } }, { - "id": 2278, + "id": 2892, "properties": { "facing": "east", "half": "bottom", @@ -127978,7 +142984,7 @@ } }, { - "id": 2279, + "id": 2893, "properties": { "facing": "east", "half": "bottom", @@ -127987,7 +142993,7 @@ } }, { - "id": 2280, + "id": 2894, "properties": { "facing": "east", "half": "bottom", @@ -127996,7 +143002,7 @@ } }, { - "id": 2281, + "id": 2895, "properties": { "facing": "east", "half": "bottom", @@ -128005,7 +143011,7 @@ } }, { - "id": 2282, + "id": 2896, "properties": { "facing": "east", "half": "bottom", @@ -128014,7 +143020,7 @@ } }, { - "id": 2283, + "id": 2897, "properties": { "facing": "east", "half": "bottom", @@ -128023,7 +143029,7 @@ } }, { - "id": 2284, + "id": 2898, "properties": { "facing": "east", "half": "bottom", @@ -128032,7 +143038,7 @@ } }, { - "id": 2285, + "id": 2899, "properties": { "facing": "east", "half": "bottom", @@ -128041,7 +143047,7 @@ } }, { - "id": 2286, + "id": 2900, "properties": { "facing": "east", "half": "bottom", @@ -128050,7 +143056,7 @@ } }, { - "id": 2287, + "id": 2901, "properties": { "facing": "east", "half": "bottom", @@ -128087,7 +143093,7 @@ }, "states": [ { - "id": 4420, + "id": 5796, "properties": { "facing": "north", "half": "top", @@ -128097,7 +143103,7 @@ } }, { - "id": 4421, + "id": 5797, "properties": { "facing": "north", "half": "top", @@ -128107,7 +143113,7 @@ } }, { - "id": 4422, + "id": 5798, "properties": { "facing": "north", "half": "top", @@ -128117,7 +143123,7 @@ } }, { - "id": 4423, + "id": 5799, "properties": { "facing": "north", "half": "top", @@ -128127,7 +143133,7 @@ } }, { - "id": 4424, + "id": 5800, "properties": { "facing": "north", "half": "top", @@ -128137,7 +143143,7 @@ } }, { - "id": 4425, + "id": 5801, "properties": { "facing": "north", "half": "top", @@ -128147,7 +143153,7 @@ } }, { - "id": 4426, + "id": 5802, "properties": { "facing": "north", "half": "top", @@ -128157,7 +143163,7 @@ } }, { - "id": 4427, + "id": 5803, "properties": { "facing": "north", "half": "top", @@ -128167,7 +143173,7 @@ } }, { - "id": 4428, + "id": 5804, "properties": { "facing": "north", "half": "bottom", @@ -128177,7 +143183,7 @@ } }, { - "id": 4429, + "id": 5805, "properties": { "facing": "north", "half": "bottom", @@ -128187,7 +143193,7 @@ } }, { - "id": 4430, + "id": 5806, "properties": { "facing": "north", "half": "bottom", @@ -128197,7 +143203,7 @@ } }, { - "id": 4431, + "id": 5807, "properties": { "facing": "north", "half": "bottom", @@ -128207,7 +143213,7 @@ } }, { - "id": 4432, + "id": 5808, "properties": { "facing": "north", "half": "bottom", @@ -128217,7 +143223,7 @@ } }, { - "id": 4433, + "id": 5809, "properties": { "facing": "north", "half": "bottom", @@ -128227,7 +143233,7 @@ } }, { - "id": 4434, + "id": 5810, "properties": { "facing": "north", "half": "bottom", @@ -128238,7 +143244,7 @@ }, { "default": true, - "id": 4435, + "id": 5811, "properties": { "facing": "north", "half": "bottom", @@ -128248,7 +143254,7 @@ } }, { - "id": 4436, + "id": 5812, "properties": { "facing": "south", "half": "top", @@ -128258,7 +143264,7 @@ } }, { - "id": 4437, + "id": 5813, "properties": { "facing": "south", "half": "top", @@ -128268,7 +143274,7 @@ } }, { - "id": 4438, + "id": 5814, "properties": { "facing": "south", "half": "top", @@ -128278,7 +143284,7 @@ } }, { - "id": 4439, + "id": 5815, "properties": { "facing": "south", "half": "top", @@ -128288,7 +143294,7 @@ } }, { - "id": 4440, + "id": 5816, "properties": { "facing": "south", "half": "top", @@ -128298,7 +143304,7 @@ } }, { - "id": 4441, + "id": 5817, "properties": { "facing": "south", "half": "top", @@ -128308,7 +143314,7 @@ } }, { - "id": 4442, + "id": 5818, "properties": { "facing": "south", "half": "top", @@ -128318,7 +143324,7 @@ } }, { - "id": 4443, + "id": 5819, "properties": { "facing": "south", "half": "top", @@ -128328,7 +143334,7 @@ } }, { - "id": 4444, + "id": 5820, "properties": { "facing": "south", "half": "bottom", @@ -128338,7 +143344,7 @@ } }, { - "id": 4445, + "id": 5821, "properties": { "facing": "south", "half": "bottom", @@ -128348,7 +143354,7 @@ } }, { - "id": 4446, + "id": 5822, "properties": { "facing": "south", "half": "bottom", @@ -128358,7 +143364,7 @@ } }, { - "id": 4447, + "id": 5823, "properties": { "facing": "south", "half": "bottom", @@ -128368,7 +143374,7 @@ } }, { - "id": 4448, + "id": 5824, "properties": { "facing": "south", "half": "bottom", @@ -128378,7 +143384,7 @@ } }, { - "id": 4449, + "id": 5825, "properties": { "facing": "south", "half": "bottom", @@ -128388,7 +143394,7 @@ } }, { - "id": 4450, + "id": 5826, "properties": { "facing": "south", "half": "bottom", @@ -128398,7 +143404,7 @@ } }, { - "id": 4451, + "id": 5827, "properties": { "facing": "south", "half": "bottom", @@ -128408,7 +143414,7 @@ } }, { - "id": 4452, + "id": 5828, "properties": { "facing": "west", "half": "top", @@ -128418,7 +143424,7 @@ } }, { - "id": 4453, + "id": 5829, "properties": { "facing": "west", "half": "top", @@ -128428,7 +143434,7 @@ } }, { - "id": 4454, + "id": 5830, "properties": { "facing": "west", "half": "top", @@ -128438,7 +143444,7 @@ } }, { - "id": 4455, + "id": 5831, "properties": { "facing": "west", "half": "top", @@ -128448,7 +143454,7 @@ } }, { - "id": 4456, + "id": 5832, "properties": { "facing": "west", "half": "top", @@ -128458,7 +143464,7 @@ } }, { - "id": 4457, + "id": 5833, "properties": { "facing": "west", "half": "top", @@ -128468,7 +143474,7 @@ } }, { - "id": 4458, + "id": 5834, "properties": { "facing": "west", "half": "top", @@ -128478,7 +143484,7 @@ } }, { - "id": 4459, + "id": 5835, "properties": { "facing": "west", "half": "top", @@ -128488,7 +143494,7 @@ } }, { - "id": 4460, + "id": 5836, "properties": { "facing": "west", "half": "bottom", @@ -128498,7 +143504,7 @@ } }, { - "id": 4461, + "id": 5837, "properties": { "facing": "west", "half": "bottom", @@ -128508,7 +143514,7 @@ } }, { - "id": 4462, + "id": 5838, "properties": { "facing": "west", "half": "bottom", @@ -128518,7 +143524,7 @@ } }, { - "id": 4463, + "id": 5839, "properties": { "facing": "west", "half": "bottom", @@ -128528,7 +143534,7 @@ } }, { - "id": 4464, + "id": 5840, "properties": { "facing": "west", "half": "bottom", @@ -128538,7 +143544,7 @@ } }, { - "id": 4465, + "id": 5841, "properties": { "facing": "west", "half": "bottom", @@ -128548,7 +143554,7 @@ } }, { - "id": 4466, + "id": 5842, "properties": { "facing": "west", "half": "bottom", @@ -128558,7 +143564,7 @@ } }, { - "id": 4467, + "id": 5843, "properties": { "facing": "west", "half": "bottom", @@ -128568,7 +143574,7 @@ } }, { - "id": 4468, + "id": 5844, "properties": { "facing": "east", "half": "top", @@ -128578,7 +143584,7 @@ } }, { - "id": 4469, + "id": 5845, "properties": { "facing": "east", "half": "top", @@ -128588,7 +143594,7 @@ } }, { - "id": 4470, + "id": 5846, "properties": { "facing": "east", "half": "top", @@ -128598,7 +143604,7 @@ } }, { - "id": 4471, + "id": 5847, "properties": { "facing": "east", "half": "top", @@ -128608,7 +143614,7 @@ } }, { - "id": 4472, + "id": 5848, "properties": { "facing": "east", "half": "top", @@ -128618,7 +143624,7 @@ } }, { - "id": 4473, + "id": 5849, "properties": { "facing": "east", "half": "top", @@ -128628,7 +143634,7 @@ } }, { - "id": 4474, + "id": 5850, "properties": { "facing": "east", "half": "top", @@ -128638,7 +143644,7 @@ } }, { - "id": 4475, + "id": 5851, "properties": { "facing": "east", "half": "top", @@ -128648,7 +143654,7 @@ } }, { - "id": 4476, + "id": 5852, "properties": { "facing": "east", "half": "bottom", @@ -128658,7 +143664,7 @@ } }, { - "id": 4477, + "id": 5853, "properties": { "facing": "east", "half": "bottom", @@ -128668,7 +143674,7 @@ } }, { - "id": 4478, + "id": 5854, "properties": { "facing": "east", "half": "bottom", @@ -128678,7 +143684,7 @@ } }, { - "id": 4479, + "id": 5855, "properties": { "facing": "east", "half": "bottom", @@ -128688,7 +143694,7 @@ } }, { - "id": 4480, + "id": 5856, "properties": { "facing": "east", "half": "bottom", @@ -128698,7 +143704,7 @@ } }, { - "id": 4481, + "id": 5857, "properties": { "facing": "east", "half": "bottom", @@ -128708,7 +143714,7 @@ } }, { - "id": 4482, + "id": 5858, "properties": { "facing": "east", "half": "bottom", @@ -128718,7 +143724,7 @@ } }, { - "id": 4483, + "id": 5859, "properties": { "facing": "east", "half": "bottom", @@ -128729,6 +143735,79 @@ } ] }, + "minecraft:oak_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5382, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5383, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5384, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5385, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5386, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5387, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5388, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5389, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, "minecraft:oak_wall_sign": { "properties": { "facing": [ @@ -128744,7 +143823,7 @@ }, "states": [ { - "id": 4032, + "id": 4678, "properties": { "facing": "north", "waterlogged": "true" @@ -128752,49 +143831,49 @@ }, { "default": true, - "id": 4033, + "id": 4679, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 4034, + "id": 4680, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 4035, + "id": 4681, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 4036, + "id": 4682, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 4037, + "id": 4683, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 4038, + "id": 4684, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4039, + "id": 4685, "properties": { "facing": "east", "waterlogged": "false" @@ -128812,20 +143891,20 @@ }, "states": [ { - "id": 164, + "id": 172, "properties": { "axis": "x" } }, { "default": true, - "id": 165, + "id": 173, "properties": { "axis": "y" } }, { - "id": 166, + "id": 174, "properties": { "axis": "z" } @@ -128849,35 +143928,35 @@ }, "states": [ { - "id": 10141, + "id": 11925, "properties": { "facing": "north", "powered": "true" } }, { - "id": 10142, + "id": 11926, "properties": { "facing": "north", "powered": "false" } }, { - "id": 10143, + "id": 11927, "properties": { "facing": "east", "powered": "true" } }, { - "id": 10144, + "id": 11928, "properties": { "facing": "east", "powered": "false" } }, { - "id": 10145, + "id": 11929, "properties": { "facing": "south", "powered": "true" @@ -128885,49 +143964,49 @@ }, { "default": true, - "id": 10146, + "id": 11930, "properties": { "facing": "south", "powered": "false" } }, { - "id": 10147, + "id": 11931, "properties": { "facing": "west", "powered": "true" } }, { - "id": 10148, + "id": 11932, "properties": { "facing": "west", "powered": "false" } }, { - "id": 10149, + "id": 11933, "properties": { "facing": "up", "powered": "true" } }, { - "id": 10150, + "id": 11934, "properties": { "facing": "up", "powered": "false" } }, { - "id": 10151, + "id": 11935, "properties": { "facing": "down", "powered": "true" } }, { - "id": 10152, + "id": 11936, "properties": { "facing": "down", "powered": "false" @@ -128939,7 +144018,7 @@ "states": [ { "default": true, - "id": 1688 + "id": 2302 } ] }, @@ -128953,20 +144032,20 @@ }, "states": [ { - "id": 21437, + "id": 23221, "properties": { "axis": "x" } }, { "default": true, - "id": 21438, + "id": 23222, "properties": { "axis": "y" } }, { - "id": 21439, + "id": 23223, "properties": { "axis": "z" } @@ -128997,97 +144076,97 @@ "states": [ { "default": true, - "id": 8654, + "id": 10298, "properties": { "rotation": "0" } }, { - "id": 8655, + "id": 10299, "properties": { "rotation": "1" } }, { - "id": 8656, + "id": 10300, "properties": { "rotation": "2" } }, { - "id": 8657, + "id": 10301, "properties": { "rotation": "3" } }, { - "id": 8658, + "id": 10302, "properties": { "rotation": "4" } }, { - "id": 8659, + "id": 10303, "properties": { "rotation": "5" } }, { - "id": 8660, + "id": 10304, "properties": { "rotation": "6" } }, { - "id": 8661, + "id": 10305, "properties": { "rotation": "7" } }, { - "id": 8662, + "id": 10306, "properties": { "rotation": "8" } }, { - "id": 8663, + "id": 10307, "properties": { "rotation": "9" } }, { - "id": 8664, + "id": 10308, "properties": { "rotation": "10" } }, { - "id": 8665, + "id": 10309, "properties": { "rotation": "11" } }, { - "id": 8666, + "id": 10310, "properties": { "rotation": "12" } }, { - "id": 8667, + "id": 10311, "properties": { "rotation": "13" } }, { - "id": 8668, + "id": 10312, "properties": { "rotation": "14" } }, { - "id": 8669, + "id": 10313, "properties": { "rotation": "15" } @@ -129113,7 +144192,7 @@ }, "states": [ { - "id": 1295, + "id": 1653, "properties": { "facing": "north", "occupied": "true", @@ -129121,7 +144200,7 @@ } }, { - "id": 1296, + "id": 1654, "properties": { "facing": "north", "occupied": "true", @@ -129129,7 +144208,7 @@ } }, { - "id": 1297, + "id": 1655, "properties": { "facing": "north", "occupied": "false", @@ -129138,7 +144217,7 @@ }, { "default": true, - "id": 1298, + "id": 1656, "properties": { "facing": "north", "occupied": "false", @@ -129146,7 +144225,7 @@ } }, { - "id": 1299, + "id": 1657, "properties": { "facing": "south", "occupied": "true", @@ -129154,7 +144233,7 @@ } }, { - "id": 1300, + "id": 1658, "properties": { "facing": "south", "occupied": "true", @@ -129162,7 +144241,7 @@ } }, { - "id": 1301, + "id": 1659, "properties": { "facing": "south", "occupied": "false", @@ -129170,7 +144249,7 @@ } }, { - "id": 1302, + "id": 1660, "properties": { "facing": "south", "occupied": "false", @@ -129178,7 +144257,7 @@ } }, { - "id": 1303, + "id": 1661, "properties": { "facing": "west", "occupied": "true", @@ -129186,7 +144265,7 @@ } }, { - "id": 1304, + "id": 1662, "properties": { "facing": "west", "occupied": "true", @@ -129194,7 +144273,7 @@ } }, { - "id": 1305, + "id": 1663, "properties": { "facing": "west", "occupied": "false", @@ -129202,7 +144281,7 @@ } }, { - "id": 1306, + "id": 1664, "properties": { "facing": "west", "occupied": "false", @@ -129210,7 +144289,7 @@ } }, { - "id": 1307, + "id": 1665, "properties": { "facing": "east", "occupied": "true", @@ -129218,7 +144297,7 @@ } }, { - "id": 1308, + "id": 1666, "properties": { "facing": "east", "occupied": "true", @@ -129226,7 +144305,7 @@ } }, { - "id": 1309, + "id": 1667, "properties": { "facing": "east", "occupied": "false", @@ -129234,7 +144313,7 @@ } }, { - "id": 1310, + "id": 1668, "properties": { "facing": "east", "occupied": "false", @@ -129262,7 +144341,7 @@ }, "states": [ { - "id": 18345, + "id": 20129, "properties": { "candles": "1", "lit": "true", @@ -129270,7 +144349,7 @@ } }, { - "id": 18346, + "id": 20130, "properties": { "candles": "1", "lit": "true", @@ -129278,7 +144357,7 @@ } }, { - "id": 18347, + "id": 20131, "properties": { "candles": "1", "lit": "false", @@ -129287,7 +144366,7 @@ }, { "default": true, - "id": 18348, + "id": 20132, "properties": { "candles": "1", "lit": "false", @@ -129295,7 +144374,7 @@ } }, { - "id": 18349, + "id": 20133, "properties": { "candles": "2", "lit": "true", @@ -129303,7 +144382,7 @@ } }, { - "id": 18350, + "id": 20134, "properties": { "candles": "2", "lit": "true", @@ -129311,7 +144390,7 @@ } }, { - "id": 18351, + "id": 20135, "properties": { "candles": "2", "lit": "false", @@ -129319,7 +144398,7 @@ } }, { - "id": 18352, + "id": 20136, "properties": { "candles": "2", "lit": "false", @@ -129327,7 +144406,7 @@ } }, { - "id": 18353, + "id": 20137, "properties": { "candles": "3", "lit": "true", @@ -129335,7 +144414,7 @@ } }, { - "id": 18354, + "id": 20138, "properties": { "candles": "3", "lit": "true", @@ -129343,7 +144422,7 @@ } }, { - "id": 18355, + "id": 20139, "properties": { "candles": "3", "lit": "false", @@ -129351,7 +144430,7 @@ } }, { - "id": 18356, + "id": 20140, "properties": { "candles": "3", "lit": "false", @@ -129359,7 +144438,7 @@ } }, { - "id": 18357, + "id": 20141, "properties": { "candles": "4", "lit": "true", @@ -129367,7 +144446,7 @@ } }, { - "id": 18358, + "id": 20142, "properties": { "candles": "4", "lit": "true", @@ -129375,7 +144454,7 @@ } }, { - "id": 18359, + "id": 20143, "properties": { "candles": "4", "lit": "false", @@ -129383,7 +144462,7 @@ } }, { - "id": 18360, + "id": 20144, "properties": { "candles": "4", "lit": "false", @@ -129401,14 +144480,14 @@ }, "states": [ { - "id": 18589, + "id": 20373, "properties": { "lit": "true" } }, { "default": true, - "id": 18590, + "id": 20374, "properties": { "lit": "false" } @@ -129419,7 +144498,7 @@ "states": [ { "default": true, - "id": 8608 + "id": 10252 } ] }, @@ -129427,7 +144506,7 @@ "states": [ { "default": true, - "id": 10320 + "id": 12104 } ] }, @@ -129435,7 +144514,7 @@ "states": [ { "default": true, - "id": 10336 + "id": 12120 } ] }, @@ -129451,25 +144530,25 @@ "states": [ { "default": true, - "id": 10259, + "id": 12043, "properties": { "facing": "north" } }, { - "id": 10260, + "id": 12044, "properties": { "facing": "south" } }, { - "id": 10261, + "id": 12045, "properties": { "facing": "west" } }, { - "id": 10262, + "id": 12046, "properties": { "facing": "east" } @@ -129489,38 +144568,38 @@ }, "states": [ { - "id": 10165, + "id": 11949, "properties": { "facing": "north" } }, { - "id": 10166, + "id": 11950, "properties": { "facing": "east" } }, { - "id": 10167, + "id": 11951, "properties": { "facing": "south" } }, { - "id": 10168, + "id": 11952, "properties": { "facing": "west" } }, { "default": true, - "id": 10169, + "id": 11953, "properties": { "facing": "up" } }, { - "id": 10170, + "id": 11954, "properties": { "facing": "down" } @@ -129531,7 +144610,7 @@ "states": [ { "default": true, - "id": 4405 + "id": 5781 } ] }, @@ -129560,7 +144639,7 @@ }, "states": [ { - "id": 7524, + "id": 9008, "properties": { "east": "true", "north": "true", @@ -129570,7 +144649,7 @@ } }, { - "id": 7525, + "id": 9009, "properties": { "east": "true", "north": "true", @@ -129580,7 +144659,7 @@ } }, { - "id": 7526, + "id": 9010, "properties": { "east": "true", "north": "true", @@ -129590,7 +144669,7 @@ } }, { - "id": 7527, + "id": 9011, "properties": { "east": "true", "north": "true", @@ -129600,7 +144679,7 @@ } }, { - "id": 7528, + "id": 9012, "properties": { "east": "true", "north": "true", @@ -129610,7 +144689,7 @@ } }, { - "id": 7529, + "id": 9013, "properties": { "east": "true", "north": "true", @@ -129620,7 +144699,7 @@ } }, { - "id": 7530, + "id": 9014, "properties": { "east": "true", "north": "true", @@ -129630,7 +144709,7 @@ } }, { - "id": 7531, + "id": 9015, "properties": { "east": "true", "north": "true", @@ -129640,7 +144719,7 @@ } }, { - "id": 7532, + "id": 9016, "properties": { "east": "true", "north": "false", @@ -129650,7 +144729,7 @@ } }, { - "id": 7533, + "id": 9017, "properties": { "east": "true", "north": "false", @@ -129660,7 +144739,7 @@ } }, { - "id": 7534, + "id": 9018, "properties": { "east": "true", "north": "false", @@ -129670,7 +144749,7 @@ } }, { - "id": 7535, + "id": 9019, "properties": { "east": "true", "north": "false", @@ -129680,7 +144759,7 @@ } }, { - "id": 7536, + "id": 9020, "properties": { "east": "true", "north": "false", @@ -129690,7 +144769,7 @@ } }, { - "id": 7537, + "id": 9021, "properties": { "east": "true", "north": "false", @@ -129700,7 +144779,7 @@ } }, { - "id": 7538, + "id": 9022, "properties": { "east": "true", "north": "false", @@ -129710,7 +144789,7 @@ } }, { - "id": 7539, + "id": 9023, "properties": { "east": "true", "north": "false", @@ -129720,7 +144799,7 @@ } }, { - "id": 7540, + "id": 9024, "properties": { "east": "false", "north": "true", @@ -129730,7 +144809,7 @@ } }, { - "id": 7541, + "id": 9025, "properties": { "east": "false", "north": "true", @@ -129740,7 +144819,7 @@ } }, { - "id": 7542, + "id": 9026, "properties": { "east": "false", "north": "true", @@ -129750,7 +144829,7 @@ } }, { - "id": 7543, + "id": 9027, "properties": { "east": "false", "north": "true", @@ -129760,7 +144839,7 @@ } }, { - "id": 7544, + "id": 9028, "properties": { "east": "false", "north": "true", @@ -129770,7 +144849,7 @@ } }, { - "id": 7545, + "id": 9029, "properties": { "east": "false", "north": "true", @@ -129780,7 +144859,7 @@ } }, { - "id": 7546, + "id": 9030, "properties": { "east": "false", "north": "true", @@ -129790,7 +144869,7 @@ } }, { - "id": 7547, + "id": 9031, "properties": { "east": "false", "north": "true", @@ -129800,7 +144879,7 @@ } }, { - "id": 7548, + "id": 9032, "properties": { "east": "false", "north": "false", @@ -129810,7 +144889,7 @@ } }, { - "id": 7549, + "id": 9033, "properties": { "east": "false", "north": "false", @@ -129820,7 +144899,7 @@ } }, { - "id": 7550, + "id": 9034, "properties": { "east": "false", "north": "false", @@ -129830,7 +144909,7 @@ } }, { - "id": 7551, + "id": 9035, "properties": { "east": "false", "north": "false", @@ -129840,7 +144919,7 @@ } }, { - "id": 7552, + "id": 9036, "properties": { "east": "false", "north": "false", @@ -129850,7 +144929,7 @@ } }, { - "id": 7553, + "id": 9037, "properties": { "east": "false", "north": "false", @@ -129860,7 +144939,7 @@ } }, { - "id": 7554, + "id": 9038, "properties": { "east": "false", "north": "false", @@ -129871,7 +144950,7 @@ }, { "default": true, - "id": 7555, + "id": 9039, "properties": { "east": "false", "north": "false", @@ -129886,7 +144965,7 @@ "states": [ { "default": true, - "id": 7477 + "id": 8961 } ] }, @@ -129894,7 +144973,7 @@ "states": [ { "default": true, - "id": 1672 + "id": 2030 } ] }, @@ -129910,25 +144989,25 @@ "states": [ { "default": true, - "id": 8898, + "id": 10542, "properties": { "facing": "north" } }, { - "id": 8899, + "id": 10543, "properties": { "facing": "south" } }, { - "id": 8900, + "id": 10544, "properties": { "facing": "west" } }, { - "id": 8901, + "id": 10545, "properties": { "facing": "east" } @@ -129939,7 +145018,7 @@ "states": [ { "default": true, - "id": 1639 + "id": 1997 } ] }, @@ -129947,7 +145026,7 @@ "states": [ { "default": true, - "id": 1675 + "id": 2033 } ] }, @@ -129955,7 +145034,7 @@ "states": [ { "default": true, - "id": 18908 + "id": 20692 } ] }, @@ -129963,7 +145042,7 @@ "states": [ { "default": true, - "id": 18914 + "id": 20698 } ] }, @@ -129981,21 +145060,21 @@ }, "states": [ { - "id": 19238, + "id": 21022, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 19239, + "id": 21023, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 19240, + "id": 21024, "properties": { "type": "bottom", "waterlogged": "true" @@ -130003,21 +145082,21 @@ }, { "default": true, - "id": 19241, + "id": 21025, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 19242, + "id": 21026, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 19243, + "id": 21027, "properties": { "type": "double", "waterlogged": "false" @@ -130051,7 +145130,7 @@ }, "states": [ { - "id": 18918, + "id": 20702, "properties": { "facing": "north", "half": "top", @@ -130060,7 +145139,7 @@ } }, { - "id": 18919, + "id": 20703, "properties": { "facing": "north", "half": "top", @@ -130069,7 +145148,7 @@ } }, { - "id": 18920, + "id": 20704, "properties": { "facing": "north", "half": "top", @@ -130078,7 +145157,7 @@ } }, { - "id": 18921, + "id": 20705, "properties": { "facing": "north", "half": "top", @@ -130087,7 +145166,7 @@ } }, { - "id": 18922, + "id": 20706, "properties": { "facing": "north", "half": "top", @@ -130096,7 +145175,7 @@ } }, { - "id": 18923, + "id": 20707, "properties": { "facing": "north", "half": "top", @@ -130105,7 +145184,7 @@ } }, { - "id": 18924, + "id": 20708, "properties": { "facing": "north", "half": "top", @@ -130114,7 +145193,7 @@ } }, { - "id": 18925, + "id": 20709, "properties": { "facing": "north", "half": "top", @@ -130123,7 +145202,7 @@ } }, { - "id": 18926, + "id": 20710, "properties": { "facing": "north", "half": "top", @@ -130132,7 +145211,7 @@ } }, { - "id": 18927, + "id": 20711, "properties": { "facing": "north", "half": "top", @@ -130141,7 +145220,7 @@ } }, { - "id": 18928, + "id": 20712, "properties": { "facing": "north", "half": "bottom", @@ -130151,7 +145230,7 @@ }, { "default": true, - "id": 18929, + "id": 20713, "properties": { "facing": "north", "half": "bottom", @@ -130160,7 +145239,7 @@ } }, { - "id": 18930, + "id": 20714, "properties": { "facing": "north", "half": "bottom", @@ -130169,7 +145248,7 @@ } }, { - "id": 18931, + "id": 20715, "properties": { "facing": "north", "half": "bottom", @@ -130178,7 +145257,7 @@ } }, { - "id": 18932, + "id": 20716, "properties": { "facing": "north", "half": "bottom", @@ -130187,7 +145266,7 @@ } }, { - "id": 18933, + "id": 20717, "properties": { "facing": "north", "half": "bottom", @@ -130196,7 +145275,7 @@ } }, { - "id": 18934, + "id": 20718, "properties": { "facing": "north", "half": "bottom", @@ -130205,7 +145284,7 @@ } }, { - "id": 18935, + "id": 20719, "properties": { "facing": "north", "half": "bottom", @@ -130214,7 +145293,7 @@ } }, { - "id": 18936, + "id": 20720, "properties": { "facing": "north", "half": "bottom", @@ -130223,7 +145302,7 @@ } }, { - "id": 18937, + "id": 20721, "properties": { "facing": "north", "half": "bottom", @@ -130232,7 +145311,7 @@ } }, { - "id": 18938, + "id": 20722, "properties": { "facing": "south", "half": "top", @@ -130241,7 +145320,7 @@ } }, { - "id": 18939, + "id": 20723, "properties": { "facing": "south", "half": "top", @@ -130250,7 +145329,7 @@ } }, { - "id": 18940, + "id": 20724, "properties": { "facing": "south", "half": "top", @@ -130259,7 +145338,7 @@ } }, { - "id": 18941, + "id": 20725, "properties": { "facing": "south", "half": "top", @@ -130268,7 +145347,7 @@ } }, { - "id": 18942, + "id": 20726, "properties": { "facing": "south", "half": "top", @@ -130277,7 +145356,7 @@ } }, { - "id": 18943, + "id": 20727, "properties": { "facing": "south", "half": "top", @@ -130286,7 +145365,7 @@ } }, { - "id": 18944, + "id": 20728, "properties": { "facing": "south", "half": "top", @@ -130295,7 +145374,7 @@ } }, { - "id": 18945, + "id": 20729, "properties": { "facing": "south", "half": "top", @@ -130304,7 +145383,7 @@ } }, { - "id": 18946, + "id": 20730, "properties": { "facing": "south", "half": "top", @@ -130313,7 +145392,7 @@ } }, { - "id": 18947, + "id": 20731, "properties": { "facing": "south", "half": "top", @@ -130322,7 +145401,7 @@ } }, { - "id": 18948, + "id": 20732, "properties": { "facing": "south", "half": "bottom", @@ -130331,7 +145410,7 @@ } }, { - "id": 18949, + "id": 20733, "properties": { "facing": "south", "half": "bottom", @@ -130340,7 +145419,7 @@ } }, { - "id": 18950, + "id": 20734, "properties": { "facing": "south", "half": "bottom", @@ -130349,7 +145428,7 @@ } }, { - "id": 18951, + "id": 20735, "properties": { "facing": "south", "half": "bottom", @@ -130358,7 +145437,7 @@ } }, { - "id": 18952, + "id": 20736, "properties": { "facing": "south", "half": "bottom", @@ -130367,7 +145446,7 @@ } }, { - "id": 18953, + "id": 20737, "properties": { "facing": "south", "half": "bottom", @@ -130376,7 +145455,7 @@ } }, { - "id": 18954, + "id": 20738, "properties": { "facing": "south", "half": "bottom", @@ -130385,7 +145464,7 @@ } }, { - "id": 18955, + "id": 20739, "properties": { "facing": "south", "half": "bottom", @@ -130394,7 +145473,7 @@ } }, { - "id": 18956, + "id": 20740, "properties": { "facing": "south", "half": "bottom", @@ -130403,7 +145482,7 @@ } }, { - "id": 18957, + "id": 20741, "properties": { "facing": "south", "half": "bottom", @@ -130412,7 +145491,7 @@ } }, { - "id": 18958, + "id": 20742, "properties": { "facing": "west", "half": "top", @@ -130421,7 +145500,7 @@ } }, { - "id": 18959, + "id": 20743, "properties": { "facing": "west", "half": "top", @@ -130430,7 +145509,7 @@ } }, { - "id": 18960, + "id": 20744, "properties": { "facing": "west", "half": "top", @@ -130439,7 +145518,7 @@ } }, { - "id": 18961, + "id": 20745, "properties": { "facing": "west", "half": "top", @@ -130448,7 +145527,7 @@ } }, { - "id": 18962, + "id": 20746, "properties": { "facing": "west", "half": "top", @@ -130457,7 +145536,7 @@ } }, { - "id": 18963, + "id": 20747, "properties": { "facing": "west", "half": "top", @@ -130466,7 +145545,7 @@ } }, { - "id": 18964, + "id": 20748, "properties": { "facing": "west", "half": "top", @@ -130475,7 +145554,7 @@ } }, { - "id": 18965, + "id": 20749, "properties": { "facing": "west", "half": "top", @@ -130484,7 +145563,7 @@ } }, { - "id": 18966, + "id": 20750, "properties": { "facing": "west", "half": "top", @@ -130493,7 +145572,7 @@ } }, { - "id": 18967, + "id": 20751, "properties": { "facing": "west", "half": "top", @@ -130502,7 +145581,7 @@ } }, { - "id": 18968, + "id": 20752, "properties": { "facing": "west", "half": "bottom", @@ -130511,7 +145590,7 @@ } }, { - "id": 18969, + "id": 20753, "properties": { "facing": "west", "half": "bottom", @@ -130520,7 +145599,7 @@ } }, { - "id": 18970, + "id": 20754, "properties": { "facing": "west", "half": "bottom", @@ -130529,7 +145608,7 @@ } }, { - "id": 18971, + "id": 20755, "properties": { "facing": "west", "half": "bottom", @@ -130538,7 +145617,7 @@ } }, { - "id": 18972, + "id": 20756, "properties": { "facing": "west", "half": "bottom", @@ -130547,7 +145626,7 @@ } }, { - "id": 18973, + "id": 20757, "properties": { "facing": "west", "half": "bottom", @@ -130556,7 +145635,7 @@ } }, { - "id": 18974, + "id": 20758, "properties": { "facing": "west", "half": "bottom", @@ -130565,7 +145644,7 @@ } }, { - "id": 18975, + "id": 20759, "properties": { "facing": "west", "half": "bottom", @@ -130574,7 +145653,7 @@ } }, { - "id": 18976, + "id": 20760, "properties": { "facing": "west", "half": "bottom", @@ -130583,7 +145662,7 @@ } }, { - "id": 18977, + "id": 20761, "properties": { "facing": "west", "half": "bottom", @@ -130592,7 +145671,7 @@ } }, { - "id": 18978, + "id": 20762, "properties": { "facing": "east", "half": "top", @@ -130601,7 +145680,7 @@ } }, { - "id": 18979, + "id": 20763, "properties": { "facing": "east", "half": "top", @@ -130610,7 +145689,7 @@ } }, { - "id": 18980, + "id": 20764, "properties": { "facing": "east", "half": "top", @@ -130619,7 +145698,7 @@ } }, { - "id": 18981, + "id": 20765, "properties": { "facing": "east", "half": "top", @@ -130628,7 +145707,7 @@ } }, { - "id": 18982, + "id": 20766, "properties": { "facing": "east", "half": "top", @@ -130637,7 +145716,7 @@ } }, { - "id": 18983, + "id": 20767, "properties": { "facing": "east", "half": "top", @@ -130646,7 +145725,7 @@ } }, { - "id": 18984, + "id": 20768, "properties": { "facing": "east", "half": "top", @@ -130655,7 +145734,7 @@ } }, { - "id": 18985, + "id": 20769, "properties": { "facing": "east", "half": "top", @@ -130664,7 +145743,7 @@ } }, { - "id": 18986, + "id": 20770, "properties": { "facing": "east", "half": "top", @@ -130673,7 +145752,7 @@ } }, { - "id": 18987, + "id": 20771, "properties": { "facing": "east", "half": "top", @@ -130682,7 +145761,7 @@ } }, { - "id": 18988, + "id": 20772, "properties": { "facing": "east", "half": "bottom", @@ -130691,7 +145770,7 @@ } }, { - "id": 18989, + "id": 20773, "properties": { "facing": "east", "half": "bottom", @@ -130700,7 +145779,7 @@ } }, { - "id": 18990, + "id": 20774, "properties": { "facing": "east", "half": "bottom", @@ -130709,7 +145788,7 @@ } }, { - "id": 18991, + "id": 20775, "properties": { "facing": "east", "half": "bottom", @@ -130718,7 +145797,7 @@ } }, { - "id": 18992, + "id": 20776, "properties": { "facing": "east", "half": "bottom", @@ -130727,7 +145806,7 @@ } }, { - "id": 18993, + "id": 20777, "properties": { "facing": "east", "half": "bottom", @@ -130736,7 +145815,7 @@ } }, { - "id": 18994, + "id": 20778, "properties": { "facing": "east", "half": "bottom", @@ -130745,7 +145824,7 @@ } }, { - "id": 18995, + "id": 20779, "properties": { "facing": "east", "half": "bottom", @@ -130754,7 +145833,7 @@ } }, { - "id": 18996, + "id": 20780, "properties": { "facing": "east", "half": "bottom", @@ -130763,7 +145842,7 @@ } }, { - "id": 18997, + "id": 20781, "properties": { "facing": "east", "half": "bottom", @@ -130777,7 +145856,7 @@ "states": [ { "default": true, - "id": 8625 + "id": 10269 } ] }, @@ -130785,7 +145864,7 @@ "states": [ { "default": true, - "id": 4872 + "id": 6312 } ] }, @@ -130799,20 +145878,20 @@ }, "states": [ { - "id": 21443, + "id": 23227, "properties": { "axis": "x" } }, { "default": true, - "id": 21444, + "id": 23228, "properties": { "axis": "y" } }, { - "id": 21445, + "id": 23229, "properties": { "axis": "z" } @@ -130828,14 +145907,14 @@ }, "states": [ { - "id": 8632, + "id": 10276, "properties": { "half": "upper" } }, { "default": true, - "id": 8633, + "id": 10277, "properties": { "half": "lower" } @@ -130856,21 +145935,21 @@ }, "states": [ { - "id": 9107, + "id": 10763, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 9108, + "id": 10764, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 9109, + "id": 10765, "properties": { "type": "bottom", "waterlogged": "true" @@ -130878,21 +145957,21 @@ }, { "default": true, - "id": 9110, + "id": 10766, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 9111, + "id": 10767, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 9112, + "id": 10768, "properties": { "type": "double", "waterlogged": "false" @@ -130900,6 +145979,164 @@ } ] }, + "minecraft:piglin_head": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 8691, + "properties": { + "rotation": "0" + } + }, + { + "id": 8692, + "properties": { + "rotation": "1" + } + }, + { + "id": 8693, + "properties": { + "rotation": "2" + } + }, + { + "id": 8694, + "properties": { + "rotation": "3" + } + }, + { + "id": 8695, + "properties": { + "rotation": "4" + } + }, + { + "id": 8696, + "properties": { + "rotation": "5" + } + }, + { + "id": 8697, + "properties": { + "rotation": "6" + } + }, + { + "id": 8698, + "properties": { + "rotation": "7" + } + }, + { + "id": 8699, + "properties": { + "rotation": "8" + } + }, + { + "id": 8700, + "properties": { + "rotation": "9" + } + }, + { + "id": 8701, + "properties": { + "rotation": "10" + } + }, + { + "id": 8702, + "properties": { + "rotation": "11" + } + }, + { + "id": 8703, + "properties": { + "rotation": "12" + } + }, + { + "id": 8704, + "properties": { + "rotation": "13" + } + }, + { + "id": 8705, + "properties": { + "rotation": "14" + } + }, + { + "id": 8706, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:piglin_wall_head": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8707, + "properties": { + "facing": "north" + } + }, + { + "id": 8708, + "properties": { + "facing": "south" + } + }, + { + "id": 8709, + "properties": { + "facing": "west" + } + }, + { + "id": 8710, + "properties": { + "facing": "east" + } + } + ] + }, "minecraft:pink_banner": { "properties": { "rotation": [ @@ -130924,97 +146161,97 @@ "states": [ { "default": true, - "id": 8734, + "id": 10378, "properties": { "rotation": "0" } }, { - "id": 8735, + "id": 10379, "properties": { "rotation": "1" } }, { - "id": 8736, + "id": 10380, "properties": { "rotation": "2" } }, { - "id": 8737, + "id": 10381, "properties": { "rotation": "3" } }, { - "id": 8738, + "id": 10382, "properties": { "rotation": "4" } }, { - "id": 8739, + "id": 10383, "properties": { "rotation": "5" } }, { - "id": 8740, + "id": 10384, "properties": { "rotation": "6" } }, { - "id": 8741, + "id": 10385, "properties": { "rotation": "7" } }, { - "id": 8742, + "id": 10386, "properties": { "rotation": "8" } }, { - "id": 8743, + "id": 10387, "properties": { "rotation": "9" } }, { - "id": 8744, + "id": 10388, "properties": { "rotation": "10" } }, { - "id": 8745, + "id": 10389, "properties": { "rotation": "11" } }, { - "id": 8746, + "id": 10390, "properties": { "rotation": "12" } }, { - "id": 8747, + "id": 10391, "properties": { "rotation": "13" } }, { - "id": 8748, + "id": 10392, "properties": { "rotation": "14" } }, { - "id": 8749, + "id": 10393, "properties": { "rotation": "15" } @@ -131040,7 +146277,7 @@ }, "states": [ { - "id": 1375, + "id": 1733, "properties": { "facing": "north", "occupied": "true", @@ -131048,7 +146285,7 @@ } }, { - "id": 1376, + "id": 1734, "properties": { "facing": "north", "occupied": "true", @@ -131056,7 +146293,7 @@ } }, { - "id": 1377, + "id": 1735, "properties": { "facing": "north", "occupied": "false", @@ -131065,7 +146302,7 @@ }, { "default": true, - "id": 1378, + "id": 1736, "properties": { "facing": "north", "occupied": "false", @@ -131073,7 +146310,7 @@ } }, { - "id": 1379, + "id": 1737, "properties": { "facing": "south", "occupied": "true", @@ -131081,7 +146318,7 @@ } }, { - "id": 1380, + "id": 1738, "properties": { "facing": "south", "occupied": "true", @@ -131089,7 +146326,7 @@ } }, { - "id": 1381, + "id": 1739, "properties": { "facing": "south", "occupied": "false", @@ -131097,7 +146334,7 @@ } }, { - "id": 1382, + "id": 1740, "properties": { "facing": "south", "occupied": "false", @@ -131105,7 +146342,7 @@ } }, { - "id": 1383, + "id": 1741, "properties": { "facing": "west", "occupied": "true", @@ -131113,7 +146350,7 @@ } }, { - "id": 1384, + "id": 1742, "properties": { "facing": "west", "occupied": "true", @@ -131121,7 +146358,7 @@ } }, { - "id": 1385, + "id": 1743, "properties": { "facing": "west", "occupied": "false", @@ -131129,7 +146366,7 @@ } }, { - "id": 1386, + "id": 1744, "properties": { "facing": "west", "occupied": "false", @@ -131137,7 +146374,7 @@ } }, { - "id": 1387, + "id": 1745, "properties": { "facing": "east", "occupied": "true", @@ -131145,7 +146382,7 @@ } }, { - "id": 1388, + "id": 1746, "properties": { "facing": "east", "occupied": "true", @@ -131153,7 +146390,7 @@ } }, { - "id": 1389, + "id": 1747, "properties": { "facing": "east", "occupied": "false", @@ -131161,7 +146398,7 @@ } }, { - "id": 1390, + "id": 1748, "properties": { "facing": "east", "occupied": "false", @@ -131189,7 +146426,7 @@ }, "states": [ { - "id": 18425, + "id": 20209, "properties": { "candles": "1", "lit": "true", @@ -131197,7 +146434,7 @@ } }, { - "id": 18426, + "id": 20210, "properties": { "candles": "1", "lit": "true", @@ -131205,7 +146442,7 @@ } }, { - "id": 18427, + "id": 20211, "properties": { "candles": "1", "lit": "false", @@ -131214,7 +146451,7 @@ }, { "default": true, - "id": 18428, + "id": 20212, "properties": { "candles": "1", "lit": "false", @@ -131222,7 +146459,7 @@ } }, { - "id": 18429, + "id": 20213, "properties": { "candles": "2", "lit": "true", @@ -131230,7 +146467,7 @@ } }, { - "id": 18430, + "id": 20214, "properties": { "candles": "2", "lit": "true", @@ -131238,7 +146475,7 @@ } }, { - "id": 18431, + "id": 20215, "properties": { "candles": "2", "lit": "false", @@ -131246,7 +146483,7 @@ } }, { - "id": 18432, + "id": 20216, "properties": { "candles": "2", "lit": "false", @@ -131254,7 +146491,7 @@ } }, { - "id": 18433, + "id": 20217, "properties": { "candles": "3", "lit": "true", @@ -131262,7 +146499,7 @@ } }, { - "id": 18434, + "id": 20218, "properties": { "candles": "3", "lit": "true", @@ -131270,7 +146507,7 @@ } }, { - "id": 18435, + "id": 20219, "properties": { "candles": "3", "lit": "false", @@ -131278,7 +146515,7 @@ } }, { - "id": 18436, + "id": 20220, "properties": { "candles": "3", "lit": "false", @@ -131286,7 +146523,7 @@ } }, { - "id": 18437, + "id": 20221, "properties": { "candles": "4", "lit": "true", @@ -131294,7 +146531,7 @@ } }, { - "id": 18438, + "id": 20222, "properties": { "candles": "4", "lit": "true", @@ -131302,7 +146539,7 @@ } }, { - "id": 18439, + "id": 20223, "properties": { "candles": "4", "lit": "false", @@ -131310,7 +146547,7 @@ } }, { - "id": 18440, + "id": 20224, "properties": { "candles": "4", "lit": "false", @@ -131328,14 +146565,14 @@ }, "states": [ { - "id": 18599, + "id": 20383, "properties": { "lit": "true" } }, { "default": true, - "id": 18600, + "id": 20384, "properties": { "lit": "false" } @@ -131346,7 +146583,7 @@ "states": [ { "default": true, - "id": 8613 + "id": 10257 } ] }, @@ -131354,7 +146591,7 @@ "states": [ { "default": true, - "id": 10325 + "id": 12109 } ] }, @@ -131362,7 +146599,7 @@ "states": [ { "default": true, - "id": 10341 + "id": 12125 } ] }, @@ -131378,25 +146615,25 @@ "states": [ { "default": true, - "id": 10279, + "id": 12063, "properties": { "facing": "north" } }, { - "id": 10280, + "id": 12064, "properties": { "facing": "south" } }, { - "id": 10281, + "id": 12065, "properties": { "facing": "west" } }, { - "id": 10282, + "id": 12066, "properties": { "facing": "east" } @@ -131416,38 +146653,38 @@ }, "states": [ { - "id": 10195, + "id": 11979, "properties": { "facing": "north" } }, { - "id": 10196, + "id": 11980, "properties": { "facing": "east" } }, { - "id": 10197, + "id": 11981, "properties": { "facing": "south" } }, { - "id": 10198, + "id": 11982, "properties": { "facing": "west" } }, { "default": true, - "id": 10199, + "id": 11983, "properties": { "facing": "up" } }, { - "id": 10200, + "id": 11984, "properties": { "facing": "down" } @@ -131458,7 +146695,7 @@ "states": [ { "default": true, - "id": 4410 + "id": 5786 } ] }, @@ -131487,7 +146724,7 @@ }, "states": [ { - "id": 7684, + "id": 9168, "properties": { "east": "true", "north": "true", @@ -131497,7 +146734,7 @@ } }, { - "id": 7685, + "id": 9169, "properties": { "east": "true", "north": "true", @@ -131507,7 +146744,7 @@ } }, { - "id": 7686, + "id": 9170, "properties": { "east": "true", "north": "true", @@ -131517,7 +146754,7 @@ } }, { - "id": 7687, + "id": 9171, "properties": { "east": "true", "north": "true", @@ -131527,7 +146764,7 @@ } }, { - "id": 7688, + "id": 9172, "properties": { "east": "true", "north": "true", @@ -131537,7 +146774,7 @@ } }, { - "id": 7689, + "id": 9173, "properties": { "east": "true", "north": "true", @@ -131547,7 +146784,7 @@ } }, { - "id": 7690, + "id": 9174, "properties": { "east": "true", "north": "true", @@ -131557,7 +146794,7 @@ } }, { - "id": 7691, + "id": 9175, "properties": { "east": "true", "north": "true", @@ -131567,7 +146804,7 @@ } }, { - "id": 7692, + "id": 9176, "properties": { "east": "true", "north": "false", @@ -131577,7 +146814,7 @@ } }, { - "id": 7693, + "id": 9177, "properties": { "east": "true", "north": "false", @@ -131587,7 +146824,7 @@ } }, { - "id": 7694, + "id": 9178, "properties": { "east": "true", "north": "false", @@ -131597,7 +146834,7 @@ } }, { - "id": 7695, + "id": 9179, "properties": { "east": "true", "north": "false", @@ -131607,7 +146844,7 @@ } }, { - "id": 7696, + "id": 9180, "properties": { "east": "true", "north": "false", @@ -131617,7 +146854,7 @@ } }, { - "id": 7697, + "id": 9181, "properties": { "east": "true", "north": "false", @@ -131627,7 +146864,7 @@ } }, { - "id": 7698, + "id": 9182, "properties": { "east": "true", "north": "false", @@ -131637,7 +146874,7 @@ } }, { - "id": 7699, + "id": 9183, "properties": { "east": "true", "north": "false", @@ -131647,7 +146884,7 @@ } }, { - "id": 7700, + "id": 9184, "properties": { "east": "false", "north": "true", @@ -131657,7 +146894,7 @@ } }, { - "id": 7701, + "id": 9185, "properties": { "east": "false", "north": "true", @@ -131667,7 +146904,7 @@ } }, { - "id": 7702, + "id": 9186, "properties": { "east": "false", "north": "true", @@ -131677,7 +146914,7 @@ } }, { - "id": 7703, + "id": 9187, "properties": { "east": "false", "north": "true", @@ -131687,7 +146924,7 @@ } }, { - "id": 7704, + "id": 9188, "properties": { "east": "false", "north": "true", @@ -131697,7 +146934,7 @@ } }, { - "id": 7705, + "id": 9189, "properties": { "east": "false", "north": "true", @@ -131707,7 +146944,7 @@ } }, { - "id": 7706, + "id": 9190, "properties": { "east": "false", "north": "true", @@ -131717,7 +146954,7 @@ } }, { - "id": 7707, + "id": 9191, "properties": { "east": "false", "north": "true", @@ -131727,7 +146964,7 @@ } }, { - "id": 7708, + "id": 9192, "properties": { "east": "false", "north": "false", @@ -131737,7 +146974,7 @@ } }, { - "id": 7709, + "id": 9193, "properties": { "east": "false", "north": "false", @@ -131747,7 +146984,7 @@ } }, { - "id": 7710, + "id": 9194, "properties": { "east": "false", "north": "false", @@ -131757,7 +146994,7 @@ } }, { - "id": 7711, + "id": 9195, "properties": { "east": "false", "north": "false", @@ -131767,7 +147004,7 @@ } }, { - "id": 7712, + "id": 9196, "properties": { "east": "false", "north": "false", @@ -131777,7 +147014,7 @@ } }, { - "id": 7713, + "id": 9197, "properties": { "east": "false", "north": "false", @@ -131787,7 +147024,7 @@ } }, { - "id": 7714, + "id": 9198, "properties": { "east": "false", "north": "false", @@ -131798,7 +147035,7 @@ }, { "default": true, - "id": 7715, + "id": 9199, "properties": { "east": "false", "north": "false", @@ -131813,7 +147050,7 @@ "states": [ { "default": true, - "id": 7482 + "id": 8966 } ] }, @@ -131821,7 +147058,7 @@ "states": [ { "default": true, - "id": 1674 + "id": 2032 } ] }, @@ -131837,25 +147074,25 @@ "states": [ { "default": true, - "id": 8918, + "id": 10562, "properties": { "facing": "north" } }, { - "id": 8919, + "id": 10563, "properties": { "facing": "south" } }, { - "id": 8920, + "id": 10564, "properties": { "facing": "west" } }, { - "id": 8921, + "id": 10565, "properties": { "facing": "east" } @@ -131866,7 +147103,7 @@ "states": [ { "default": true, - "id": 1644 + "id": 2002 } ] }, @@ -131887,42 +147124,42 @@ }, "states": [ { - "id": 1602, + "id": 1960, "properties": { "extended": "true", "facing": "north" } }, { - "id": 1603, + "id": 1961, "properties": { "extended": "true", "facing": "east" } }, { - "id": 1604, + "id": 1962, "properties": { "extended": "true", "facing": "south" } }, { - "id": 1605, + "id": 1963, "properties": { "extended": "true", "facing": "west" } }, { - "id": 1606, + "id": 1964, "properties": { "extended": "true", "facing": "up" } }, { - "id": 1607, + "id": 1965, "properties": { "extended": "true", "facing": "down" @@ -131930,42 +147167,42 @@ }, { "default": true, - "id": 1608, + "id": 1966, "properties": { "extended": "false", "facing": "north" } }, { - "id": 1609, + "id": 1967, "properties": { "extended": "false", "facing": "east" } }, { - "id": 1610, + "id": 1968, "properties": { "extended": "false", "facing": "south" } }, { - "id": 1611, + "id": 1969, "properties": { "extended": "false", "facing": "west" } }, { - "id": 1612, + "id": 1970, "properties": { "extended": "false", "facing": "up" } }, { - "id": 1613, + "id": 1971, "properties": { "extended": "false", "facing": "down" @@ -131994,7 +147231,7 @@ }, "states": [ { - "id": 1614, + "id": 1972, "properties": { "type": "normal", "facing": "north", @@ -132002,7 +147239,7 @@ } }, { - "id": 1615, + "id": 1973, "properties": { "type": "sticky", "facing": "north", @@ -132011,7 +147248,7 @@ }, { "default": true, - "id": 1616, + "id": 1974, "properties": { "type": "normal", "facing": "north", @@ -132019,7 +147256,7 @@ } }, { - "id": 1617, + "id": 1975, "properties": { "type": "sticky", "facing": "north", @@ -132027,7 +147264,7 @@ } }, { - "id": 1618, + "id": 1976, "properties": { "type": "normal", "facing": "east", @@ -132035,7 +147272,7 @@ } }, { - "id": 1619, + "id": 1977, "properties": { "type": "sticky", "facing": "east", @@ -132043,7 +147280,7 @@ } }, { - "id": 1620, + "id": 1978, "properties": { "type": "normal", "facing": "east", @@ -132051,7 +147288,7 @@ } }, { - "id": 1621, + "id": 1979, "properties": { "type": "sticky", "facing": "east", @@ -132059,7 +147296,7 @@ } }, { - "id": 1622, + "id": 1980, "properties": { "type": "normal", "facing": "south", @@ -132067,7 +147304,7 @@ } }, { - "id": 1623, + "id": 1981, "properties": { "type": "sticky", "facing": "south", @@ -132075,7 +147312,7 @@ } }, { - "id": 1624, + "id": 1982, "properties": { "type": "normal", "facing": "south", @@ -132083,7 +147320,7 @@ } }, { - "id": 1625, + "id": 1983, "properties": { "type": "sticky", "facing": "south", @@ -132091,7 +147328,7 @@ } }, { - "id": 1626, + "id": 1984, "properties": { "type": "normal", "facing": "west", @@ -132099,7 +147336,7 @@ } }, { - "id": 1627, + "id": 1985, "properties": { "type": "sticky", "facing": "west", @@ -132107,7 +147344,7 @@ } }, { - "id": 1628, + "id": 1986, "properties": { "type": "normal", "facing": "west", @@ -132115,7 +147352,7 @@ } }, { - "id": 1629, + "id": 1987, "properties": { "type": "sticky", "facing": "west", @@ -132123,7 +147360,7 @@ } }, { - "id": 1630, + "id": 1988, "properties": { "type": "normal", "facing": "up", @@ -132131,7 +147368,7 @@ } }, { - "id": 1631, + "id": 1989, "properties": { "type": "sticky", "facing": "up", @@ -132139,7 +147376,7 @@ } }, { - "id": 1632, + "id": 1990, "properties": { "type": "normal", "facing": "up", @@ -132147,7 +147384,7 @@ } }, { - "id": 1633, + "id": 1991, "properties": { "type": "sticky", "facing": "up", @@ -132155,7 +147392,7 @@ } }, { - "id": 1634, + "id": 1992, "properties": { "type": "normal", "facing": "down", @@ -132163,7 +147400,7 @@ } }, { - "id": 1635, + "id": 1993, "properties": { "type": "sticky", "facing": "down", @@ -132171,7 +147408,7 @@ } }, { - "id": 1636, + "id": 1994, "properties": { "type": "normal", "facing": "down", @@ -132179,7 +147416,7 @@ } }, { - "id": 1637, + "id": 1995, "properties": { "type": "sticky", "facing": "down", @@ -132212,97 +147449,97 @@ "states": [ { "default": true, - "id": 7167, + "id": 8631, "properties": { "rotation": "0" } }, { - "id": 7168, + "id": 8632, "properties": { "rotation": "1" } }, { - "id": 7169, + "id": 8633, "properties": { "rotation": "2" } }, { - "id": 7170, + "id": 8634, "properties": { "rotation": "3" } }, { - "id": 7171, + "id": 8635, "properties": { "rotation": "4" } }, { - "id": 7172, + "id": 8636, "properties": { "rotation": "5" } }, { - "id": 7173, + "id": 8637, "properties": { "rotation": "6" } }, { - "id": 7174, + "id": 8638, "properties": { "rotation": "7" } }, { - "id": 7175, + "id": 8639, "properties": { "rotation": "8" } }, { - "id": 7176, + "id": 8640, "properties": { "rotation": "9" } }, { - "id": 7177, + "id": 8641, "properties": { "rotation": "10" } }, { - "id": 7178, + "id": 8642, "properties": { "rotation": "11" } }, { - "id": 7179, + "id": 8643, "properties": { "rotation": "12" } }, { - "id": 7180, + "id": 8644, "properties": { "rotation": "13" } }, { - "id": 7181, + "id": 8645, "properties": { "rotation": "14" } }, { - "id": 7182, + "id": 8646, "properties": { "rotation": "15" } @@ -132321,25 +147558,25 @@ "states": [ { "default": true, - "id": 7183, + "id": 8647, "properties": { "facing": "north" } }, { - "id": 7184, + "id": 8648, "properties": { "facing": "south" } }, { - "id": 7185, + "id": 8649, "properties": { "facing": "west" } }, { - "id": 7186, + "id": 8650, "properties": { "facing": "east" } @@ -132389,7 +147626,7 @@ }, "states": [ { - "id": 19638, + "id": 21422, "properties": { "thickness": "tip_merge", "vertical_direction": "up", @@ -132397,7 +147634,7 @@ } }, { - "id": 19639, + "id": 21423, "properties": { "thickness": "tip_merge", "vertical_direction": "up", @@ -132405,7 +147642,7 @@ } }, { - "id": 19640, + "id": 21424, "properties": { "thickness": "tip_merge", "vertical_direction": "down", @@ -132413,7 +147650,7 @@ } }, { - "id": 19641, + "id": 21425, "properties": { "thickness": "tip_merge", "vertical_direction": "down", @@ -132421,7 +147658,7 @@ } }, { - "id": 19642, + "id": 21426, "properties": { "thickness": "tip", "vertical_direction": "up", @@ -132430,7 +147667,7 @@ }, { "default": true, - "id": 19643, + "id": 21427, "properties": { "thickness": "tip", "vertical_direction": "up", @@ -132438,7 +147675,7 @@ } }, { - "id": 19644, + "id": 21428, "properties": { "thickness": "tip", "vertical_direction": "down", @@ -132446,7 +147683,7 @@ } }, { - "id": 19645, + "id": 21429, "properties": { "thickness": "tip", "vertical_direction": "down", @@ -132454,7 +147691,7 @@ } }, { - "id": 19646, + "id": 21430, "properties": { "thickness": "frustum", "vertical_direction": "up", @@ -132462,7 +147699,7 @@ } }, { - "id": 19647, + "id": 21431, "properties": { "thickness": "frustum", "vertical_direction": "up", @@ -132470,7 +147707,7 @@ } }, { - "id": 19648, + "id": 21432, "properties": { "thickness": "frustum", "vertical_direction": "down", @@ -132478,7 +147715,7 @@ } }, { - "id": 19649, + "id": 21433, "properties": { "thickness": "frustum", "vertical_direction": "down", @@ -132486,7 +147723,7 @@ } }, { - "id": 19650, + "id": 21434, "properties": { "thickness": "middle", "vertical_direction": "up", @@ -132494,7 +147731,7 @@ } }, { - "id": 19651, + "id": 21435, "properties": { "thickness": "middle", "vertical_direction": "up", @@ -132502,7 +147739,7 @@ } }, { - "id": 19652, + "id": 21436, "properties": { "thickness": "middle", "vertical_direction": "down", @@ -132510,7 +147747,7 @@ } }, { - "id": 19653, + "id": 21437, "properties": { "thickness": "middle", "vertical_direction": "down", @@ -132518,7 +147755,7 @@ } }, { - "id": 19654, + "id": 21438, "properties": { "thickness": "base", "vertical_direction": "up", @@ -132526,7 +147763,7 @@ } }, { - "id": 19655, + "id": 21439, "properties": { "thickness": "base", "vertical_direction": "up", @@ -132534,7 +147771,7 @@ } }, { - "id": 19656, + "id": 21440, "properties": { "thickness": "base", "vertical_direction": "down", @@ -132542,7 +147779,7 @@ } }, { - "id": 19657, + "id": 21441, "properties": { "thickness": "base", "vertical_direction": "down", @@ -132573,21 +147810,21 @@ }, "states": [ { - "id": 11736, + "id": 13520, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11737, + "id": 13521, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11738, + "id": 13522, "properties": { "type": "bottom", "waterlogged": "true" @@ -132595,21 +147832,21 @@ }, { "default": true, - "id": 11739, + "id": 13523, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11740, + "id": 13524, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11741, + "id": 13525, "properties": { "type": "double", "waterlogged": "false" @@ -132643,7 +147880,7 @@ }, "states": [ { - "id": 11510, + "id": 13294, "properties": { "facing": "north", "half": "top", @@ -132652,7 +147889,7 @@ } }, { - "id": 11511, + "id": 13295, "properties": { "facing": "north", "half": "top", @@ -132661,7 +147898,7 @@ } }, { - "id": 11512, + "id": 13296, "properties": { "facing": "north", "half": "top", @@ -132670,7 +147907,7 @@ } }, { - "id": 11513, + "id": 13297, "properties": { "facing": "north", "half": "top", @@ -132679,7 +147916,7 @@ } }, { - "id": 11514, + "id": 13298, "properties": { "facing": "north", "half": "top", @@ -132688,7 +147925,7 @@ } }, { - "id": 11515, + "id": 13299, "properties": { "facing": "north", "half": "top", @@ -132697,7 +147934,7 @@ } }, { - "id": 11516, + "id": 13300, "properties": { "facing": "north", "half": "top", @@ -132706,7 +147943,7 @@ } }, { - "id": 11517, + "id": 13301, "properties": { "facing": "north", "half": "top", @@ -132715,7 +147952,7 @@ } }, { - "id": 11518, + "id": 13302, "properties": { "facing": "north", "half": "top", @@ -132724,7 +147961,7 @@ } }, { - "id": 11519, + "id": 13303, "properties": { "facing": "north", "half": "top", @@ -132733,7 +147970,7 @@ } }, { - "id": 11520, + "id": 13304, "properties": { "facing": "north", "half": "bottom", @@ -132743,7 +147980,7 @@ }, { "default": true, - "id": 11521, + "id": 13305, "properties": { "facing": "north", "half": "bottom", @@ -132752,7 +147989,7 @@ } }, { - "id": 11522, + "id": 13306, "properties": { "facing": "north", "half": "bottom", @@ -132761,7 +147998,7 @@ } }, { - "id": 11523, + "id": 13307, "properties": { "facing": "north", "half": "bottom", @@ -132770,7 +148007,7 @@ } }, { - "id": 11524, + "id": 13308, "properties": { "facing": "north", "half": "bottom", @@ -132779,7 +148016,7 @@ } }, { - "id": 11525, + "id": 13309, "properties": { "facing": "north", "half": "bottom", @@ -132788,7 +148025,7 @@ } }, { - "id": 11526, + "id": 13310, "properties": { "facing": "north", "half": "bottom", @@ -132797,7 +148034,7 @@ } }, { - "id": 11527, + "id": 13311, "properties": { "facing": "north", "half": "bottom", @@ -132806,7 +148043,7 @@ } }, { - "id": 11528, + "id": 13312, "properties": { "facing": "north", "half": "bottom", @@ -132815,7 +148052,7 @@ } }, { - "id": 11529, + "id": 13313, "properties": { "facing": "north", "half": "bottom", @@ -132824,7 +148061,7 @@ } }, { - "id": 11530, + "id": 13314, "properties": { "facing": "south", "half": "top", @@ -132833,7 +148070,7 @@ } }, { - "id": 11531, + "id": 13315, "properties": { "facing": "south", "half": "top", @@ -132842,7 +148079,7 @@ } }, { - "id": 11532, + "id": 13316, "properties": { "facing": "south", "half": "top", @@ -132851,7 +148088,7 @@ } }, { - "id": 11533, + "id": 13317, "properties": { "facing": "south", "half": "top", @@ -132860,7 +148097,7 @@ } }, { - "id": 11534, + "id": 13318, "properties": { "facing": "south", "half": "top", @@ -132869,7 +148106,7 @@ } }, { - "id": 11535, + "id": 13319, "properties": { "facing": "south", "half": "top", @@ -132878,7 +148115,7 @@ } }, { - "id": 11536, + "id": 13320, "properties": { "facing": "south", "half": "top", @@ -132887,7 +148124,7 @@ } }, { - "id": 11537, + "id": 13321, "properties": { "facing": "south", "half": "top", @@ -132896,7 +148133,7 @@ } }, { - "id": 11538, + "id": 13322, "properties": { "facing": "south", "half": "top", @@ -132905,7 +148142,7 @@ } }, { - "id": 11539, + "id": 13323, "properties": { "facing": "south", "half": "top", @@ -132914,7 +148151,7 @@ } }, { - "id": 11540, + "id": 13324, "properties": { "facing": "south", "half": "bottom", @@ -132923,7 +148160,7 @@ } }, { - "id": 11541, + "id": 13325, "properties": { "facing": "south", "half": "bottom", @@ -132932,7 +148169,7 @@ } }, { - "id": 11542, + "id": 13326, "properties": { "facing": "south", "half": "bottom", @@ -132941,7 +148178,7 @@ } }, { - "id": 11543, + "id": 13327, "properties": { "facing": "south", "half": "bottom", @@ -132950,7 +148187,7 @@ } }, { - "id": 11544, + "id": 13328, "properties": { "facing": "south", "half": "bottom", @@ -132959,7 +148196,7 @@ } }, { - "id": 11545, + "id": 13329, "properties": { "facing": "south", "half": "bottom", @@ -132968,7 +148205,7 @@ } }, { - "id": 11546, + "id": 13330, "properties": { "facing": "south", "half": "bottom", @@ -132977,7 +148214,7 @@ } }, { - "id": 11547, + "id": 13331, "properties": { "facing": "south", "half": "bottom", @@ -132986,7 +148223,7 @@ } }, { - "id": 11548, + "id": 13332, "properties": { "facing": "south", "half": "bottom", @@ -132995,7 +148232,7 @@ } }, { - "id": 11549, + "id": 13333, "properties": { "facing": "south", "half": "bottom", @@ -133004,7 +148241,7 @@ } }, { - "id": 11550, + "id": 13334, "properties": { "facing": "west", "half": "top", @@ -133013,7 +148250,7 @@ } }, { - "id": 11551, + "id": 13335, "properties": { "facing": "west", "half": "top", @@ -133022,7 +148259,7 @@ } }, { - "id": 11552, + "id": 13336, "properties": { "facing": "west", "half": "top", @@ -133031,7 +148268,7 @@ } }, { - "id": 11553, + "id": 13337, "properties": { "facing": "west", "half": "top", @@ -133040,7 +148277,7 @@ } }, { - "id": 11554, + "id": 13338, "properties": { "facing": "west", "half": "top", @@ -133049,7 +148286,7 @@ } }, { - "id": 11555, + "id": 13339, "properties": { "facing": "west", "half": "top", @@ -133058,7 +148295,7 @@ } }, { - "id": 11556, + "id": 13340, "properties": { "facing": "west", "half": "top", @@ -133067,7 +148304,7 @@ } }, { - "id": 11557, + "id": 13341, "properties": { "facing": "west", "half": "top", @@ -133076,7 +148313,7 @@ } }, { - "id": 11558, + "id": 13342, "properties": { "facing": "west", "half": "top", @@ -133085,7 +148322,7 @@ } }, { - "id": 11559, + "id": 13343, "properties": { "facing": "west", "half": "top", @@ -133094,7 +148331,7 @@ } }, { - "id": 11560, + "id": 13344, "properties": { "facing": "west", "half": "bottom", @@ -133103,7 +148340,7 @@ } }, { - "id": 11561, + "id": 13345, "properties": { "facing": "west", "half": "bottom", @@ -133112,7 +148349,7 @@ } }, { - "id": 11562, + "id": 13346, "properties": { "facing": "west", "half": "bottom", @@ -133121,7 +148358,7 @@ } }, { - "id": 11563, + "id": 13347, "properties": { "facing": "west", "half": "bottom", @@ -133130,7 +148367,7 @@ } }, { - "id": 11564, + "id": 13348, "properties": { "facing": "west", "half": "bottom", @@ -133139,7 +148376,7 @@ } }, { - "id": 11565, + "id": 13349, "properties": { "facing": "west", "half": "bottom", @@ -133148,7 +148385,7 @@ } }, { - "id": 11566, + "id": 13350, "properties": { "facing": "west", "half": "bottom", @@ -133157,7 +148394,7 @@ } }, { - "id": 11567, + "id": 13351, "properties": { "facing": "west", "half": "bottom", @@ -133166,7 +148403,7 @@ } }, { - "id": 11568, + "id": 13352, "properties": { "facing": "west", "half": "bottom", @@ -133175,7 +148412,7 @@ } }, { - "id": 11569, + "id": 13353, "properties": { "facing": "west", "half": "bottom", @@ -133184,7 +148421,7 @@ } }, { - "id": 11570, + "id": 13354, "properties": { "facing": "east", "half": "top", @@ -133193,7 +148430,7 @@ } }, { - "id": 11571, + "id": 13355, "properties": { "facing": "east", "half": "top", @@ -133202,7 +148439,7 @@ } }, { - "id": 11572, + "id": 13356, "properties": { "facing": "east", "half": "top", @@ -133211,7 +148448,7 @@ } }, { - "id": 11573, + "id": 13357, "properties": { "facing": "east", "half": "top", @@ -133220,7 +148457,7 @@ } }, { - "id": 11574, + "id": 13358, "properties": { "facing": "east", "half": "top", @@ -133229,7 +148466,7 @@ } }, { - "id": 11575, + "id": 13359, "properties": { "facing": "east", "half": "top", @@ -133238,7 +148475,7 @@ } }, { - "id": 11576, + "id": 13360, "properties": { "facing": "east", "half": "top", @@ -133247,7 +148484,7 @@ } }, { - "id": 11577, + "id": 13361, "properties": { "facing": "east", "half": "top", @@ -133256,7 +148493,7 @@ } }, { - "id": 11578, + "id": 13362, "properties": { "facing": "east", "half": "top", @@ -133265,7 +148502,7 @@ } }, { - "id": 11579, + "id": 13363, "properties": { "facing": "east", "half": "top", @@ -133274,7 +148511,7 @@ } }, { - "id": 11580, + "id": 13364, "properties": { "facing": "east", "half": "bottom", @@ -133283,7 +148520,7 @@ } }, { - "id": 11581, + "id": 13365, "properties": { "facing": "east", "half": "bottom", @@ -133292,7 +148529,7 @@ } }, { - "id": 11582, + "id": 13366, "properties": { "facing": "east", "half": "bottom", @@ -133301,7 +148538,7 @@ } }, { - "id": 11583, + "id": 13367, "properties": { "facing": "east", "half": "bottom", @@ -133310,7 +148547,7 @@ } }, { - "id": 11584, + "id": 13368, "properties": { "facing": "east", "half": "bottom", @@ -133319,7 +148556,7 @@ } }, { - "id": 11585, + "id": 13369, "properties": { "facing": "east", "half": "bottom", @@ -133328,7 +148565,7 @@ } }, { - "id": 11586, + "id": 13370, "properties": { "facing": "east", "half": "bottom", @@ -133337,7 +148574,7 @@ } }, { - "id": 11587, + "id": 13371, "properties": { "facing": "east", "half": "bottom", @@ -133346,7 +148583,7 @@ } }, { - "id": 11588, + "id": 13372, "properties": { "facing": "east", "half": "bottom", @@ -133355,7 +148592,7 @@ } }, { - "id": 11589, + "id": 13373, "properties": { "facing": "east", "half": "bottom", @@ -133375,20 +148612,20 @@ }, "states": [ { - "id": 4314, + "id": 5690, "properties": { "axis": "x" } }, { "default": true, - "id": 4315, + "id": 5691, "properties": { "axis": "y" } }, { - "id": 4316, + "id": 5692, "properties": { "axis": "z" } @@ -133399,7 +148636,7 @@ "states": [ { "default": true, - "id": 17459 + "id": 19243 } ] }, @@ -133417,21 +148654,21 @@ }, "states": [ { - "id": 17463, + "id": 19247, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 17464, + "id": 19248, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 17465, + "id": 19249, "properties": { "type": "bottom", "waterlogged": "true" @@ -133439,21 +148676,21 @@ }, { "default": true, - "id": 17466, + "id": 19250, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 17467, + "id": 19251, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 17468, + "id": 19252, "properties": { "type": "double", "waterlogged": "false" @@ -133487,7 +148724,7 @@ }, "states": [ { - "id": 17469, + "id": 19253, "properties": { "facing": "north", "half": "top", @@ -133496,7 +148733,7 @@ } }, { - "id": 17470, + "id": 19254, "properties": { "facing": "north", "half": "top", @@ -133505,7 +148742,7 @@ } }, { - "id": 17471, + "id": 19255, "properties": { "facing": "north", "half": "top", @@ -133514,7 +148751,7 @@ } }, { - "id": 17472, + "id": 19256, "properties": { "facing": "north", "half": "top", @@ -133523,7 +148760,7 @@ } }, { - "id": 17473, + "id": 19257, "properties": { "facing": "north", "half": "top", @@ -133532,7 +148769,7 @@ } }, { - "id": 17474, + "id": 19258, "properties": { "facing": "north", "half": "top", @@ -133541,7 +148778,7 @@ } }, { - "id": 17475, + "id": 19259, "properties": { "facing": "north", "half": "top", @@ -133550,7 +148787,7 @@ } }, { - "id": 17476, + "id": 19260, "properties": { "facing": "north", "half": "top", @@ -133559,7 +148796,7 @@ } }, { - "id": 17477, + "id": 19261, "properties": { "facing": "north", "half": "top", @@ -133568,7 +148805,7 @@ } }, { - "id": 17478, + "id": 19262, "properties": { "facing": "north", "half": "top", @@ -133577,7 +148814,7 @@ } }, { - "id": 17479, + "id": 19263, "properties": { "facing": "north", "half": "bottom", @@ -133587,7 +148824,7 @@ }, { "default": true, - "id": 17480, + "id": 19264, "properties": { "facing": "north", "half": "bottom", @@ -133596,7 +148833,7 @@ } }, { - "id": 17481, + "id": 19265, "properties": { "facing": "north", "half": "bottom", @@ -133605,7 +148842,7 @@ } }, { - "id": 17482, + "id": 19266, "properties": { "facing": "north", "half": "bottom", @@ -133614,7 +148851,7 @@ } }, { - "id": 17483, + "id": 19267, "properties": { "facing": "north", "half": "bottom", @@ -133623,7 +148860,7 @@ } }, { - "id": 17484, + "id": 19268, "properties": { "facing": "north", "half": "bottom", @@ -133632,7 +148869,7 @@ } }, { - "id": 17485, + "id": 19269, "properties": { "facing": "north", "half": "bottom", @@ -133641,7 +148878,7 @@ } }, { - "id": 17486, + "id": 19270, "properties": { "facing": "north", "half": "bottom", @@ -133650,7 +148887,7 @@ } }, { - "id": 17487, + "id": 19271, "properties": { "facing": "north", "half": "bottom", @@ -133659,7 +148896,7 @@ } }, { - "id": 17488, + "id": 19272, "properties": { "facing": "north", "half": "bottom", @@ -133668,7 +148905,7 @@ } }, { - "id": 17489, + "id": 19273, "properties": { "facing": "south", "half": "top", @@ -133677,7 +148914,7 @@ } }, { - "id": 17490, + "id": 19274, "properties": { "facing": "south", "half": "top", @@ -133686,7 +148923,7 @@ } }, { - "id": 17491, + "id": 19275, "properties": { "facing": "south", "half": "top", @@ -133695,7 +148932,7 @@ } }, { - "id": 17492, + "id": 19276, "properties": { "facing": "south", "half": "top", @@ -133704,7 +148941,7 @@ } }, { - "id": 17493, + "id": 19277, "properties": { "facing": "south", "half": "top", @@ -133713,7 +148950,7 @@ } }, { - "id": 17494, + "id": 19278, "properties": { "facing": "south", "half": "top", @@ -133722,7 +148959,7 @@ } }, { - "id": 17495, + "id": 19279, "properties": { "facing": "south", "half": "top", @@ -133731,7 +148968,7 @@ } }, { - "id": 17496, + "id": 19280, "properties": { "facing": "south", "half": "top", @@ -133740,7 +148977,7 @@ } }, { - "id": 17497, + "id": 19281, "properties": { "facing": "south", "half": "top", @@ -133749,7 +148986,7 @@ } }, { - "id": 17498, + "id": 19282, "properties": { "facing": "south", "half": "top", @@ -133758,7 +148995,7 @@ } }, { - "id": 17499, + "id": 19283, "properties": { "facing": "south", "half": "bottom", @@ -133767,7 +149004,7 @@ } }, { - "id": 17500, + "id": 19284, "properties": { "facing": "south", "half": "bottom", @@ -133776,7 +149013,7 @@ } }, { - "id": 17501, + "id": 19285, "properties": { "facing": "south", "half": "bottom", @@ -133785,7 +149022,7 @@ } }, { - "id": 17502, + "id": 19286, "properties": { "facing": "south", "half": "bottom", @@ -133794,7 +149031,7 @@ } }, { - "id": 17503, + "id": 19287, "properties": { "facing": "south", "half": "bottom", @@ -133803,7 +149040,7 @@ } }, { - "id": 17504, + "id": 19288, "properties": { "facing": "south", "half": "bottom", @@ -133812,7 +149049,7 @@ } }, { - "id": 17505, + "id": 19289, "properties": { "facing": "south", "half": "bottom", @@ -133821,7 +149058,7 @@ } }, { - "id": 17506, + "id": 19290, "properties": { "facing": "south", "half": "bottom", @@ -133830,7 +149067,7 @@ } }, { - "id": 17507, + "id": 19291, "properties": { "facing": "south", "half": "bottom", @@ -133839,7 +149076,7 @@ } }, { - "id": 17508, + "id": 19292, "properties": { "facing": "south", "half": "bottom", @@ -133848,7 +149085,7 @@ } }, { - "id": 17509, + "id": 19293, "properties": { "facing": "west", "half": "top", @@ -133857,7 +149094,7 @@ } }, { - "id": 17510, + "id": 19294, "properties": { "facing": "west", "half": "top", @@ -133866,7 +149103,7 @@ } }, { - "id": 17511, + "id": 19295, "properties": { "facing": "west", "half": "top", @@ -133875,7 +149112,7 @@ } }, { - "id": 17512, + "id": 19296, "properties": { "facing": "west", "half": "top", @@ -133884,7 +149121,7 @@ } }, { - "id": 17513, + "id": 19297, "properties": { "facing": "west", "half": "top", @@ -133893,7 +149130,7 @@ } }, { - "id": 17514, + "id": 19298, "properties": { "facing": "west", "half": "top", @@ -133902,7 +149139,7 @@ } }, { - "id": 17515, + "id": 19299, "properties": { "facing": "west", "half": "top", @@ -133911,7 +149148,7 @@ } }, { - "id": 17516, + "id": 19300, "properties": { "facing": "west", "half": "top", @@ -133920,7 +149157,7 @@ } }, { - "id": 17517, + "id": 19301, "properties": { "facing": "west", "half": "top", @@ -133929,7 +149166,7 @@ } }, { - "id": 17518, + "id": 19302, "properties": { "facing": "west", "half": "top", @@ -133938,7 +149175,7 @@ } }, { - "id": 17519, + "id": 19303, "properties": { "facing": "west", "half": "bottom", @@ -133947,7 +149184,7 @@ } }, { - "id": 17520, + "id": 19304, "properties": { "facing": "west", "half": "bottom", @@ -133956,7 +149193,7 @@ } }, { - "id": 17521, + "id": 19305, "properties": { "facing": "west", "half": "bottom", @@ -133965,7 +149202,7 @@ } }, { - "id": 17522, + "id": 19306, "properties": { "facing": "west", "half": "bottom", @@ -133974,7 +149211,7 @@ } }, { - "id": 17523, + "id": 19307, "properties": { "facing": "west", "half": "bottom", @@ -133983,7 +149220,7 @@ } }, { - "id": 17524, + "id": 19308, "properties": { "facing": "west", "half": "bottom", @@ -133992,7 +149229,7 @@ } }, { - "id": 17525, + "id": 19309, "properties": { "facing": "west", "half": "bottom", @@ -134001,7 +149238,7 @@ } }, { - "id": 17526, + "id": 19310, "properties": { "facing": "west", "half": "bottom", @@ -134010,7 +149247,7 @@ } }, { - "id": 17527, + "id": 19311, "properties": { "facing": "west", "half": "bottom", @@ -134019,7 +149256,7 @@ } }, { - "id": 17528, + "id": 19312, "properties": { "facing": "west", "half": "bottom", @@ -134028,7 +149265,7 @@ } }, { - "id": 17529, + "id": 19313, "properties": { "facing": "east", "half": "top", @@ -134037,7 +149274,7 @@ } }, { - "id": 17530, + "id": 19314, "properties": { "facing": "east", "half": "top", @@ -134046,7 +149283,7 @@ } }, { - "id": 17531, + "id": 19315, "properties": { "facing": "east", "half": "top", @@ -134055,7 +149292,7 @@ } }, { - "id": 17532, + "id": 19316, "properties": { "facing": "east", "half": "top", @@ -134064,7 +149301,7 @@ } }, { - "id": 17533, + "id": 19317, "properties": { "facing": "east", "half": "top", @@ -134073,7 +149310,7 @@ } }, { - "id": 17534, + "id": 19318, "properties": { "facing": "east", "half": "top", @@ -134082,7 +149319,7 @@ } }, { - "id": 17535, + "id": 19319, "properties": { "facing": "east", "half": "top", @@ -134091,7 +149328,7 @@ } }, { - "id": 17536, + "id": 19320, "properties": { "facing": "east", "half": "top", @@ -134100,7 +149337,7 @@ } }, { - "id": 17537, + "id": 19321, "properties": { "facing": "east", "half": "top", @@ -134109,7 +149346,7 @@ } }, { - "id": 17538, + "id": 19322, "properties": { "facing": "east", "half": "top", @@ -134118,7 +149355,7 @@ } }, { - "id": 17539, + "id": 19323, "properties": { "facing": "east", "half": "bottom", @@ -134127,7 +149364,7 @@ } }, { - "id": 17540, + "id": 19324, "properties": { "facing": "east", "half": "bottom", @@ -134136,7 +149373,7 @@ } }, { - "id": 17541, + "id": 19325, "properties": { "facing": "east", "half": "bottom", @@ -134145,7 +149382,7 @@ } }, { - "id": 17542, + "id": 19326, "properties": { "facing": "east", "half": "bottom", @@ -134154,7 +149391,7 @@ } }, { - "id": 17543, + "id": 19327, "properties": { "facing": "east", "half": "bottom", @@ -134163,7 +149400,7 @@ } }, { - "id": 17544, + "id": 19328, "properties": { "facing": "east", "half": "bottom", @@ -134172,7 +149409,7 @@ } }, { - "id": 17545, + "id": 19329, "properties": { "facing": "east", "half": "bottom", @@ -134181,7 +149418,7 @@ } }, { - "id": 17546, + "id": 19330, "properties": { "facing": "east", "half": "bottom", @@ -134190,7 +149427,7 @@ } }, { - "id": 17547, + "id": 19331, "properties": { "facing": "east", "half": "bottom", @@ -134199,7 +149436,7 @@ } }, { - "id": 17548, + "id": 19332, "properties": { "facing": "east", "half": "bottom", @@ -134242,7 +149479,7 @@ }, "states": [ { - "id": 17549, + "id": 19333, "properties": { "east": "none", "north": "none", @@ -134253,7 +149490,7 @@ } }, { - "id": 17550, + "id": 19334, "properties": { "east": "none", "north": "none", @@ -134264,7 +149501,7 @@ } }, { - "id": 17551, + "id": 19335, "properties": { "east": "none", "north": "none", @@ -134276,7 +149513,7 @@ }, { "default": true, - "id": 17552, + "id": 19336, "properties": { "east": "none", "north": "none", @@ -134287,7 +149524,7 @@ } }, { - "id": 17553, + "id": 19337, "properties": { "east": "none", "north": "none", @@ -134298,7 +149535,7 @@ } }, { - "id": 17554, + "id": 19338, "properties": { "east": "none", "north": "none", @@ -134309,7 +149546,7 @@ } }, { - "id": 17555, + "id": 19339, "properties": { "east": "none", "north": "none", @@ -134320,7 +149557,7 @@ } }, { - "id": 17556, + "id": 19340, "properties": { "east": "none", "north": "none", @@ -134331,7 +149568,7 @@ } }, { - "id": 17557, + "id": 19341, "properties": { "east": "none", "north": "none", @@ -134342,7 +149579,7 @@ } }, { - "id": 17558, + "id": 19342, "properties": { "east": "none", "north": "none", @@ -134353,7 +149590,7 @@ } }, { - "id": 17559, + "id": 19343, "properties": { "east": "none", "north": "none", @@ -134364,7 +149601,7 @@ } }, { - "id": 17560, + "id": 19344, "properties": { "east": "none", "north": "none", @@ -134375,7 +149612,7 @@ } }, { - "id": 17561, + "id": 19345, "properties": { "east": "none", "north": "none", @@ -134386,7 +149623,7 @@ } }, { - "id": 17562, + "id": 19346, "properties": { "east": "none", "north": "none", @@ -134397,7 +149634,7 @@ } }, { - "id": 17563, + "id": 19347, "properties": { "east": "none", "north": "none", @@ -134408,7 +149645,7 @@ } }, { - "id": 17564, + "id": 19348, "properties": { "east": "none", "north": "none", @@ -134419,7 +149656,7 @@ } }, { - "id": 17565, + "id": 19349, "properties": { "east": "none", "north": "none", @@ -134430,7 +149667,7 @@ } }, { - "id": 17566, + "id": 19350, "properties": { "east": "none", "north": "none", @@ -134441,7 +149678,7 @@ } }, { - "id": 17567, + "id": 19351, "properties": { "east": "none", "north": "none", @@ -134452,7 +149689,7 @@ } }, { - "id": 17568, + "id": 19352, "properties": { "east": "none", "north": "none", @@ -134463,7 +149700,7 @@ } }, { - "id": 17569, + "id": 19353, "properties": { "east": "none", "north": "none", @@ -134474,7 +149711,7 @@ } }, { - "id": 17570, + "id": 19354, "properties": { "east": "none", "north": "none", @@ -134485,7 +149722,7 @@ } }, { - "id": 17571, + "id": 19355, "properties": { "east": "none", "north": "none", @@ -134496,7 +149733,7 @@ } }, { - "id": 17572, + "id": 19356, "properties": { "east": "none", "north": "none", @@ -134507,7 +149744,7 @@ } }, { - "id": 17573, + "id": 19357, "properties": { "east": "none", "north": "none", @@ -134518,7 +149755,7 @@ } }, { - "id": 17574, + "id": 19358, "properties": { "east": "none", "north": "none", @@ -134529,7 +149766,7 @@ } }, { - "id": 17575, + "id": 19359, "properties": { "east": "none", "north": "none", @@ -134540,7 +149777,7 @@ } }, { - "id": 17576, + "id": 19360, "properties": { "east": "none", "north": "none", @@ -134551,7 +149788,7 @@ } }, { - "id": 17577, + "id": 19361, "properties": { "east": "none", "north": "none", @@ -134562,7 +149799,7 @@ } }, { - "id": 17578, + "id": 19362, "properties": { "east": "none", "north": "none", @@ -134573,7 +149810,7 @@ } }, { - "id": 17579, + "id": 19363, "properties": { "east": "none", "north": "none", @@ -134584,7 +149821,7 @@ } }, { - "id": 17580, + "id": 19364, "properties": { "east": "none", "north": "none", @@ -134595,7 +149832,7 @@ } }, { - "id": 17581, + "id": 19365, "properties": { "east": "none", "north": "none", @@ -134606,7 +149843,7 @@ } }, { - "id": 17582, + "id": 19366, "properties": { "east": "none", "north": "none", @@ -134617,7 +149854,7 @@ } }, { - "id": 17583, + "id": 19367, "properties": { "east": "none", "north": "none", @@ -134628,7 +149865,7 @@ } }, { - "id": 17584, + "id": 19368, "properties": { "east": "none", "north": "none", @@ -134639,7 +149876,7 @@ } }, { - "id": 17585, + "id": 19369, "properties": { "east": "none", "north": "low", @@ -134650,7 +149887,7 @@ } }, { - "id": 17586, + "id": 19370, "properties": { "east": "none", "north": "low", @@ -134661,7 +149898,7 @@ } }, { - "id": 17587, + "id": 19371, "properties": { "east": "none", "north": "low", @@ -134672,7 +149909,7 @@ } }, { - "id": 17588, + "id": 19372, "properties": { "east": "none", "north": "low", @@ -134683,7 +149920,7 @@ } }, { - "id": 17589, + "id": 19373, "properties": { "east": "none", "north": "low", @@ -134694,7 +149931,7 @@ } }, { - "id": 17590, + "id": 19374, "properties": { "east": "none", "north": "low", @@ -134705,7 +149942,7 @@ } }, { - "id": 17591, + "id": 19375, "properties": { "east": "none", "north": "low", @@ -134716,7 +149953,7 @@ } }, { - "id": 17592, + "id": 19376, "properties": { "east": "none", "north": "low", @@ -134727,7 +149964,7 @@ } }, { - "id": 17593, + "id": 19377, "properties": { "east": "none", "north": "low", @@ -134738,7 +149975,7 @@ } }, { - "id": 17594, + "id": 19378, "properties": { "east": "none", "north": "low", @@ -134749,7 +149986,7 @@ } }, { - "id": 17595, + "id": 19379, "properties": { "east": "none", "north": "low", @@ -134760,7 +149997,7 @@ } }, { - "id": 17596, + "id": 19380, "properties": { "east": "none", "north": "low", @@ -134771,7 +150008,7 @@ } }, { - "id": 17597, + "id": 19381, "properties": { "east": "none", "north": "low", @@ -134782,7 +150019,7 @@ } }, { - "id": 17598, + "id": 19382, "properties": { "east": "none", "north": "low", @@ -134793,7 +150030,7 @@ } }, { - "id": 17599, + "id": 19383, "properties": { "east": "none", "north": "low", @@ -134804,7 +150041,7 @@ } }, { - "id": 17600, + "id": 19384, "properties": { "east": "none", "north": "low", @@ -134815,7 +150052,7 @@ } }, { - "id": 17601, + "id": 19385, "properties": { "east": "none", "north": "low", @@ -134826,7 +150063,7 @@ } }, { - "id": 17602, + "id": 19386, "properties": { "east": "none", "north": "low", @@ -134837,7 +150074,7 @@ } }, { - "id": 17603, + "id": 19387, "properties": { "east": "none", "north": "low", @@ -134848,7 +150085,7 @@ } }, { - "id": 17604, + "id": 19388, "properties": { "east": "none", "north": "low", @@ -134859,7 +150096,7 @@ } }, { - "id": 17605, + "id": 19389, "properties": { "east": "none", "north": "low", @@ -134870,7 +150107,7 @@ } }, { - "id": 17606, + "id": 19390, "properties": { "east": "none", "north": "low", @@ -134881,7 +150118,7 @@ } }, { - "id": 17607, + "id": 19391, "properties": { "east": "none", "north": "low", @@ -134892,7 +150129,7 @@ } }, { - "id": 17608, + "id": 19392, "properties": { "east": "none", "north": "low", @@ -134903,7 +150140,7 @@ } }, { - "id": 17609, + "id": 19393, "properties": { "east": "none", "north": "low", @@ -134914,7 +150151,7 @@ } }, { - "id": 17610, + "id": 19394, "properties": { "east": "none", "north": "low", @@ -134925,7 +150162,7 @@ } }, { - "id": 17611, + "id": 19395, "properties": { "east": "none", "north": "low", @@ -134936,7 +150173,7 @@ } }, { - "id": 17612, + "id": 19396, "properties": { "east": "none", "north": "low", @@ -134947,7 +150184,7 @@ } }, { - "id": 17613, + "id": 19397, "properties": { "east": "none", "north": "low", @@ -134958,7 +150195,7 @@ } }, { - "id": 17614, + "id": 19398, "properties": { "east": "none", "north": "low", @@ -134969,7 +150206,7 @@ } }, { - "id": 17615, + "id": 19399, "properties": { "east": "none", "north": "low", @@ -134980,7 +150217,7 @@ } }, { - "id": 17616, + "id": 19400, "properties": { "east": "none", "north": "low", @@ -134991,7 +150228,7 @@ } }, { - "id": 17617, + "id": 19401, "properties": { "east": "none", "north": "low", @@ -135002,7 +150239,7 @@ } }, { - "id": 17618, + "id": 19402, "properties": { "east": "none", "north": "low", @@ -135013,7 +150250,7 @@ } }, { - "id": 17619, + "id": 19403, "properties": { "east": "none", "north": "low", @@ -135024,7 +150261,7 @@ } }, { - "id": 17620, + "id": 19404, "properties": { "east": "none", "north": "low", @@ -135035,7 +150272,7 @@ } }, { - "id": 17621, + "id": 19405, "properties": { "east": "none", "north": "tall", @@ -135046,7 +150283,7 @@ } }, { - "id": 17622, + "id": 19406, "properties": { "east": "none", "north": "tall", @@ -135057,7 +150294,7 @@ } }, { - "id": 17623, + "id": 19407, "properties": { "east": "none", "north": "tall", @@ -135068,7 +150305,7 @@ } }, { - "id": 17624, + "id": 19408, "properties": { "east": "none", "north": "tall", @@ -135079,7 +150316,7 @@ } }, { - "id": 17625, + "id": 19409, "properties": { "east": "none", "north": "tall", @@ -135090,7 +150327,7 @@ } }, { - "id": 17626, + "id": 19410, "properties": { "east": "none", "north": "tall", @@ -135101,7 +150338,7 @@ } }, { - "id": 17627, + "id": 19411, "properties": { "east": "none", "north": "tall", @@ -135112,7 +150349,7 @@ } }, { - "id": 17628, + "id": 19412, "properties": { "east": "none", "north": "tall", @@ -135123,7 +150360,7 @@ } }, { - "id": 17629, + "id": 19413, "properties": { "east": "none", "north": "tall", @@ -135134,7 +150371,7 @@ } }, { - "id": 17630, + "id": 19414, "properties": { "east": "none", "north": "tall", @@ -135145,7 +150382,7 @@ } }, { - "id": 17631, + "id": 19415, "properties": { "east": "none", "north": "tall", @@ -135156,7 +150393,7 @@ } }, { - "id": 17632, + "id": 19416, "properties": { "east": "none", "north": "tall", @@ -135167,7 +150404,7 @@ } }, { - "id": 17633, + "id": 19417, "properties": { "east": "none", "north": "tall", @@ -135178,7 +150415,7 @@ } }, { - "id": 17634, + "id": 19418, "properties": { "east": "none", "north": "tall", @@ -135189,7 +150426,7 @@ } }, { - "id": 17635, + "id": 19419, "properties": { "east": "none", "north": "tall", @@ -135200,7 +150437,7 @@ } }, { - "id": 17636, + "id": 19420, "properties": { "east": "none", "north": "tall", @@ -135211,7 +150448,7 @@ } }, { - "id": 17637, + "id": 19421, "properties": { "east": "none", "north": "tall", @@ -135222,7 +150459,7 @@ } }, { - "id": 17638, + "id": 19422, "properties": { "east": "none", "north": "tall", @@ -135233,7 +150470,7 @@ } }, { - "id": 17639, + "id": 19423, "properties": { "east": "none", "north": "tall", @@ -135244,7 +150481,7 @@ } }, { - "id": 17640, + "id": 19424, "properties": { "east": "none", "north": "tall", @@ -135255,7 +150492,7 @@ } }, { - "id": 17641, + "id": 19425, "properties": { "east": "none", "north": "tall", @@ -135266,7 +150503,7 @@ } }, { - "id": 17642, + "id": 19426, "properties": { "east": "none", "north": "tall", @@ -135277,7 +150514,7 @@ } }, { - "id": 17643, + "id": 19427, "properties": { "east": "none", "north": "tall", @@ -135288,7 +150525,7 @@ } }, { - "id": 17644, + "id": 19428, "properties": { "east": "none", "north": "tall", @@ -135299,7 +150536,7 @@ } }, { - "id": 17645, + "id": 19429, "properties": { "east": "none", "north": "tall", @@ -135310,7 +150547,7 @@ } }, { - "id": 17646, + "id": 19430, "properties": { "east": "none", "north": "tall", @@ -135321,7 +150558,7 @@ } }, { - "id": 17647, + "id": 19431, "properties": { "east": "none", "north": "tall", @@ -135332,7 +150569,7 @@ } }, { - "id": 17648, + "id": 19432, "properties": { "east": "none", "north": "tall", @@ -135343,7 +150580,7 @@ } }, { - "id": 17649, + "id": 19433, "properties": { "east": "none", "north": "tall", @@ -135354,7 +150591,7 @@ } }, { - "id": 17650, + "id": 19434, "properties": { "east": "none", "north": "tall", @@ -135365,7 +150602,7 @@ } }, { - "id": 17651, + "id": 19435, "properties": { "east": "none", "north": "tall", @@ -135376,7 +150613,7 @@ } }, { - "id": 17652, + "id": 19436, "properties": { "east": "none", "north": "tall", @@ -135387,7 +150624,7 @@ } }, { - "id": 17653, + "id": 19437, "properties": { "east": "none", "north": "tall", @@ -135398,7 +150635,7 @@ } }, { - "id": 17654, + "id": 19438, "properties": { "east": "none", "north": "tall", @@ -135409,7 +150646,7 @@ } }, { - "id": 17655, + "id": 19439, "properties": { "east": "none", "north": "tall", @@ -135420,7 +150657,7 @@ } }, { - "id": 17656, + "id": 19440, "properties": { "east": "none", "north": "tall", @@ -135431,7 +150668,7 @@ } }, { - "id": 17657, + "id": 19441, "properties": { "east": "low", "north": "none", @@ -135442,7 +150679,7 @@ } }, { - "id": 17658, + "id": 19442, "properties": { "east": "low", "north": "none", @@ -135453,7 +150690,7 @@ } }, { - "id": 17659, + "id": 19443, "properties": { "east": "low", "north": "none", @@ -135464,7 +150701,7 @@ } }, { - "id": 17660, + "id": 19444, "properties": { "east": "low", "north": "none", @@ -135475,7 +150712,7 @@ } }, { - "id": 17661, + "id": 19445, "properties": { "east": "low", "north": "none", @@ -135486,7 +150723,7 @@ } }, { - "id": 17662, + "id": 19446, "properties": { "east": "low", "north": "none", @@ -135497,7 +150734,7 @@ } }, { - "id": 17663, + "id": 19447, "properties": { "east": "low", "north": "none", @@ -135508,7 +150745,7 @@ } }, { - "id": 17664, + "id": 19448, "properties": { "east": "low", "north": "none", @@ -135519,7 +150756,7 @@ } }, { - "id": 17665, + "id": 19449, "properties": { "east": "low", "north": "none", @@ -135530,7 +150767,7 @@ } }, { - "id": 17666, + "id": 19450, "properties": { "east": "low", "north": "none", @@ -135541,7 +150778,7 @@ } }, { - "id": 17667, + "id": 19451, "properties": { "east": "low", "north": "none", @@ -135552,7 +150789,7 @@ } }, { - "id": 17668, + "id": 19452, "properties": { "east": "low", "north": "none", @@ -135563,7 +150800,7 @@ } }, { - "id": 17669, + "id": 19453, "properties": { "east": "low", "north": "none", @@ -135574,7 +150811,7 @@ } }, { - "id": 17670, + "id": 19454, "properties": { "east": "low", "north": "none", @@ -135585,7 +150822,7 @@ } }, { - "id": 17671, + "id": 19455, "properties": { "east": "low", "north": "none", @@ -135596,7 +150833,7 @@ } }, { - "id": 17672, + "id": 19456, "properties": { "east": "low", "north": "none", @@ -135607,7 +150844,7 @@ } }, { - "id": 17673, + "id": 19457, "properties": { "east": "low", "north": "none", @@ -135618,7 +150855,7 @@ } }, { - "id": 17674, + "id": 19458, "properties": { "east": "low", "north": "none", @@ -135629,7 +150866,7 @@ } }, { - "id": 17675, + "id": 19459, "properties": { "east": "low", "north": "none", @@ -135640,7 +150877,7 @@ } }, { - "id": 17676, + "id": 19460, "properties": { "east": "low", "north": "none", @@ -135651,7 +150888,7 @@ } }, { - "id": 17677, + "id": 19461, "properties": { "east": "low", "north": "none", @@ -135662,7 +150899,7 @@ } }, { - "id": 17678, + "id": 19462, "properties": { "east": "low", "north": "none", @@ -135673,7 +150910,7 @@ } }, { - "id": 17679, + "id": 19463, "properties": { "east": "low", "north": "none", @@ -135684,7 +150921,7 @@ } }, { - "id": 17680, + "id": 19464, "properties": { "east": "low", "north": "none", @@ -135695,7 +150932,7 @@ } }, { - "id": 17681, + "id": 19465, "properties": { "east": "low", "north": "none", @@ -135706,7 +150943,7 @@ } }, { - "id": 17682, + "id": 19466, "properties": { "east": "low", "north": "none", @@ -135717,7 +150954,7 @@ } }, { - "id": 17683, + "id": 19467, "properties": { "east": "low", "north": "none", @@ -135728,7 +150965,7 @@ } }, { - "id": 17684, + "id": 19468, "properties": { "east": "low", "north": "none", @@ -135739,7 +150976,7 @@ } }, { - "id": 17685, + "id": 19469, "properties": { "east": "low", "north": "none", @@ -135750,7 +150987,7 @@ } }, { - "id": 17686, + "id": 19470, "properties": { "east": "low", "north": "none", @@ -135761,7 +150998,7 @@ } }, { - "id": 17687, + "id": 19471, "properties": { "east": "low", "north": "none", @@ -135772,7 +151009,7 @@ } }, { - "id": 17688, + "id": 19472, "properties": { "east": "low", "north": "none", @@ -135783,7 +151020,7 @@ } }, { - "id": 17689, + "id": 19473, "properties": { "east": "low", "north": "none", @@ -135794,7 +151031,7 @@ } }, { - "id": 17690, + "id": 19474, "properties": { "east": "low", "north": "none", @@ -135805,7 +151042,7 @@ } }, { - "id": 17691, + "id": 19475, "properties": { "east": "low", "north": "none", @@ -135816,7 +151053,7 @@ } }, { - "id": 17692, + "id": 19476, "properties": { "east": "low", "north": "none", @@ -135827,7 +151064,7 @@ } }, { - "id": 17693, + "id": 19477, "properties": { "east": "low", "north": "low", @@ -135838,7 +151075,7 @@ } }, { - "id": 17694, + "id": 19478, "properties": { "east": "low", "north": "low", @@ -135849,7 +151086,7 @@ } }, { - "id": 17695, + "id": 19479, "properties": { "east": "low", "north": "low", @@ -135860,7 +151097,7 @@ } }, { - "id": 17696, + "id": 19480, "properties": { "east": "low", "north": "low", @@ -135871,7 +151108,7 @@ } }, { - "id": 17697, + "id": 19481, "properties": { "east": "low", "north": "low", @@ -135882,7 +151119,7 @@ } }, { - "id": 17698, + "id": 19482, "properties": { "east": "low", "north": "low", @@ -135893,7 +151130,7 @@ } }, { - "id": 17699, + "id": 19483, "properties": { "east": "low", "north": "low", @@ -135904,7 +151141,7 @@ } }, { - "id": 17700, + "id": 19484, "properties": { "east": "low", "north": "low", @@ -135915,7 +151152,7 @@ } }, { - "id": 17701, + "id": 19485, "properties": { "east": "low", "north": "low", @@ -135926,7 +151163,7 @@ } }, { - "id": 17702, + "id": 19486, "properties": { "east": "low", "north": "low", @@ -135937,7 +151174,7 @@ } }, { - "id": 17703, + "id": 19487, "properties": { "east": "low", "north": "low", @@ -135948,7 +151185,7 @@ } }, { - "id": 17704, + "id": 19488, "properties": { "east": "low", "north": "low", @@ -135959,7 +151196,7 @@ } }, { - "id": 17705, + "id": 19489, "properties": { "east": "low", "north": "low", @@ -135970,7 +151207,7 @@ } }, { - "id": 17706, + "id": 19490, "properties": { "east": "low", "north": "low", @@ -135981,7 +151218,7 @@ } }, { - "id": 17707, + "id": 19491, "properties": { "east": "low", "north": "low", @@ -135992,7 +151229,7 @@ } }, { - "id": 17708, + "id": 19492, "properties": { "east": "low", "north": "low", @@ -136003,7 +151240,7 @@ } }, { - "id": 17709, + "id": 19493, "properties": { "east": "low", "north": "low", @@ -136014,7 +151251,7 @@ } }, { - "id": 17710, + "id": 19494, "properties": { "east": "low", "north": "low", @@ -136025,7 +151262,7 @@ } }, { - "id": 17711, + "id": 19495, "properties": { "east": "low", "north": "low", @@ -136036,7 +151273,7 @@ } }, { - "id": 17712, + "id": 19496, "properties": { "east": "low", "north": "low", @@ -136047,7 +151284,7 @@ } }, { - "id": 17713, + "id": 19497, "properties": { "east": "low", "north": "low", @@ -136058,7 +151295,7 @@ } }, { - "id": 17714, + "id": 19498, "properties": { "east": "low", "north": "low", @@ -136069,7 +151306,7 @@ } }, { - "id": 17715, + "id": 19499, "properties": { "east": "low", "north": "low", @@ -136080,7 +151317,7 @@ } }, { - "id": 17716, + "id": 19500, "properties": { "east": "low", "north": "low", @@ -136091,7 +151328,7 @@ } }, { - "id": 17717, + "id": 19501, "properties": { "east": "low", "north": "low", @@ -136102,7 +151339,7 @@ } }, { - "id": 17718, + "id": 19502, "properties": { "east": "low", "north": "low", @@ -136113,7 +151350,7 @@ } }, { - "id": 17719, + "id": 19503, "properties": { "east": "low", "north": "low", @@ -136124,7 +151361,7 @@ } }, { - "id": 17720, + "id": 19504, "properties": { "east": "low", "north": "low", @@ -136135,7 +151372,7 @@ } }, { - "id": 17721, + "id": 19505, "properties": { "east": "low", "north": "low", @@ -136146,7 +151383,7 @@ } }, { - "id": 17722, + "id": 19506, "properties": { "east": "low", "north": "low", @@ -136157,7 +151394,7 @@ } }, { - "id": 17723, + "id": 19507, "properties": { "east": "low", "north": "low", @@ -136168,7 +151405,7 @@ } }, { - "id": 17724, + "id": 19508, "properties": { "east": "low", "north": "low", @@ -136179,7 +151416,7 @@ } }, { - "id": 17725, + "id": 19509, "properties": { "east": "low", "north": "low", @@ -136190,7 +151427,7 @@ } }, { - "id": 17726, + "id": 19510, "properties": { "east": "low", "north": "low", @@ -136201,7 +151438,7 @@ } }, { - "id": 17727, + "id": 19511, "properties": { "east": "low", "north": "low", @@ -136212,7 +151449,7 @@ } }, { - "id": 17728, + "id": 19512, "properties": { "east": "low", "north": "low", @@ -136223,7 +151460,7 @@ } }, { - "id": 17729, + "id": 19513, "properties": { "east": "low", "north": "tall", @@ -136234,7 +151471,7 @@ } }, { - "id": 17730, + "id": 19514, "properties": { "east": "low", "north": "tall", @@ -136245,7 +151482,7 @@ } }, { - "id": 17731, + "id": 19515, "properties": { "east": "low", "north": "tall", @@ -136256,7 +151493,7 @@ } }, { - "id": 17732, + "id": 19516, "properties": { "east": "low", "north": "tall", @@ -136267,7 +151504,7 @@ } }, { - "id": 17733, + "id": 19517, "properties": { "east": "low", "north": "tall", @@ -136278,7 +151515,7 @@ } }, { - "id": 17734, + "id": 19518, "properties": { "east": "low", "north": "tall", @@ -136289,7 +151526,7 @@ } }, { - "id": 17735, + "id": 19519, "properties": { "east": "low", "north": "tall", @@ -136300,7 +151537,7 @@ } }, { - "id": 17736, + "id": 19520, "properties": { "east": "low", "north": "tall", @@ -136311,7 +151548,7 @@ } }, { - "id": 17737, + "id": 19521, "properties": { "east": "low", "north": "tall", @@ -136322,7 +151559,7 @@ } }, { - "id": 17738, + "id": 19522, "properties": { "east": "low", "north": "tall", @@ -136333,7 +151570,7 @@ } }, { - "id": 17739, + "id": 19523, "properties": { "east": "low", "north": "tall", @@ -136344,7 +151581,7 @@ } }, { - "id": 17740, + "id": 19524, "properties": { "east": "low", "north": "tall", @@ -136355,7 +151592,7 @@ } }, { - "id": 17741, + "id": 19525, "properties": { "east": "low", "north": "tall", @@ -136366,7 +151603,7 @@ } }, { - "id": 17742, + "id": 19526, "properties": { "east": "low", "north": "tall", @@ -136377,7 +151614,7 @@ } }, { - "id": 17743, + "id": 19527, "properties": { "east": "low", "north": "tall", @@ -136388,7 +151625,7 @@ } }, { - "id": 17744, + "id": 19528, "properties": { "east": "low", "north": "tall", @@ -136399,7 +151636,7 @@ } }, { - "id": 17745, + "id": 19529, "properties": { "east": "low", "north": "tall", @@ -136410,7 +151647,7 @@ } }, { - "id": 17746, + "id": 19530, "properties": { "east": "low", "north": "tall", @@ -136421,7 +151658,7 @@ } }, { - "id": 17747, + "id": 19531, "properties": { "east": "low", "north": "tall", @@ -136432,7 +151669,7 @@ } }, { - "id": 17748, + "id": 19532, "properties": { "east": "low", "north": "tall", @@ -136443,7 +151680,7 @@ } }, { - "id": 17749, + "id": 19533, "properties": { "east": "low", "north": "tall", @@ -136454,7 +151691,7 @@ } }, { - "id": 17750, + "id": 19534, "properties": { "east": "low", "north": "tall", @@ -136465,7 +151702,7 @@ } }, { - "id": 17751, + "id": 19535, "properties": { "east": "low", "north": "tall", @@ -136476,7 +151713,7 @@ } }, { - "id": 17752, + "id": 19536, "properties": { "east": "low", "north": "tall", @@ -136487,7 +151724,7 @@ } }, { - "id": 17753, + "id": 19537, "properties": { "east": "low", "north": "tall", @@ -136498,7 +151735,7 @@ } }, { - "id": 17754, + "id": 19538, "properties": { "east": "low", "north": "tall", @@ -136509,7 +151746,7 @@ } }, { - "id": 17755, + "id": 19539, "properties": { "east": "low", "north": "tall", @@ -136520,7 +151757,7 @@ } }, { - "id": 17756, + "id": 19540, "properties": { "east": "low", "north": "tall", @@ -136531,7 +151768,7 @@ } }, { - "id": 17757, + "id": 19541, "properties": { "east": "low", "north": "tall", @@ -136542,7 +151779,7 @@ } }, { - "id": 17758, + "id": 19542, "properties": { "east": "low", "north": "tall", @@ -136553,7 +151790,7 @@ } }, { - "id": 17759, + "id": 19543, "properties": { "east": "low", "north": "tall", @@ -136564,7 +151801,7 @@ } }, { - "id": 17760, + "id": 19544, "properties": { "east": "low", "north": "tall", @@ -136575,7 +151812,7 @@ } }, { - "id": 17761, + "id": 19545, "properties": { "east": "low", "north": "tall", @@ -136586,7 +151823,7 @@ } }, { - "id": 17762, + "id": 19546, "properties": { "east": "low", "north": "tall", @@ -136597,7 +151834,7 @@ } }, { - "id": 17763, + "id": 19547, "properties": { "east": "low", "north": "tall", @@ -136608,7 +151845,7 @@ } }, { - "id": 17764, + "id": 19548, "properties": { "east": "low", "north": "tall", @@ -136619,7 +151856,7 @@ } }, { - "id": 17765, + "id": 19549, "properties": { "east": "tall", "north": "none", @@ -136630,7 +151867,7 @@ } }, { - "id": 17766, + "id": 19550, "properties": { "east": "tall", "north": "none", @@ -136641,7 +151878,7 @@ } }, { - "id": 17767, + "id": 19551, "properties": { "east": "tall", "north": "none", @@ -136652,7 +151889,7 @@ } }, { - "id": 17768, + "id": 19552, "properties": { "east": "tall", "north": "none", @@ -136663,7 +151900,7 @@ } }, { - "id": 17769, + "id": 19553, "properties": { "east": "tall", "north": "none", @@ -136674,7 +151911,7 @@ } }, { - "id": 17770, + "id": 19554, "properties": { "east": "tall", "north": "none", @@ -136685,7 +151922,7 @@ } }, { - "id": 17771, + "id": 19555, "properties": { "east": "tall", "north": "none", @@ -136696,7 +151933,7 @@ } }, { - "id": 17772, + "id": 19556, "properties": { "east": "tall", "north": "none", @@ -136707,7 +151944,7 @@ } }, { - "id": 17773, + "id": 19557, "properties": { "east": "tall", "north": "none", @@ -136718,7 +151955,7 @@ } }, { - "id": 17774, + "id": 19558, "properties": { "east": "tall", "north": "none", @@ -136729,7 +151966,7 @@ } }, { - "id": 17775, + "id": 19559, "properties": { "east": "tall", "north": "none", @@ -136740,7 +151977,7 @@ } }, { - "id": 17776, + "id": 19560, "properties": { "east": "tall", "north": "none", @@ -136751,7 +151988,7 @@ } }, { - "id": 17777, + "id": 19561, "properties": { "east": "tall", "north": "none", @@ -136762,7 +151999,7 @@ } }, { - "id": 17778, + "id": 19562, "properties": { "east": "tall", "north": "none", @@ -136773,7 +152010,7 @@ } }, { - "id": 17779, + "id": 19563, "properties": { "east": "tall", "north": "none", @@ -136784,7 +152021,7 @@ } }, { - "id": 17780, + "id": 19564, "properties": { "east": "tall", "north": "none", @@ -136795,7 +152032,7 @@ } }, { - "id": 17781, + "id": 19565, "properties": { "east": "tall", "north": "none", @@ -136806,7 +152043,7 @@ } }, { - "id": 17782, + "id": 19566, "properties": { "east": "tall", "north": "none", @@ -136817,7 +152054,7 @@ } }, { - "id": 17783, + "id": 19567, "properties": { "east": "tall", "north": "none", @@ -136828,7 +152065,7 @@ } }, { - "id": 17784, + "id": 19568, "properties": { "east": "tall", "north": "none", @@ -136839,7 +152076,7 @@ } }, { - "id": 17785, + "id": 19569, "properties": { "east": "tall", "north": "none", @@ -136850,7 +152087,7 @@ } }, { - "id": 17786, + "id": 19570, "properties": { "east": "tall", "north": "none", @@ -136861,7 +152098,7 @@ } }, { - "id": 17787, + "id": 19571, "properties": { "east": "tall", "north": "none", @@ -136872,7 +152109,7 @@ } }, { - "id": 17788, + "id": 19572, "properties": { "east": "tall", "north": "none", @@ -136883,7 +152120,7 @@ } }, { - "id": 17789, + "id": 19573, "properties": { "east": "tall", "north": "none", @@ -136894,7 +152131,7 @@ } }, { - "id": 17790, + "id": 19574, "properties": { "east": "tall", "north": "none", @@ -136905,7 +152142,7 @@ } }, { - "id": 17791, + "id": 19575, "properties": { "east": "tall", "north": "none", @@ -136916,7 +152153,7 @@ } }, { - "id": 17792, + "id": 19576, "properties": { "east": "tall", "north": "none", @@ -136927,7 +152164,7 @@ } }, { - "id": 17793, + "id": 19577, "properties": { "east": "tall", "north": "none", @@ -136938,7 +152175,7 @@ } }, { - "id": 17794, + "id": 19578, "properties": { "east": "tall", "north": "none", @@ -136949,7 +152186,7 @@ } }, { - "id": 17795, + "id": 19579, "properties": { "east": "tall", "north": "none", @@ -136960,7 +152197,7 @@ } }, { - "id": 17796, + "id": 19580, "properties": { "east": "tall", "north": "none", @@ -136971,7 +152208,7 @@ } }, { - "id": 17797, + "id": 19581, "properties": { "east": "tall", "north": "none", @@ -136982,7 +152219,7 @@ } }, { - "id": 17798, + "id": 19582, "properties": { "east": "tall", "north": "none", @@ -136993,7 +152230,7 @@ } }, { - "id": 17799, + "id": 19583, "properties": { "east": "tall", "north": "none", @@ -137004,7 +152241,7 @@ } }, { - "id": 17800, + "id": 19584, "properties": { "east": "tall", "north": "none", @@ -137015,7 +152252,7 @@ } }, { - "id": 17801, + "id": 19585, "properties": { "east": "tall", "north": "low", @@ -137026,7 +152263,7 @@ } }, { - "id": 17802, + "id": 19586, "properties": { "east": "tall", "north": "low", @@ -137037,7 +152274,7 @@ } }, { - "id": 17803, + "id": 19587, "properties": { "east": "tall", "north": "low", @@ -137048,7 +152285,7 @@ } }, { - "id": 17804, + "id": 19588, "properties": { "east": "tall", "north": "low", @@ -137059,7 +152296,7 @@ } }, { - "id": 17805, + "id": 19589, "properties": { "east": "tall", "north": "low", @@ -137070,7 +152307,7 @@ } }, { - "id": 17806, + "id": 19590, "properties": { "east": "tall", "north": "low", @@ -137081,7 +152318,7 @@ } }, { - "id": 17807, + "id": 19591, "properties": { "east": "tall", "north": "low", @@ -137092,7 +152329,7 @@ } }, { - "id": 17808, + "id": 19592, "properties": { "east": "tall", "north": "low", @@ -137103,7 +152340,7 @@ } }, { - "id": 17809, + "id": 19593, "properties": { "east": "tall", "north": "low", @@ -137114,7 +152351,7 @@ } }, { - "id": 17810, + "id": 19594, "properties": { "east": "tall", "north": "low", @@ -137125,7 +152362,7 @@ } }, { - "id": 17811, + "id": 19595, "properties": { "east": "tall", "north": "low", @@ -137136,7 +152373,7 @@ } }, { - "id": 17812, + "id": 19596, "properties": { "east": "tall", "north": "low", @@ -137147,7 +152384,7 @@ } }, { - "id": 17813, + "id": 19597, "properties": { "east": "tall", "north": "low", @@ -137158,7 +152395,7 @@ } }, { - "id": 17814, + "id": 19598, "properties": { "east": "tall", "north": "low", @@ -137169,7 +152406,7 @@ } }, { - "id": 17815, + "id": 19599, "properties": { "east": "tall", "north": "low", @@ -137180,7 +152417,7 @@ } }, { - "id": 17816, + "id": 19600, "properties": { "east": "tall", "north": "low", @@ -137191,7 +152428,7 @@ } }, { - "id": 17817, + "id": 19601, "properties": { "east": "tall", "north": "low", @@ -137202,7 +152439,7 @@ } }, { - "id": 17818, + "id": 19602, "properties": { "east": "tall", "north": "low", @@ -137213,7 +152450,7 @@ } }, { - "id": 17819, + "id": 19603, "properties": { "east": "tall", "north": "low", @@ -137224,7 +152461,7 @@ } }, { - "id": 17820, + "id": 19604, "properties": { "east": "tall", "north": "low", @@ -137235,7 +152472,7 @@ } }, { - "id": 17821, + "id": 19605, "properties": { "east": "tall", "north": "low", @@ -137246,7 +152483,7 @@ } }, { - "id": 17822, + "id": 19606, "properties": { "east": "tall", "north": "low", @@ -137257,7 +152494,7 @@ } }, { - "id": 17823, + "id": 19607, "properties": { "east": "tall", "north": "low", @@ -137268,7 +152505,7 @@ } }, { - "id": 17824, + "id": 19608, "properties": { "east": "tall", "north": "low", @@ -137279,7 +152516,7 @@ } }, { - "id": 17825, + "id": 19609, "properties": { "east": "tall", "north": "low", @@ -137290,7 +152527,7 @@ } }, { - "id": 17826, + "id": 19610, "properties": { "east": "tall", "north": "low", @@ -137301,7 +152538,7 @@ } }, { - "id": 17827, + "id": 19611, "properties": { "east": "tall", "north": "low", @@ -137312,7 +152549,7 @@ } }, { - "id": 17828, + "id": 19612, "properties": { "east": "tall", "north": "low", @@ -137323,7 +152560,7 @@ } }, { - "id": 17829, + "id": 19613, "properties": { "east": "tall", "north": "low", @@ -137334,7 +152571,7 @@ } }, { - "id": 17830, + "id": 19614, "properties": { "east": "tall", "north": "low", @@ -137345,7 +152582,7 @@ } }, { - "id": 17831, + "id": 19615, "properties": { "east": "tall", "north": "low", @@ -137356,7 +152593,7 @@ } }, { - "id": 17832, + "id": 19616, "properties": { "east": "tall", "north": "low", @@ -137367,7 +152604,7 @@ } }, { - "id": 17833, + "id": 19617, "properties": { "east": "tall", "north": "low", @@ -137378,7 +152615,7 @@ } }, { - "id": 17834, + "id": 19618, "properties": { "east": "tall", "north": "low", @@ -137389,7 +152626,7 @@ } }, { - "id": 17835, + "id": 19619, "properties": { "east": "tall", "north": "low", @@ -137400,7 +152637,7 @@ } }, { - "id": 17836, + "id": 19620, "properties": { "east": "tall", "north": "low", @@ -137411,7 +152648,7 @@ } }, { - "id": 17837, + "id": 19621, "properties": { "east": "tall", "north": "tall", @@ -137422,7 +152659,7 @@ } }, { - "id": 17838, + "id": 19622, "properties": { "east": "tall", "north": "tall", @@ -137433,7 +152670,7 @@ } }, { - "id": 17839, + "id": 19623, "properties": { "east": "tall", "north": "tall", @@ -137444,7 +152681,7 @@ } }, { - "id": 17840, + "id": 19624, "properties": { "east": "tall", "north": "tall", @@ -137455,7 +152692,7 @@ } }, { - "id": 17841, + "id": 19625, "properties": { "east": "tall", "north": "tall", @@ -137466,7 +152703,7 @@ } }, { - "id": 17842, + "id": 19626, "properties": { "east": "tall", "north": "tall", @@ -137477,7 +152714,7 @@ } }, { - "id": 17843, + "id": 19627, "properties": { "east": "tall", "north": "tall", @@ -137488,7 +152725,7 @@ } }, { - "id": 17844, + "id": 19628, "properties": { "east": "tall", "north": "tall", @@ -137499,7 +152736,7 @@ } }, { - "id": 17845, + "id": 19629, "properties": { "east": "tall", "north": "tall", @@ -137510,7 +152747,7 @@ } }, { - "id": 17846, + "id": 19630, "properties": { "east": "tall", "north": "tall", @@ -137521,7 +152758,7 @@ } }, { - "id": 17847, + "id": 19631, "properties": { "east": "tall", "north": "tall", @@ -137532,7 +152769,7 @@ } }, { - "id": 17848, + "id": 19632, "properties": { "east": "tall", "north": "tall", @@ -137543,7 +152780,7 @@ } }, { - "id": 17849, + "id": 19633, "properties": { "east": "tall", "north": "tall", @@ -137554,7 +152791,7 @@ } }, { - "id": 17850, + "id": 19634, "properties": { "east": "tall", "north": "tall", @@ -137565,7 +152802,7 @@ } }, { - "id": 17851, + "id": 19635, "properties": { "east": "tall", "north": "tall", @@ -137576,7 +152813,7 @@ } }, { - "id": 17852, + "id": 19636, "properties": { "east": "tall", "north": "tall", @@ -137587,7 +152824,7 @@ } }, { - "id": 17853, + "id": 19637, "properties": { "east": "tall", "north": "tall", @@ -137598,7 +152835,7 @@ } }, { - "id": 17854, + "id": 19638, "properties": { "east": "tall", "north": "tall", @@ -137609,7 +152846,7 @@ } }, { - "id": 17855, + "id": 19639, "properties": { "east": "tall", "north": "tall", @@ -137620,7 +152857,7 @@ } }, { - "id": 17856, + "id": 19640, "properties": { "east": "tall", "north": "tall", @@ -137631,7 +152868,7 @@ } }, { - "id": 17857, + "id": 19641, "properties": { "east": "tall", "north": "tall", @@ -137642,7 +152879,7 @@ } }, { - "id": 17858, + "id": 19642, "properties": { "east": "tall", "north": "tall", @@ -137653,7 +152890,7 @@ } }, { - "id": 17859, + "id": 19643, "properties": { "east": "tall", "north": "tall", @@ -137664,7 +152901,7 @@ } }, { - "id": 17860, + "id": 19644, "properties": { "east": "tall", "north": "tall", @@ -137675,7 +152912,7 @@ } }, { - "id": 17861, + "id": 19645, "properties": { "east": "tall", "north": "tall", @@ -137686,7 +152923,7 @@ } }, { - "id": 17862, + "id": 19646, "properties": { "east": "tall", "north": "tall", @@ -137697,7 +152934,7 @@ } }, { - "id": 17863, + "id": 19647, "properties": { "east": "tall", "north": "tall", @@ -137708,7 +152945,7 @@ } }, { - "id": 17864, + "id": 19648, "properties": { "east": "tall", "north": "tall", @@ -137719,7 +152956,7 @@ } }, { - "id": 17865, + "id": 19649, "properties": { "east": "tall", "north": "tall", @@ -137730,7 +152967,7 @@ } }, { - "id": 17866, + "id": 19650, "properties": { "east": "tall", "north": "tall", @@ -137741,7 +152978,7 @@ } }, { - "id": 17867, + "id": 19651, "properties": { "east": "tall", "north": "tall", @@ -137752,7 +152989,7 @@ } }, { - "id": 17868, + "id": 19652, "properties": { "east": "tall", "north": "tall", @@ -137763,7 +153000,7 @@ } }, { - "id": 17869, + "id": 19653, "properties": { "east": "tall", "north": "tall", @@ -137774,7 +153011,7 @@ } }, { - "id": 17870, + "id": 19654, "properties": { "east": "tall", "north": "tall", @@ -137785,7 +153022,7 @@ } }, { - "id": 17871, + "id": 19655, "properties": { "east": "tall", "north": "tall", @@ -137796,7 +153033,7 @@ } }, { - "id": 17872, + "id": 19656, "properties": { "east": "tall", "north": "tall", @@ -137812,7 +153049,7 @@ "states": [ { "default": true, - "id": 17460 + "id": 19244 } ] }, @@ -137836,7 +153073,7 @@ }, "states": [ { - "id": 17962, + "id": 19746, "properties": { "face": "floor", "facing": "north", @@ -137844,7 +153081,7 @@ } }, { - "id": 17963, + "id": 19747, "properties": { "face": "floor", "facing": "north", @@ -137852,7 +153089,7 @@ } }, { - "id": 17964, + "id": 19748, "properties": { "face": "floor", "facing": "south", @@ -137860,7 +153097,7 @@ } }, { - "id": 17965, + "id": 19749, "properties": { "face": "floor", "facing": "south", @@ -137868,7 +153105,7 @@ } }, { - "id": 17966, + "id": 19750, "properties": { "face": "floor", "facing": "west", @@ -137876,7 +153113,7 @@ } }, { - "id": 17967, + "id": 19751, "properties": { "face": "floor", "facing": "west", @@ -137884,7 +153121,7 @@ } }, { - "id": 17968, + "id": 19752, "properties": { "face": "floor", "facing": "east", @@ -137892,7 +153129,7 @@ } }, { - "id": 17969, + "id": 19753, "properties": { "face": "floor", "facing": "east", @@ -137900,7 +153137,7 @@ } }, { - "id": 17970, + "id": 19754, "properties": { "face": "wall", "facing": "north", @@ -137909,7 +153146,7 @@ }, { "default": true, - "id": 17971, + "id": 19755, "properties": { "face": "wall", "facing": "north", @@ -137917,7 +153154,7 @@ } }, { - "id": 17972, + "id": 19756, "properties": { "face": "wall", "facing": "south", @@ -137925,7 +153162,7 @@ } }, { - "id": 17973, + "id": 19757, "properties": { "face": "wall", "facing": "south", @@ -137933,7 +153170,7 @@ } }, { - "id": 17974, + "id": 19758, "properties": { "face": "wall", "facing": "west", @@ -137941,7 +153178,7 @@ } }, { - "id": 17975, + "id": 19759, "properties": { "face": "wall", "facing": "west", @@ -137949,7 +153186,7 @@ } }, { - "id": 17976, + "id": 19760, "properties": { "face": "wall", "facing": "east", @@ -137957,7 +153194,7 @@ } }, { - "id": 17977, + "id": 19761, "properties": { "face": "wall", "facing": "east", @@ -137965,7 +153202,7 @@ } }, { - "id": 17978, + "id": 19762, "properties": { "face": "ceiling", "facing": "north", @@ -137973,7 +153210,7 @@ } }, { - "id": 17979, + "id": 19763, "properties": { "face": "ceiling", "facing": "north", @@ -137981,7 +153218,7 @@ } }, { - "id": 17980, + "id": 19764, "properties": { "face": "ceiling", "facing": "south", @@ -137989,7 +153226,7 @@ } }, { - "id": 17981, + "id": 19765, "properties": { "face": "ceiling", "facing": "south", @@ -137997,7 +153234,7 @@ } }, { - "id": 17982, + "id": 19766, "properties": { "face": "ceiling", "facing": "west", @@ -138005,7 +153242,7 @@ } }, { - "id": 17983, + "id": 19767, "properties": { "face": "ceiling", "facing": "west", @@ -138013,7 +153250,7 @@ } }, { - "id": 17984, + "id": 19768, "properties": { "face": "ceiling", "facing": "east", @@ -138021,7 +153258,7 @@ } }, { - "id": 17985, + "id": 19769, "properties": { "face": "ceiling", "facing": "east", @@ -138039,14 +153276,14 @@ }, "states": [ { - "id": 17960, + "id": 19744, "properties": { "powered": "true" } }, { "default": true, - "id": 17961, + "id": 19745, "properties": { "powered": "false" } @@ -138067,21 +153304,21 @@ }, "states": [ { - "id": 17954, + "id": 19738, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 17955, + "id": 19739, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 17956, + "id": 19740, "properties": { "type": "bottom", "waterlogged": "true" @@ -138089,21 +153326,21 @@ }, { "default": true, - "id": 17957, + "id": 19741, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 17958, + "id": 19742, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 17959, + "id": 19743, "properties": { "type": "double", "waterlogged": "false" @@ -138137,7 +153374,7 @@ }, "states": [ { - "id": 17874, + "id": 19658, "properties": { "facing": "north", "half": "top", @@ -138146,7 +153383,7 @@ } }, { - "id": 17875, + "id": 19659, "properties": { "facing": "north", "half": "top", @@ -138155,7 +153392,7 @@ } }, { - "id": 17876, + "id": 19660, "properties": { "facing": "north", "half": "top", @@ -138164,7 +153401,7 @@ } }, { - "id": 17877, + "id": 19661, "properties": { "facing": "north", "half": "top", @@ -138173,7 +153410,7 @@ } }, { - "id": 17878, + "id": 19662, "properties": { "facing": "north", "half": "top", @@ -138182,7 +153419,7 @@ } }, { - "id": 17879, + "id": 19663, "properties": { "facing": "north", "half": "top", @@ -138191,7 +153428,7 @@ } }, { - "id": 17880, + "id": 19664, "properties": { "facing": "north", "half": "top", @@ -138200,7 +153437,7 @@ } }, { - "id": 17881, + "id": 19665, "properties": { "facing": "north", "half": "top", @@ -138209,7 +153446,7 @@ } }, { - "id": 17882, + "id": 19666, "properties": { "facing": "north", "half": "top", @@ -138218,7 +153455,7 @@ } }, { - "id": 17883, + "id": 19667, "properties": { "facing": "north", "half": "top", @@ -138227,7 +153464,7 @@ } }, { - "id": 17884, + "id": 19668, "properties": { "facing": "north", "half": "bottom", @@ -138237,7 +153474,7 @@ }, { "default": true, - "id": 17885, + "id": 19669, "properties": { "facing": "north", "half": "bottom", @@ -138246,7 +153483,7 @@ } }, { - "id": 17886, + "id": 19670, "properties": { "facing": "north", "half": "bottom", @@ -138255,7 +153492,7 @@ } }, { - "id": 17887, + "id": 19671, "properties": { "facing": "north", "half": "bottom", @@ -138264,7 +153501,7 @@ } }, { - "id": 17888, + "id": 19672, "properties": { "facing": "north", "half": "bottom", @@ -138273,7 +153510,7 @@ } }, { - "id": 17889, + "id": 19673, "properties": { "facing": "north", "half": "bottom", @@ -138282,7 +153519,7 @@ } }, { - "id": 17890, + "id": 19674, "properties": { "facing": "north", "half": "bottom", @@ -138291,7 +153528,7 @@ } }, { - "id": 17891, + "id": 19675, "properties": { "facing": "north", "half": "bottom", @@ -138300,7 +153537,7 @@ } }, { - "id": 17892, + "id": 19676, "properties": { "facing": "north", "half": "bottom", @@ -138309,7 +153546,7 @@ } }, { - "id": 17893, + "id": 19677, "properties": { "facing": "north", "half": "bottom", @@ -138318,7 +153555,7 @@ } }, { - "id": 17894, + "id": 19678, "properties": { "facing": "south", "half": "top", @@ -138327,7 +153564,7 @@ } }, { - "id": 17895, + "id": 19679, "properties": { "facing": "south", "half": "top", @@ -138336,7 +153573,7 @@ } }, { - "id": 17896, + "id": 19680, "properties": { "facing": "south", "half": "top", @@ -138345,7 +153582,7 @@ } }, { - "id": 17897, + "id": 19681, "properties": { "facing": "south", "half": "top", @@ -138354,7 +153591,7 @@ } }, { - "id": 17898, + "id": 19682, "properties": { "facing": "south", "half": "top", @@ -138363,7 +153600,7 @@ } }, { - "id": 17899, + "id": 19683, "properties": { "facing": "south", "half": "top", @@ -138372,7 +153609,7 @@ } }, { - "id": 17900, + "id": 19684, "properties": { "facing": "south", "half": "top", @@ -138381,7 +153618,7 @@ } }, { - "id": 17901, + "id": 19685, "properties": { "facing": "south", "half": "top", @@ -138390,7 +153627,7 @@ } }, { - "id": 17902, + "id": 19686, "properties": { "facing": "south", "half": "top", @@ -138399,7 +153636,7 @@ } }, { - "id": 17903, + "id": 19687, "properties": { "facing": "south", "half": "top", @@ -138408,7 +153645,7 @@ } }, { - "id": 17904, + "id": 19688, "properties": { "facing": "south", "half": "bottom", @@ -138417,7 +153654,7 @@ } }, { - "id": 17905, + "id": 19689, "properties": { "facing": "south", "half": "bottom", @@ -138426,7 +153663,7 @@ } }, { - "id": 17906, + "id": 19690, "properties": { "facing": "south", "half": "bottom", @@ -138435,7 +153672,7 @@ } }, { - "id": 17907, + "id": 19691, "properties": { "facing": "south", "half": "bottom", @@ -138444,7 +153681,7 @@ } }, { - "id": 17908, + "id": 19692, "properties": { "facing": "south", "half": "bottom", @@ -138453,7 +153690,7 @@ } }, { - "id": 17909, + "id": 19693, "properties": { "facing": "south", "half": "bottom", @@ -138462,7 +153699,7 @@ } }, { - "id": 17910, + "id": 19694, "properties": { "facing": "south", "half": "bottom", @@ -138471,7 +153708,7 @@ } }, { - "id": 17911, + "id": 19695, "properties": { "facing": "south", "half": "bottom", @@ -138480,7 +153717,7 @@ } }, { - "id": 17912, + "id": 19696, "properties": { "facing": "south", "half": "bottom", @@ -138489,7 +153726,7 @@ } }, { - "id": 17913, + "id": 19697, "properties": { "facing": "south", "half": "bottom", @@ -138498,7 +153735,7 @@ } }, { - "id": 17914, + "id": 19698, "properties": { "facing": "west", "half": "top", @@ -138507,7 +153744,7 @@ } }, { - "id": 17915, + "id": 19699, "properties": { "facing": "west", "half": "top", @@ -138516,7 +153753,7 @@ } }, { - "id": 17916, + "id": 19700, "properties": { "facing": "west", "half": "top", @@ -138525,7 +153762,7 @@ } }, { - "id": 17917, + "id": 19701, "properties": { "facing": "west", "half": "top", @@ -138534,7 +153771,7 @@ } }, { - "id": 17918, + "id": 19702, "properties": { "facing": "west", "half": "top", @@ -138543,7 +153780,7 @@ } }, { - "id": 17919, + "id": 19703, "properties": { "facing": "west", "half": "top", @@ -138552,7 +153789,7 @@ } }, { - "id": 17920, + "id": 19704, "properties": { "facing": "west", "half": "top", @@ -138561,7 +153798,7 @@ } }, { - "id": 17921, + "id": 19705, "properties": { "facing": "west", "half": "top", @@ -138570,7 +153807,7 @@ } }, { - "id": 17922, + "id": 19706, "properties": { "facing": "west", "half": "top", @@ -138579,7 +153816,7 @@ } }, { - "id": 17923, + "id": 19707, "properties": { "facing": "west", "half": "top", @@ -138588,7 +153825,7 @@ } }, { - "id": 17924, + "id": 19708, "properties": { "facing": "west", "half": "bottom", @@ -138597,7 +153834,7 @@ } }, { - "id": 17925, + "id": 19709, "properties": { "facing": "west", "half": "bottom", @@ -138606,7 +153843,7 @@ } }, { - "id": 17926, + "id": 19710, "properties": { "facing": "west", "half": "bottom", @@ -138615,7 +153852,7 @@ } }, { - "id": 17927, + "id": 19711, "properties": { "facing": "west", "half": "bottom", @@ -138624,7 +153861,7 @@ } }, { - "id": 17928, + "id": 19712, "properties": { "facing": "west", "half": "bottom", @@ -138633,7 +153870,7 @@ } }, { - "id": 17929, + "id": 19713, "properties": { "facing": "west", "half": "bottom", @@ -138642,7 +153879,7 @@ } }, { - "id": 17930, + "id": 19714, "properties": { "facing": "west", "half": "bottom", @@ -138651,7 +153888,7 @@ } }, { - "id": 17931, + "id": 19715, "properties": { "facing": "west", "half": "bottom", @@ -138660,7 +153897,7 @@ } }, { - "id": 17932, + "id": 19716, "properties": { "facing": "west", "half": "bottom", @@ -138669,7 +153906,7 @@ } }, { - "id": 17933, + "id": 19717, "properties": { "facing": "west", "half": "bottom", @@ -138678,7 +153915,7 @@ } }, { - "id": 17934, + "id": 19718, "properties": { "facing": "east", "half": "top", @@ -138687,7 +153924,7 @@ } }, { - "id": 17935, + "id": 19719, "properties": { "facing": "east", "half": "top", @@ -138696,7 +153933,7 @@ } }, { - "id": 17936, + "id": 19720, "properties": { "facing": "east", "half": "top", @@ -138705,7 +153942,7 @@ } }, { - "id": 17937, + "id": 19721, "properties": { "facing": "east", "half": "top", @@ -138714,7 +153951,7 @@ } }, { - "id": 17938, + "id": 19722, "properties": { "facing": "east", "half": "top", @@ -138723,7 +153960,7 @@ } }, { - "id": 17939, + "id": 19723, "properties": { "facing": "east", "half": "top", @@ -138732,7 +153969,7 @@ } }, { - "id": 17940, + "id": 19724, "properties": { "facing": "east", "half": "top", @@ -138741,7 +153978,7 @@ } }, { - "id": 17941, + "id": 19725, "properties": { "facing": "east", "half": "top", @@ -138750,7 +153987,7 @@ } }, { - "id": 17942, + "id": 19726, "properties": { "facing": "east", "half": "top", @@ -138759,7 +153996,7 @@ } }, { - "id": 17943, + "id": 19727, "properties": { "facing": "east", "half": "top", @@ -138768,7 +154005,7 @@ } }, { - "id": 17944, + "id": 19728, "properties": { "facing": "east", "half": "bottom", @@ -138777,7 +154014,7 @@ } }, { - "id": 17945, + "id": 19729, "properties": { "facing": "east", "half": "bottom", @@ -138786,7 +154023,7 @@ } }, { - "id": 17946, + "id": 19730, "properties": { "facing": "east", "half": "bottom", @@ -138795,7 +154032,7 @@ } }, { - "id": 17947, + "id": 19731, "properties": { "facing": "east", "half": "bottom", @@ -138804,7 +154041,7 @@ } }, { - "id": 17948, + "id": 19732, "properties": { "facing": "east", "half": "bottom", @@ -138813,7 +154050,7 @@ } }, { - "id": 17949, + "id": 19733, "properties": { "facing": "east", "half": "bottom", @@ -138822,7 +154059,7 @@ } }, { - "id": 17950, + "id": 19734, "properties": { "facing": "east", "half": "bottom", @@ -138831,7 +154068,7 @@ } }, { - "id": 17951, + "id": 19735, "properties": { "facing": "east", "half": "bottom", @@ -138840,7 +154077,7 @@ } }, { - "id": 17952, + "id": 19736, "properties": { "facing": "east", "half": "bottom", @@ -138849,7 +154086,7 @@ } }, { - "id": 17953, + "id": 19737, "properties": { "facing": "east", "half": "bottom", @@ -138892,7 +154129,7 @@ }, "states": [ { - "id": 17986, + "id": 19770, "properties": { "east": "none", "north": "none", @@ -138903,7 +154140,7 @@ } }, { - "id": 17987, + "id": 19771, "properties": { "east": "none", "north": "none", @@ -138914,7 +154151,7 @@ } }, { - "id": 17988, + "id": 19772, "properties": { "east": "none", "north": "none", @@ -138926,7 +154163,7 @@ }, { "default": true, - "id": 17989, + "id": 19773, "properties": { "east": "none", "north": "none", @@ -138937,7 +154174,7 @@ } }, { - "id": 17990, + "id": 19774, "properties": { "east": "none", "north": "none", @@ -138948,7 +154185,7 @@ } }, { - "id": 17991, + "id": 19775, "properties": { "east": "none", "north": "none", @@ -138959,7 +154196,7 @@ } }, { - "id": 17992, + "id": 19776, "properties": { "east": "none", "north": "none", @@ -138970,7 +154207,7 @@ } }, { - "id": 17993, + "id": 19777, "properties": { "east": "none", "north": "none", @@ -138981,7 +154218,7 @@ } }, { - "id": 17994, + "id": 19778, "properties": { "east": "none", "north": "none", @@ -138992,7 +154229,7 @@ } }, { - "id": 17995, + "id": 19779, "properties": { "east": "none", "north": "none", @@ -139003,7 +154240,7 @@ } }, { - "id": 17996, + "id": 19780, "properties": { "east": "none", "north": "none", @@ -139014,7 +154251,7 @@ } }, { - "id": 17997, + "id": 19781, "properties": { "east": "none", "north": "none", @@ -139025,7 +154262,7 @@ } }, { - "id": 17998, + "id": 19782, "properties": { "east": "none", "north": "none", @@ -139036,7 +154273,7 @@ } }, { - "id": 17999, + "id": 19783, "properties": { "east": "none", "north": "none", @@ -139047,7 +154284,7 @@ } }, { - "id": 18000, + "id": 19784, "properties": { "east": "none", "north": "none", @@ -139058,7 +154295,7 @@ } }, { - "id": 18001, + "id": 19785, "properties": { "east": "none", "north": "none", @@ -139069,7 +154306,7 @@ } }, { - "id": 18002, + "id": 19786, "properties": { "east": "none", "north": "none", @@ -139080,7 +154317,7 @@ } }, { - "id": 18003, + "id": 19787, "properties": { "east": "none", "north": "none", @@ -139091,7 +154328,7 @@ } }, { - "id": 18004, + "id": 19788, "properties": { "east": "none", "north": "none", @@ -139102,7 +154339,7 @@ } }, { - "id": 18005, + "id": 19789, "properties": { "east": "none", "north": "none", @@ -139113,7 +154350,7 @@ } }, { - "id": 18006, + "id": 19790, "properties": { "east": "none", "north": "none", @@ -139124,7 +154361,7 @@ } }, { - "id": 18007, + "id": 19791, "properties": { "east": "none", "north": "none", @@ -139135,7 +154372,7 @@ } }, { - "id": 18008, + "id": 19792, "properties": { "east": "none", "north": "none", @@ -139146,7 +154383,7 @@ } }, { - "id": 18009, + "id": 19793, "properties": { "east": "none", "north": "none", @@ -139157,7 +154394,7 @@ } }, { - "id": 18010, + "id": 19794, "properties": { "east": "none", "north": "none", @@ -139168,7 +154405,7 @@ } }, { - "id": 18011, + "id": 19795, "properties": { "east": "none", "north": "none", @@ -139179,7 +154416,7 @@ } }, { - "id": 18012, + "id": 19796, "properties": { "east": "none", "north": "none", @@ -139190,7 +154427,7 @@ } }, { - "id": 18013, + "id": 19797, "properties": { "east": "none", "north": "none", @@ -139201,7 +154438,7 @@ } }, { - "id": 18014, + "id": 19798, "properties": { "east": "none", "north": "none", @@ -139212,7 +154449,7 @@ } }, { - "id": 18015, + "id": 19799, "properties": { "east": "none", "north": "none", @@ -139223,7 +154460,7 @@ } }, { - "id": 18016, + "id": 19800, "properties": { "east": "none", "north": "none", @@ -139234,7 +154471,7 @@ } }, { - "id": 18017, + "id": 19801, "properties": { "east": "none", "north": "none", @@ -139245,7 +154482,7 @@ } }, { - "id": 18018, + "id": 19802, "properties": { "east": "none", "north": "none", @@ -139256,7 +154493,7 @@ } }, { - "id": 18019, + "id": 19803, "properties": { "east": "none", "north": "none", @@ -139267,7 +154504,7 @@ } }, { - "id": 18020, + "id": 19804, "properties": { "east": "none", "north": "none", @@ -139278,7 +154515,7 @@ } }, { - "id": 18021, + "id": 19805, "properties": { "east": "none", "north": "none", @@ -139289,7 +154526,7 @@ } }, { - "id": 18022, + "id": 19806, "properties": { "east": "none", "north": "low", @@ -139300,7 +154537,7 @@ } }, { - "id": 18023, + "id": 19807, "properties": { "east": "none", "north": "low", @@ -139311,7 +154548,7 @@ } }, { - "id": 18024, + "id": 19808, "properties": { "east": "none", "north": "low", @@ -139322,7 +154559,7 @@ } }, { - "id": 18025, + "id": 19809, "properties": { "east": "none", "north": "low", @@ -139333,7 +154570,7 @@ } }, { - "id": 18026, + "id": 19810, "properties": { "east": "none", "north": "low", @@ -139344,7 +154581,7 @@ } }, { - "id": 18027, + "id": 19811, "properties": { "east": "none", "north": "low", @@ -139355,7 +154592,7 @@ } }, { - "id": 18028, + "id": 19812, "properties": { "east": "none", "north": "low", @@ -139366,7 +154603,7 @@ } }, { - "id": 18029, + "id": 19813, "properties": { "east": "none", "north": "low", @@ -139377,7 +154614,7 @@ } }, { - "id": 18030, + "id": 19814, "properties": { "east": "none", "north": "low", @@ -139388,7 +154625,7 @@ } }, { - "id": 18031, + "id": 19815, "properties": { "east": "none", "north": "low", @@ -139399,7 +154636,7 @@ } }, { - "id": 18032, + "id": 19816, "properties": { "east": "none", "north": "low", @@ -139410,7 +154647,7 @@ } }, { - "id": 18033, + "id": 19817, "properties": { "east": "none", "north": "low", @@ -139421,7 +154658,7 @@ } }, { - "id": 18034, + "id": 19818, "properties": { "east": "none", "north": "low", @@ -139432,7 +154669,7 @@ } }, { - "id": 18035, + "id": 19819, "properties": { "east": "none", "north": "low", @@ -139443,7 +154680,7 @@ } }, { - "id": 18036, + "id": 19820, "properties": { "east": "none", "north": "low", @@ -139454,7 +154691,7 @@ } }, { - "id": 18037, + "id": 19821, "properties": { "east": "none", "north": "low", @@ -139465,7 +154702,7 @@ } }, { - "id": 18038, + "id": 19822, "properties": { "east": "none", "north": "low", @@ -139476,7 +154713,7 @@ } }, { - "id": 18039, + "id": 19823, "properties": { "east": "none", "north": "low", @@ -139487,7 +154724,7 @@ } }, { - "id": 18040, + "id": 19824, "properties": { "east": "none", "north": "low", @@ -139498,7 +154735,7 @@ } }, { - "id": 18041, + "id": 19825, "properties": { "east": "none", "north": "low", @@ -139509,7 +154746,7 @@ } }, { - "id": 18042, + "id": 19826, "properties": { "east": "none", "north": "low", @@ -139520,7 +154757,7 @@ } }, { - "id": 18043, + "id": 19827, "properties": { "east": "none", "north": "low", @@ -139531,7 +154768,7 @@ } }, { - "id": 18044, + "id": 19828, "properties": { "east": "none", "north": "low", @@ -139542,7 +154779,7 @@ } }, { - "id": 18045, + "id": 19829, "properties": { "east": "none", "north": "low", @@ -139553,7 +154790,7 @@ } }, { - "id": 18046, + "id": 19830, "properties": { "east": "none", "north": "low", @@ -139564,7 +154801,7 @@ } }, { - "id": 18047, + "id": 19831, "properties": { "east": "none", "north": "low", @@ -139575,7 +154812,7 @@ } }, { - "id": 18048, + "id": 19832, "properties": { "east": "none", "north": "low", @@ -139586,7 +154823,7 @@ } }, { - "id": 18049, + "id": 19833, "properties": { "east": "none", "north": "low", @@ -139597,7 +154834,7 @@ } }, { - "id": 18050, + "id": 19834, "properties": { "east": "none", "north": "low", @@ -139608,7 +154845,7 @@ } }, { - "id": 18051, + "id": 19835, "properties": { "east": "none", "north": "low", @@ -139619,7 +154856,7 @@ } }, { - "id": 18052, + "id": 19836, "properties": { "east": "none", "north": "low", @@ -139630,7 +154867,7 @@ } }, { - "id": 18053, + "id": 19837, "properties": { "east": "none", "north": "low", @@ -139641,7 +154878,7 @@ } }, { - "id": 18054, + "id": 19838, "properties": { "east": "none", "north": "low", @@ -139652,7 +154889,7 @@ } }, { - "id": 18055, + "id": 19839, "properties": { "east": "none", "north": "low", @@ -139663,7 +154900,7 @@ } }, { - "id": 18056, + "id": 19840, "properties": { "east": "none", "north": "low", @@ -139674,7 +154911,7 @@ } }, { - "id": 18057, + "id": 19841, "properties": { "east": "none", "north": "low", @@ -139685,7 +154922,7 @@ } }, { - "id": 18058, + "id": 19842, "properties": { "east": "none", "north": "tall", @@ -139696,7 +154933,7 @@ } }, { - "id": 18059, + "id": 19843, "properties": { "east": "none", "north": "tall", @@ -139707,7 +154944,7 @@ } }, { - "id": 18060, + "id": 19844, "properties": { "east": "none", "north": "tall", @@ -139718,7 +154955,7 @@ } }, { - "id": 18061, + "id": 19845, "properties": { "east": "none", "north": "tall", @@ -139729,7 +154966,7 @@ } }, { - "id": 18062, + "id": 19846, "properties": { "east": "none", "north": "tall", @@ -139740,7 +154977,7 @@ } }, { - "id": 18063, + "id": 19847, "properties": { "east": "none", "north": "tall", @@ -139751,7 +154988,7 @@ } }, { - "id": 18064, + "id": 19848, "properties": { "east": "none", "north": "tall", @@ -139762,7 +154999,7 @@ } }, { - "id": 18065, + "id": 19849, "properties": { "east": "none", "north": "tall", @@ -139773,7 +155010,7 @@ } }, { - "id": 18066, + "id": 19850, "properties": { "east": "none", "north": "tall", @@ -139784,7 +155021,7 @@ } }, { - "id": 18067, + "id": 19851, "properties": { "east": "none", "north": "tall", @@ -139795,7 +155032,7 @@ } }, { - "id": 18068, + "id": 19852, "properties": { "east": "none", "north": "tall", @@ -139806,7 +155043,7 @@ } }, { - "id": 18069, + "id": 19853, "properties": { "east": "none", "north": "tall", @@ -139817,7 +155054,7 @@ } }, { - "id": 18070, + "id": 19854, "properties": { "east": "none", "north": "tall", @@ -139828,7 +155065,7 @@ } }, { - "id": 18071, + "id": 19855, "properties": { "east": "none", "north": "tall", @@ -139839,7 +155076,7 @@ } }, { - "id": 18072, + "id": 19856, "properties": { "east": "none", "north": "tall", @@ -139850,7 +155087,7 @@ } }, { - "id": 18073, + "id": 19857, "properties": { "east": "none", "north": "tall", @@ -139861,7 +155098,7 @@ } }, { - "id": 18074, + "id": 19858, "properties": { "east": "none", "north": "tall", @@ -139872,7 +155109,7 @@ } }, { - "id": 18075, + "id": 19859, "properties": { "east": "none", "north": "tall", @@ -139883,7 +155120,7 @@ } }, { - "id": 18076, + "id": 19860, "properties": { "east": "none", "north": "tall", @@ -139894,7 +155131,7 @@ } }, { - "id": 18077, + "id": 19861, "properties": { "east": "none", "north": "tall", @@ -139905,7 +155142,7 @@ } }, { - "id": 18078, + "id": 19862, "properties": { "east": "none", "north": "tall", @@ -139916,7 +155153,7 @@ } }, { - "id": 18079, + "id": 19863, "properties": { "east": "none", "north": "tall", @@ -139927,7 +155164,7 @@ } }, { - "id": 18080, + "id": 19864, "properties": { "east": "none", "north": "tall", @@ -139938,7 +155175,7 @@ } }, { - "id": 18081, + "id": 19865, "properties": { "east": "none", "north": "tall", @@ -139949,7 +155186,7 @@ } }, { - "id": 18082, + "id": 19866, "properties": { "east": "none", "north": "tall", @@ -139960,7 +155197,7 @@ } }, { - "id": 18083, + "id": 19867, "properties": { "east": "none", "north": "tall", @@ -139971,7 +155208,7 @@ } }, { - "id": 18084, + "id": 19868, "properties": { "east": "none", "north": "tall", @@ -139982,7 +155219,7 @@ } }, { - "id": 18085, + "id": 19869, "properties": { "east": "none", "north": "tall", @@ -139993,7 +155230,7 @@ } }, { - "id": 18086, + "id": 19870, "properties": { "east": "none", "north": "tall", @@ -140004,7 +155241,7 @@ } }, { - "id": 18087, + "id": 19871, "properties": { "east": "none", "north": "tall", @@ -140015,7 +155252,7 @@ } }, { - "id": 18088, + "id": 19872, "properties": { "east": "none", "north": "tall", @@ -140026,7 +155263,7 @@ } }, { - "id": 18089, + "id": 19873, "properties": { "east": "none", "north": "tall", @@ -140037,7 +155274,7 @@ } }, { - "id": 18090, + "id": 19874, "properties": { "east": "none", "north": "tall", @@ -140048,7 +155285,7 @@ } }, { - "id": 18091, + "id": 19875, "properties": { "east": "none", "north": "tall", @@ -140059,7 +155296,7 @@ } }, { - "id": 18092, + "id": 19876, "properties": { "east": "none", "north": "tall", @@ -140070,7 +155307,7 @@ } }, { - "id": 18093, + "id": 19877, "properties": { "east": "none", "north": "tall", @@ -140081,7 +155318,7 @@ } }, { - "id": 18094, + "id": 19878, "properties": { "east": "low", "north": "none", @@ -140092,7 +155329,7 @@ } }, { - "id": 18095, + "id": 19879, "properties": { "east": "low", "north": "none", @@ -140103,7 +155340,7 @@ } }, { - "id": 18096, + "id": 19880, "properties": { "east": "low", "north": "none", @@ -140114,7 +155351,7 @@ } }, { - "id": 18097, + "id": 19881, "properties": { "east": "low", "north": "none", @@ -140125,7 +155362,7 @@ } }, { - "id": 18098, + "id": 19882, "properties": { "east": "low", "north": "none", @@ -140136,7 +155373,7 @@ } }, { - "id": 18099, + "id": 19883, "properties": { "east": "low", "north": "none", @@ -140147,7 +155384,7 @@ } }, { - "id": 18100, + "id": 19884, "properties": { "east": "low", "north": "none", @@ -140158,7 +155395,7 @@ } }, { - "id": 18101, + "id": 19885, "properties": { "east": "low", "north": "none", @@ -140169,7 +155406,7 @@ } }, { - "id": 18102, + "id": 19886, "properties": { "east": "low", "north": "none", @@ -140180,7 +155417,7 @@ } }, { - "id": 18103, + "id": 19887, "properties": { "east": "low", "north": "none", @@ -140191,7 +155428,7 @@ } }, { - "id": 18104, + "id": 19888, "properties": { "east": "low", "north": "none", @@ -140202,7 +155439,7 @@ } }, { - "id": 18105, + "id": 19889, "properties": { "east": "low", "north": "none", @@ -140213,7 +155450,7 @@ } }, { - "id": 18106, + "id": 19890, "properties": { "east": "low", "north": "none", @@ -140224,7 +155461,7 @@ } }, { - "id": 18107, + "id": 19891, "properties": { "east": "low", "north": "none", @@ -140235,7 +155472,7 @@ } }, { - "id": 18108, + "id": 19892, "properties": { "east": "low", "north": "none", @@ -140246,7 +155483,7 @@ } }, { - "id": 18109, + "id": 19893, "properties": { "east": "low", "north": "none", @@ -140257,7 +155494,7 @@ } }, { - "id": 18110, + "id": 19894, "properties": { "east": "low", "north": "none", @@ -140268,7 +155505,7 @@ } }, { - "id": 18111, + "id": 19895, "properties": { "east": "low", "north": "none", @@ -140279,7 +155516,7 @@ } }, { - "id": 18112, + "id": 19896, "properties": { "east": "low", "north": "none", @@ -140290,7 +155527,7 @@ } }, { - "id": 18113, + "id": 19897, "properties": { "east": "low", "north": "none", @@ -140301,7 +155538,7 @@ } }, { - "id": 18114, + "id": 19898, "properties": { "east": "low", "north": "none", @@ -140312,7 +155549,7 @@ } }, { - "id": 18115, + "id": 19899, "properties": { "east": "low", "north": "none", @@ -140323,7 +155560,7 @@ } }, { - "id": 18116, + "id": 19900, "properties": { "east": "low", "north": "none", @@ -140334,7 +155571,7 @@ } }, { - "id": 18117, + "id": 19901, "properties": { "east": "low", "north": "none", @@ -140345,7 +155582,7 @@ } }, { - "id": 18118, + "id": 19902, "properties": { "east": "low", "north": "none", @@ -140356,7 +155593,7 @@ } }, { - "id": 18119, + "id": 19903, "properties": { "east": "low", "north": "none", @@ -140367,7 +155604,7 @@ } }, { - "id": 18120, + "id": 19904, "properties": { "east": "low", "north": "none", @@ -140378,7 +155615,7 @@ } }, { - "id": 18121, + "id": 19905, "properties": { "east": "low", "north": "none", @@ -140389,7 +155626,7 @@ } }, { - "id": 18122, + "id": 19906, "properties": { "east": "low", "north": "none", @@ -140400,7 +155637,7 @@ } }, { - "id": 18123, + "id": 19907, "properties": { "east": "low", "north": "none", @@ -140411,7 +155648,7 @@ } }, { - "id": 18124, + "id": 19908, "properties": { "east": "low", "north": "none", @@ -140422,7 +155659,7 @@ } }, { - "id": 18125, + "id": 19909, "properties": { "east": "low", "north": "none", @@ -140433,7 +155670,7 @@ } }, { - "id": 18126, + "id": 19910, "properties": { "east": "low", "north": "none", @@ -140444,7 +155681,7 @@ } }, { - "id": 18127, + "id": 19911, "properties": { "east": "low", "north": "none", @@ -140455,7 +155692,7 @@ } }, { - "id": 18128, + "id": 19912, "properties": { "east": "low", "north": "none", @@ -140466,7 +155703,7 @@ } }, { - "id": 18129, + "id": 19913, "properties": { "east": "low", "north": "none", @@ -140477,7 +155714,7 @@ } }, { - "id": 18130, + "id": 19914, "properties": { "east": "low", "north": "low", @@ -140488,7 +155725,7 @@ } }, { - "id": 18131, + "id": 19915, "properties": { "east": "low", "north": "low", @@ -140499,7 +155736,7 @@ } }, { - "id": 18132, + "id": 19916, "properties": { "east": "low", "north": "low", @@ -140510,7 +155747,7 @@ } }, { - "id": 18133, + "id": 19917, "properties": { "east": "low", "north": "low", @@ -140521,7 +155758,7 @@ } }, { - "id": 18134, + "id": 19918, "properties": { "east": "low", "north": "low", @@ -140532,7 +155769,7 @@ } }, { - "id": 18135, + "id": 19919, "properties": { "east": "low", "north": "low", @@ -140543,7 +155780,7 @@ } }, { - "id": 18136, + "id": 19920, "properties": { "east": "low", "north": "low", @@ -140554,7 +155791,7 @@ } }, { - "id": 18137, + "id": 19921, "properties": { "east": "low", "north": "low", @@ -140565,7 +155802,7 @@ } }, { - "id": 18138, + "id": 19922, "properties": { "east": "low", "north": "low", @@ -140576,7 +155813,7 @@ } }, { - "id": 18139, + "id": 19923, "properties": { "east": "low", "north": "low", @@ -140587,7 +155824,7 @@ } }, { - "id": 18140, + "id": 19924, "properties": { "east": "low", "north": "low", @@ -140598,7 +155835,7 @@ } }, { - "id": 18141, + "id": 19925, "properties": { "east": "low", "north": "low", @@ -140609,7 +155846,7 @@ } }, { - "id": 18142, + "id": 19926, "properties": { "east": "low", "north": "low", @@ -140620,7 +155857,7 @@ } }, { - "id": 18143, + "id": 19927, "properties": { "east": "low", "north": "low", @@ -140631,7 +155868,7 @@ } }, { - "id": 18144, + "id": 19928, "properties": { "east": "low", "north": "low", @@ -140642,7 +155879,7 @@ } }, { - "id": 18145, + "id": 19929, "properties": { "east": "low", "north": "low", @@ -140653,7 +155890,7 @@ } }, { - "id": 18146, + "id": 19930, "properties": { "east": "low", "north": "low", @@ -140664,7 +155901,7 @@ } }, { - "id": 18147, + "id": 19931, "properties": { "east": "low", "north": "low", @@ -140675,7 +155912,7 @@ } }, { - "id": 18148, + "id": 19932, "properties": { "east": "low", "north": "low", @@ -140686,7 +155923,7 @@ } }, { - "id": 18149, + "id": 19933, "properties": { "east": "low", "north": "low", @@ -140697,7 +155934,7 @@ } }, { - "id": 18150, + "id": 19934, "properties": { "east": "low", "north": "low", @@ -140708,7 +155945,7 @@ } }, { - "id": 18151, + "id": 19935, "properties": { "east": "low", "north": "low", @@ -140719,7 +155956,7 @@ } }, { - "id": 18152, + "id": 19936, "properties": { "east": "low", "north": "low", @@ -140730,7 +155967,7 @@ } }, { - "id": 18153, + "id": 19937, "properties": { "east": "low", "north": "low", @@ -140741,7 +155978,7 @@ } }, { - "id": 18154, + "id": 19938, "properties": { "east": "low", "north": "low", @@ -140752,7 +155989,7 @@ } }, { - "id": 18155, + "id": 19939, "properties": { "east": "low", "north": "low", @@ -140763,7 +156000,7 @@ } }, { - "id": 18156, + "id": 19940, "properties": { "east": "low", "north": "low", @@ -140774,7 +156011,7 @@ } }, { - "id": 18157, + "id": 19941, "properties": { "east": "low", "north": "low", @@ -140785,7 +156022,7 @@ } }, { - "id": 18158, + "id": 19942, "properties": { "east": "low", "north": "low", @@ -140796,7 +156033,7 @@ } }, { - "id": 18159, + "id": 19943, "properties": { "east": "low", "north": "low", @@ -140807,7 +156044,7 @@ } }, { - "id": 18160, + "id": 19944, "properties": { "east": "low", "north": "low", @@ -140818,7 +156055,7 @@ } }, { - "id": 18161, + "id": 19945, "properties": { "east": "low", "north": "low", @@ -140829,7 +156066,7 @@ } }, { - "id": 18162, + "id": 19946, "properties": { "east": "low", "north": "low", @@ -140840,7 +156077,7 @@ } }, { - "id": 18163, + "id": 19947, "properties": { "east": "low", "north": "low", @@ -140851,7 +156088,7 @@ } }, { - "id": 18164, + "id": 19948, "properties": { "east": "low", "north": "low", @@ -140862,7 +156099,7 @@ } }, { - "id": 18165, + "id": 19949, "properties": { "east": "low", "north": "low", @@ -140873,7 +156110,7 @@ } }, { - "id": 18166, + "id": 19950, "properties": { "east": "low", "north": "tall", @@ -140884,7 +156121,7 @@ } }, { - "id": 18167, + "id": 19951, "properties": { "east": "low", "north": "tall", @@ -140895,7 +156132,7 @@ } }, { - "id": 18168, + "id": 19952, "properties": { "east": "low", "north": "tall", @@ -140906,7 +156143,7 @@ } }, { - "id": 18169, + "id": 19953, "properties": { "east": "low", "north": "tall", @@ -140917,7 +156154,7 @@ } }, { - "id": 18170, + "id": 19954, "properties": { "east": "low", "north": "tall", @@ -140928,7 +156165,7 @@ } }, { - "id": 18171, + "id": 19955, "properties": { "east": "low", "north": "tall", @@ -140939,7 +156176,7 @@ } }, { - "id": 18172, + "id": 19956, "properties": { "east": "low", "north": "tall", @@ -140950,7 +156187,7 @@ } }, { - "id": 18173, + "id": 19957, "properties": { "east": "low", "north": "tall", @@ -140961,7 +156198,7 @@ } }, { - "id": 18174, + "id": 19958, "properties": { "east": "low", "north": "tall", @@ -140972,7 +156209,7 @@ } }, { - "id": 18175, + "id": 19959, "properties": { "east": "low", "north": "tall", @@ -140983,7 +156220,7 @@ } }, { - "id": 18176, + "id": 19960, "properties": { "east": "low", "north": "tall", @@ -140994,7 +156231,7 @@ } }, { - "id": 18177, + "id": 19961, "properties": { "east": "low", "north": "tall", @@ -141005,7 +156242,7 @@ } }, { - "id": 18178, + "id": 19962, "properties": { "east": "low", "north": "tall", @@ -141016,7 +156253,7 @@ } }, { - "id": 18179, + "id": 19963, "properties": { "east": "low", "north": "tall", @@ -141027,7 +156264,7 @@ } }, { - "id": 18180, + "id": 19964, "properties": { "east": "low", "north": "tall", @@ -141038,7 +156275,7 @@ } }, { - "id": 18181, + "id": 19965, "properties": { "east": "low", "north": "tall", @@ -141049,7 +156286,7 @@ } }, { - "id": 18182, + "id": 19966, "properties": { "east": "low", "north": "tall", @@ -141060,7 +156297,7 @@ } }, { - "id": 18183, + "id": 19967, "properties": { "east": "low", "north": "tall", @@ -141071,7 +156308,7 @@ } }, { - "id": 18184, + "id": 19968, "properties": { "east": "low", "north": "tall", @@ -141082,7 +156319,7 @@ } }, { - "id": 18185, + "id": 19969, "properties": { "east": "low", "north": "tall", @@ -141093,7 +156330,7 @@ } }, { - "id": 18186, + "id": 19970, "properties": { "east": "low", "north": "tall", @@ -141104,7 +156341,7 @@ } }, { - "id": 18187, + "id": 19971, "properties": { "east": "low", "north": "tall", @@ -141115,7 +156352,7 @@ } }, { - "id": 18188, + "id": 19972, "properties": { "east": "low", "north": "tall", @@ -141126,7 +156363,7 @@ } }, { - "id": 18189, + "id": 19973, "properties": { "east": "low", "north": "tall", @@ -141137,7 +156374,7 @@ } }, { - "id": 18190, + "id": 19974, "properties": { "east": "low", "north": "tall", @@ -141148,7 +156385,7 @@ } }, { - "id": 18191, + "id": 19975, "properties": { "east": "low", "north": "tall", @@ -141159,7 +156396,7 @@ } }, { - "id": 18192, + "id": 19976, "properties": { "east": "low", "north": "tall", @@ -141170,7 +156407,7 @@ } }, { - "id": 18193, + "id": 19977, "properties": { "east": "low", "north": "tall", @@ -141181,7 +156418,7 @@ } }, { - "id": 18194, + "id": 19978, "properties": { "east": "low", "north": "tall", @@ -141192,7 +156429,7 @@ } }, { - "id": 18195, + "id": 19979, "properties": { "east": "low", "north": "tall", @@ -141203,7 +156440,7 @@ } }, { - "id": 18196, + "id": 19980, "properties": { "east": "low", "north": "tall", @@ -141214,7 +156451,7 @@ } }, { - "id": 18197, + "id": 19981, "properties": { "east": "low", "north": "tall", @@ -141225,7 +156462,7 @@ } }, { - "id": 18198, + "id": 19982, "properties": { "east": "low", "north": "tall", @@ -141236,7 +156473,7 @@ } }, { - "id": 18199, + "id": 19983, "properties": { "east": "low", "north": "tall", @@ -141247,7 +156484,7 @@ } }, { - "id": 18200, + "id": 19984, "properties": { "east": "low", "north": "tall", @@ -141258,7 +156495,7 @@ } }, { - "id": 18201, + "id": 19985, "properties": { "east": "low", "north": "tall", @@ -141269,7 +156506,7 @@ } }, { - "id": 18202, + "id": 19986, "properties": { "east": "tall", "north": "none", @@ -141280,7 +156517,7 @@ } }, { - "id": 18203, + "id": 19987, "properties": { "east": "tall", "north": "none", @@ -141291,7 +156528,7 @@ } }, { - "id": 18204, + "id": 19988, "properties": { "east": "tall", "north": "none", @@ -141302,7 +156539,7 @@ } }, { - "id": 18205, + "id": 19989, "properties": { "east": "tall", "north": "none", @@ -141313,7 +156550,7 @@ } }, { - "id": 18206, + "id": 19990, "properties": { "east": "tall", "north": "none", @@ -141324,7 +156561,7 @@ } }, { - "id": 18207, + "id": 19991, "properties": { "east": "tall", "north": "none", @@ -141335,7 +156572,7 @@ } }, { - "id": 18208, + "id": 19992, "properties": { "east": "tall", "north": "none", @@ -141346,7 +156583,7 @@ } }, { - "id": 18209, + "id": 19993, "properties": { "east": "tall", "north": "none", @@ -141357,7 +156594,7 @@ } }, { - "id": 18210, + "id": 19994, "properties": { "east": "tall", "north": "none", @@ -141368,7 +156605,7 @@ } }, { - "id": 18211, + "id": 19995, "properties": { "east": "tall", "north": "none", @@ -141379,7 +156616,7 @@ } }, { - "id": 18212, + "id": 19996, "properties": { "east": "tall", "north": "none", @@ -141390,7 +156627,7 @@ } }, { - "id": 18213, + "id": 19997, "properties": { "east": "tall", "north": "none", @@ -141401,7 +156638,7 @@ } }, { - "id": 18214, + "id": 19998, "properties": { "east": "tall", "north": "none", @@ -141412,7 +156649,7 @@ } }, { - "id": 18215, + "id": 19999, "properties": { "east": "tall", "north": "none", @@ -141423,7 +156660,7 @@ } }, { - "id": 18216, + "id": 20000, "properties": { "east": "tall", "north": "none", @@ -141434,7 +156671,7 @@ } }, { - "id": 18217, + "id": 20001, "properties": { "east": "tall", "north": "none", @@ -141445,7 +156682,7 @@ } }, { - "id": 18218, + "id": 20002, "properties": { "east": "tall", "north": "none", @@ -141456,7 +156693,7 @@ } }, { - "id": 18219, + "id": 20003, "properties": { "east": "tall", "north": "none", @@ -141467,7 +156704,7 @@ } }, { - "id": 18220, + "id": 20004, "properties": { "east": "tall", "north": "none", @@ -141478,7 +156715,7 @@ } }, { - "id": 18221, + "id": 20005, "properties": { "east": "tall", "north": "none", @@ -141489,7 +156726,7 @@ } }, { - "id": 18222, + "id": 20006, "properties": { "east": "tall", "north": "none", @@ -141500,7 +156737,7 @@ } }, { - "id": 18223, + "id": 20007, "properties": { "east": "tall", "north": "none", @@ -141511,7 +156748,7 @@ } }, { - "id": 18224, + "id": 20008, "properties": { "east": "tall", "north": "none", @@ -141522,7 +156759,7 @@ } }, { - "id": 18225, + "id": 20009, "properties": { "east": "tall", "north": "none", @@ -141533,7 +156770,7 @@ } }, { - "id": 18226, + "id": 20010, "properties": { "east": "tall", "north": "none", @@ -141544,7 +156781,7 @@ } }, { - "id": 18227, + "id": 20011, "properties": { "east": "tall", "north": "none", @@ -141555,7 +156792,7 @@ } }, { - "id": 18228, + "id": 20012, "properties": { "east": "tall", "north": "none", @@ -141566,7 +156803,7 @@ } }, { - "id": 18229, + "id": 20013, "properties": { "east": "tall", "north": "none", @@ -141577,7 +156814,7 @@ } }, { - "id": 18230, + "id": 20014, "properties": { "east": "tall", "north": "none", @@ -141588,7 +156825,7 @@ } }, { - "id": 18231, + "id": 20015, "properties": { "east": "tall", "north": "none", @@ -141599,7 +156836,7 @@ } }, { - "id": 18232, + "id": 20016, "properties": { "east": "tall", "north": "none", @@ -141610,7 +156847,7 @@ } }, { - "id": 18233, + "id": 20017, "properties": { "east": "tall", "north": "none", @@ -141621,7 +156858,7 @@ } }, { - "id": 18234, + "id": 20018, "properties": { "east": "tall", "north": "none", @@ -141632,7 +156869,7 @@ } }, { - "id": 18235, + "id": 20019, "properties": { "east": "tall", "north": "none", @@ -141643,7 +156880,7 @@ } }, { - "id": 18236, + "id": 20020, "properties": { "east": "tall", "north": "none", @@ -141654,7 +156891,7 @@ } }, { - "id": 18237, + "id": 20021, "properties": { "east": "tall", "north": "none", @@ -141665,7 +156902,7 @@ } }, { - "id": 18238, + "id": 20022, "properties": { "east": "tall", "north": "low", @@ -141676,7 +156913,7 @@ } }, { - "id": 18239, + "id": 20023, "properties": { "east": "tall", "north": "low", @@ -141687,7 +156924,7 @@ } }, { - "id": 18240, + "id": 20024, "properties": { "east": "tall", "north": "low", @@ -141698,7 +156935,7 @@ } }, { - "id": 18241, + "id": 20025, "properties": { "east": "tall", "north": "low", @@ -141709,7 +156946,7 @@ } }, { - "id": 18242, + "id": 20026, "properties": { "east": "tall", "north": "low", @@ -141720,7 +156957,7 @@ } }, { - "id": 18243, + "id": 20027, "properties": { "east": "tall", "north": "low", @@ -141731,7 +156968,7 @@ } }, { - "id": 18244, + "id": 20028, "properties": { "east": "tall", "north": "low", @@ -141742,7 +156979,7 @@ } }, { - "id": 18245, + "id": 20029, "properties": { "east": "tall", "north": "low", @@ -141753,7 +156990,7 @@ } }, { - "id": 18246, + "id": 20030, "properties": { "east": "tall", "north": "low", @@ -141764,7 +157001,7 @@ } }, { - "id": 18247, + "id": 20031, "properties": { "east": "tall", "north": "low", @@ -141775,7 +157012,7 @@ } }, { - "id": 18248, + "id": 20032, "properties": { "east": "tall", "north": "low", @@ -141786,7 +157023,7 @@ } }, { - "id": 18249, + "id": 20033, "properties": { "east": "tall", "north": "low", @@ -141797,7 +157034,7 @@ } }, { - "id": 18250, + "id": 20034, "properties": { "east": "tall", "north": "low", @@ -141808,7 +157045,7 @@ } }, { - "id": 18251, + "id": 20035, "properties": { "east": "tall", "north": "low", @@ -141819,7 +157056,7 @@ } }, { - "id": 18252, + "id": 20036, "properties": { "east": "tall", "north": "low", @@ -141830,7 +157067,7 @@ } }, { - "id": 18253, + "id": 20037, "properties": { "east": "tall", "north": "low", @@ -141841,7 +157078,7 @@ } }, { - "id": 18254, + "id": 20038, "properties": { "east": "tall", "north": "low", @@ -141852,7 +157089,7 @@ } }, { - "id": 18255, + "id": 20039, "properties": { "east": "tall", "north": "low", @@ -141863,7 +157100,7 @@ } }, { - "id": 18256, + "id": 20040, "properties": { "east": "tall", "north": "low", @@ -141874,7 +157111,7 @@ } }, { - "id": 18257, + "id": 20041, "properties": { "east": "tall", "north": "low", @@ -141885,7 +157122,7 @@ } }, { - "id": 18258, + "id": 20042, "properties": { "east": "tall", "north": "low", @@ -141896,7 +157133,7 @@ } }, { - "id": 18259, + "id": 20043, "properties": { "east": "tall", "north": "low", @@ -141907,7 +157144,7 @@ } }, { - "id": 18260, + "id": 20044, "properties": { "east": "tall", "north": "low", @@ -141918,7 +157155,7 @@ } }, { - "id": 18261, + "id": 20045, "properties": { "east": "tall", "north": "low", @@ -141929,7 +157166,7 @@ } }, { - "id": 18262, + "id": 20046, "properties": { "east": "tall", "north": "low", @@ -141940,7 +157177,7 @@ } }, { - "id": 18263, + "id": 20047, "properties": { "east": "tall", "north": "low", @@ -141951,7 +157188,7 @@ } }, { - "id": 18264, + "id": 20048, "properties": { "east": "tall", "north": "low", @@ -141962,7 +157199,7 @@ } }, { - "id": 18265, + "id": 20049, "properties": { "east": "tall", "north": "low", @@ -141973,7 +157210,7 @@ } }, { - "id": 18266, + "id": 20050, "properties": { "east": "tall", "north": "low", @@ -141984,7 +157221,7 @@ } }, { - "id": 18267, + "id": 20051, "properties": { "east": "tall", "north": "low", @@ -141995,7 +157232,7 @@ } }, { - "id": 18268, + "id": 20052, "properties": { "east": "tall", "north": "low", @@ -142006,7 +157243,7 @@ } }, { - "id": 18269, + "id": 20053, "properties": { "east": "tall", "north": "low", @@ -142017,7 +157254,7 @@ } }, { - "id": 18270, + "id": 20054, "properties": { "east": "tall", "north": "low", @@ -142028,7 +157265,7 @@ } }, { - "id": 18271, + "id": 20055, "properties": { "east": "tall", "north": "low", @@ -142039,7 +157276,7 @@ } }, { - "id": 18272, + "id": 20056, "properties": { "east": "tall", "north": "low", @@ -142050,7 +157287,7 @@ } }, { - "id": 18273, + "id": 20057, "properties": { "east": "tall", "north": "low", @@ -142061,7 +157298,7 @@ } }, { - "id": 18274, + "id": 20058, "properties": { "east": "tall", "north": "tall", @@ -142072,7 +157309,7 @@ } }, { - "id": 18275, + "id": 20059, "properties": { "east": "tall", "north": "tall", @@ -142083,7 +157320,7 @@ } }, { - "id": 18276, + "id": 20060, "properties": { "east": "tall", "north": "tall", @@ -142094,7 +157331,7 @@ } }, { - "id": 18277, + "id": 20061, "properties": { "east": "tall", "north": "tall", @@ -142105,7 +157342,7 @@ } }, { - "id": 18278, + "id": 20062, "properties": { "east": "tall", "north": "tall", @@ -142116,7 +157353,7 @@ } }, { - "id": 18279, + "id": 20063, "properties": { "east": "tall", "north": "tall", @@ -142127,7 +157364,7 @@ } }, { - "id": 18280, + "id": 20064, "properties": { "east": "tall", "north": "tall", @@ -142138,7 +157375,7 @@ } }, { - "id": 18281, + "id": 20065, "properties": { "east": "tall", "north": "tall", @@ -142149,7 +157386,7 @@ } }, { - "id": 18282, + "id": 20066, "properties": { "east": "tall", "north": "tall", @@ -142160,7 +157397,7 @@ } }, { - "id": 18283, + "id": 20067, "properties": { "east": "tall", "north": "tall", @@ -142171,7 +157408,7 @@ } }, { - "id": 18284, + "id": 20068, "properties": { "east": "tall", "north": "tall", @@ -142182,7 +157419,7 @@ } }, { - "id": 18285, + "id": 20069, "properties": { "east": "tall", "north": "tall", @@ -142193,7 +157430,7 @@ } }, { - "id": 18286, + "id": 20070, "properties": { "east": "tall", "north": "tall", @@ -142204,7 +157441,7 @@ } }, { - "id": 18287, + "id": 20071, "properties": { "east": "tall", "north": "tall", @@ -142215,7 +157452,7 @@ } }, { - "id": 18288, + "id": 20072, "properties": { "east": "tall", "north": "tall", @@ -142226,7 +157463,7 @@ } }, { - "id": 18289, + "id": 20073, "properties": { "east": "tall", "north": "tall", @@ -142237,7 +157474,7 @@ } }, { - "id": 18290, + "id": 20074, "properties": { "east": "tall", "north": "tall", @@ -142248,7 +157485,7 @@ } }, { - "id": 18291, + "id": 20075, "properties": { "east": "tall", "north": "tall", @@ -142259,7 +157496,7 @@ } }, { - "id": 18292, + "id": 20076, "properties": { "east": "tall", "north": "tall", @@ -142270,7 +157507,7 @@ } }, { - "id": 18293, + "id": 20077, "properties": { "east": "tall", "north": "tall", @@ -142281,7 +157518,7 @@ } }, { - "id": 18294, + "id": 20078, "properties": { "east": "tall", "north": "tall", @@ -142292,7 +157529,7 @@ } }, { - "id": 18295, + "id": 20079, "properties": { "east": "tall", "north": "tall", @@ -142303,7 +157540,7 @@ } }, { - "id": 18296, + "id": 20080, "properties": { "east": "tall", "north": "tall", @@ -142314,7 +157551,7 @@ } }, { - "id": 18297, + "id": 20081, "properties": { "east": "tall", "north": "tall", @@ -142325,7 +157562,7 @@ } }, { - "id": 18298, + "id": 20082, "properties": { "east": "tall", "north": "tall", @@ -142336,7 +157573,7 @@ } }, { - "id": 18299, + "id": 20083, "properties": { "east": "tall", "north": "tall", @@ -142347,7 +157584,7 @@ } }, { - "id": 18300, + "id": 20084, "properties": { "east": "tall", "north": "tall", @@ -142358,7 +157595,7 @@ } }, { - "id": 18301, + "id": 20085, "properties": { "east": "tall", "north": "tall", @@ -142369,7 +157606,7 @@ } }, { - "id": 18302, + "id": 20086, "properties": { "east": "tall", "north": "tall", @@ -142380,7 +157617,7 @@ } }, { - "id": 18303, + "id": 20087, "properties": { "east": "tall", "north": "tall", @@ -142391,7 +157628,7 @@ } }, { - "id": 18304, + "id": 20088, "properties": { "east": "tall", "north": "tall", @@ -142402,7 +157639,7 @@ } }, { - "id": 18305, + "id": 20089, "properties": { "east": "tall", "north": "tall", @@ -142413,7 +157650,7 @@ } }, { - "id": 18306, + "id": 20090, "properties": { "east": "tall", "north": "tall", @@ -142424,7 +157661,7 @@ } }, { - "id": 18307, + "id": 20091, "properties": { "east": "tall", "north": "tall", @@ -142435,7 +157672,7 @@ } }, { - "id": 18308, + "id": 20092, "properties": { "east": "tall", "north": "tall", @@ -142446,7 +157683,7 @@ } }, { - "id": 18309, + "id": 20093, "properties": { "east": "tall", "north": "tall", @@ -142462,7 +157699,7 @@ "states": [ { "default": true, - "id": 20192 + "id": 21976 } ] }, @@ -142480,21 +157717,21 @@ }, "states": [ { - "id": 20273, + "id": 22057, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 20274, + "id": 22058, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 20275, + "id": 22059, "properties": { "type": "bottom", "waterlogged": "true" @@ -142502,21 +157739,21 @@ }, { "default": true, - "id": 20276, + "id": 22060, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 20277, + "id": 22061, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 20278, + "id": 22062, "properties": { "type": "double", "waterlogged": "false" @@ -142550,7 +157787,7 @@ }, "states": [ { - "id": 20193, + "id": 21977, "properties": { "facing": "north", "half": "top", @@ -142559,7 +157796,7 @@ } }, { - "id": 20194, + "id": 21978, "properties": { "facing": "north", "half": "top", @@ -142568,7 +157805,7 @@ } }, { - "id": 20195, + "id": 21979, "properties": { "facing": "north", "half": "top", @@ -142577,7 +157814,7 @@ } }, { - "id": 20196, + "id": 21980, "properties": { "facing": "north", "half": "top", @@ -142586,7 +157823,7 @@ } }, { - "id": 20197, + "id": 21981, "properties": { "facing": "north", "half": "top", @@ -142595,7 +157832,7 @@ } }, { - "id": 20198, + "id": 21982, "properties": { "facing": "north", "half": "top", @@ -142604,7 +157841,7 @@ } }, { - "id": 20199, + "id": 21983, "properties": { "facing": "north", "half": "top", @@ -142613,7 +157850,7 @@ } }, { - "id": 20200, + "id": 21984, "properties": { "facing": "north", "half": "top", @@ -142622,7 +157859,7 @@ } }, { - "id": 20201, + "id": 21985, "properties": { "facing": "north", "half": "top", @@ -142631,7 +157868,7 @@ } }, { - "id": 20202, + "id": 21986, "properties": { "facing": "north", "half": "top", @@ -142640,7 +157877,7 @@ } }, { - "id": 20203, + "id": 21987, "properties": { "facing": "north", "half": "bottom", @@ -142650,7 +157887,7 @@ }, { "default": true, - "id": 20204, + "id": 21988, "properties": { "facing": "north", "half": "bottom", @@ -142659,7 +157896,7 @@ } }, { - "id": 20205, + "id": 21989, "properties": { "facing": "north", "half": "bottom", @@ -142668,7 +157905,7 @@ } }, { - "id": 20206, + "id": 21990, "properties": { "facing": "north", "half": "bottom", @@ -142677,7 +157914,7 @@ } }, { - "id": 20207, + "id": 21991, "properties": { "facing": "north", "half": "bottom", @@ -142686,7 +157923,7 @@ } }, { - "id": 20208, + "id": 21992, "properties": { "facing": "north", "half": "bottom", @@ -142695,7 +157932,7 @@ } }, { - "id": 20209, + "id": 21993, "properties": { "facing": "north", "half": "bottom", @@ -142704,7 +157941,7 @@ } }, { - "id": 20210, + "id": 21994, "properties": { "facing": "north", "half": "bottom", @@ -142713,7 +157950,7 @@ } }, { - "id": 20211, + "id": 21995, "properties": { "facing": "north", "half": "bottom", @@ -142722,7 +157959,7 @@ } }, { - "id": 20212, + "id": 21996, "properties": { "facing": "north", "half": "bottom", @@ -142731,7 +157968,7 @@ } }, { - "id": 20213, + "id": 21997, "properties": { "facing": "south", "half": "top", @@ -142740,7 +157977,7 @@ } }, { - "id": 20214, + "id": 21998, "properties": { "facing": "south", "half": "top", @@ -142749,7 +157986,7 @@ } }, { - "id": 20215, + "id": 21999, "properties": { "facing": "south", "half": "top", @@ -142758,7 +157995,7 @@ } }, { - "id": 20216, + "id": 22000, "properties": { "facing": "south", "half": "top", @@ -142767,7 +158004,7 @@ } }, { - "id": 20217, + "id": 22001, "properties": { "facing": "south", "half": "top", @@ -142776,7 +158013,7 @@ } }, { - "id": 20218, + "id": 22002, "properties": { "facing": "south", "half": "top", @@ -142785,7 +158022,7 @@ } }, { - "id": 20219, + "id": 22003, "properties": { "facing": "south", "half": "top", @@ -142794,7 +158031,7 @@ } }, { - "id": 20220, + "id": 22004, "properties": { "facing": "south", "half": "top", @@ -142803,7 +158040,7 @@ } }, { - "id": 20221, + "id": 22005, "properties": { "facing": "south", "half": "top", @@ -142812,7 +158049,7 @@ } }, { - "id": 20222, + "id": 22006, "properties": { "facing": "south", "half": "top", @@ -142821,7 +158058,7 @@ } }, { - "id": 20223, + "id": 22007, "properties": { "facing": "south", "half": "bottom", @@ -142830,7 +158067,7 @@ } }, { - "id": 20224, + "id": 22008, "properties": { "facing": "south", "half": "bottom", @@ -142839,7 +158076,7 @@ } }, { - "id": 20225, + "id": 22009, "properties": { "facing": "south", "half": "bottom", @@ -142848,7 +158085,7 @@ } }, { - "id": 20226, + "id": 22010, "properties": { "facing": "south", "half": "bottom", @@ -142857,7 +158094,7 @@ } }, { - "id": 20227, + "id": 22011, "properties": { "facing": "south", "half": "bottom", @@ -142866,7 +158103,7 @@ } }, { - "id": 20228, + "id": 22012, "properties": { "facing": "south", "half": "bottom", @@ -142875,7 +158112,7 @@ } }, { - "id": 20229, + "id": 22013, "properties": { "facing": "south", "half": "bottom", @@ -142884,7 +158121,7 @@ } }, { - "id": 20230, + "id": 22014, "properties": { "facing": "south", "half": "bottom", @@ -142893,7 +158130,7 @@ } }, { - "id": 20231, + "id": 22015, "properties": { "facing": "south", "half": "bottom", @@ -142902,7 +158139,7 @@ } }, { - "id": 20232, + "id": 22016, "properties": { "facing": "south", "half": "bottom", @@ -142911,7 +158148,7 @@ } }, { - "id": 20233, + "id": 22017, "properties": { "facing": "west", "half": "top", @@ -142920,7 +158157,7 @@ } }, { - "id": 20234, + "id": 22018, "properties": { "facing": "west", "half": "top", @@ -142929,7 +158166,7 @@ } }, { - "id": 20235, + "id": 22019, "properties": { "facing": "west", "half": "top", @@ -142938,7 +158175,7 @@ } }, { - "id": 20236, + "id": 22020, "properties": { "facing": "west", "half": "top", @@ -142947,7 +158184,7 @@ } }, { - "id": 20237, + "id": 22021, "properties": { "facing": "west", "half": "top", @@ -142956,7 +158193,7 @@ } }, { - "id": 20238, + "id": 22022, "properties": { "facing": "west", "half": "top", @@ -142965,7 +158202,7 @@ } }, { - "id": 20239, + "id": 22023, "properties": { "facing": "west", "half": "top", @@ -142974,7 +158211,7 @@ } }, { - "id": 20240, + "id": 22024, "properties": { "facing": "west", "half": "top", @@ -142983,7 +158220,7 @@ } }, { - "id": 20241, + "id": 22025, "properties": { "facing": "west", "half": "top", @@ -142992,7 +158229,7 @@ } }, { - "id": 20242, + "id": 22026, "properties": { "facing": "west", "half": "top", @@ -143001,7 +158238,7 @@ } }, { - "id": 20243, + "id": 22027, "properties": { "facing": "west", "half": "bottom", @@ -143010,7 +158247,7 @@ } }, { - "id": 20244, + "id": 22028, "properties": { "facing": "west", "half": "bottom", @@ -143019,7 +158256,7 @@ } }, { - "id": 20245, + "id": 22029, "properties": { "facing": "west", "half": "bottom", @@ -143028,7 +158265,7 @@ } }, { - "id": 20246, + "id": 22030, "properties": { "facing": "west", "half": "bottom", @@ -143037,7 +158274,7 @@ } }, { - "id": 20247, + "id": 22031, "properties": { "facing": "west", "half": "bottom", @@ -143046,7 +158283,7 @@ } }, { - "id": 20248, + "id": 22032, "properties": { "facing": "west", "half": "bottom", @@ -143055,7 +158292,7 @@ } }, { - "id": 20249, + "id": 22033, "properties": { "facing": "west", "half": "bottom", @@ -143064,7 +158301,7 @@ } }, { - "id": 20250, + "id": 22034, "properties": { "facing": "west", "half": "bottom", @@ -143073,7 +158310,7 @@ } }, { - "id": 20251, + "id": 22035, "properties": { "facing": "west", "half": "bottom", @@ -143082,7 +158319,7 @@ } }, { - "id": 20252, + "id": 22036, "properties": { "facing": "west", "half": "bottom", @@ -143091,7 +158328,7 @@ } }, { - "id": 20253, + "id": 22037, "properties": { "facing": "east", "half": "top", @@ -143100,7 +158337,7 @@ } }, { - "id": 20254, + "id": 22038, "properties": { "facing": "east", "half": "top", @@ -143109,7 +158346,7 @@ } }, { - "id": 20255, + "id": 22039, "properties": { "facing": "east", "half": "top", @@ -143118,7 +158355,7 @@ } }, { - "id": 20256, + "id": 22040, "properties": { "facing": "east", "half": "top", @@ -143127,7 +158364,7 @@ } }, { - "id": 20257, + "id": 22041, "properties": { "facing": "east", "half": "top", @@ -143136,7 +158373,7 @@ } }, { - "id": 20258, + "id": 22042, "properties": { "facing": "east", "half": "top", @@ -143145,7 +158382,7 @@ } }, { - "id": 20259, + "id": 22043, "properties": { "facing": "east", "half": "top", @@ -143154,7 +158391,7 @@ } }, { - "id": 20260, + "id": 22044, "properties": { "facing": "east", "half": "top", @@ -143163,7 +158400,7 @@ } }, { - "id": 20261, + "id": 22045, "properties": { "facing": "east", "half": "top", @@ -143172,7 +158409,7 @@ } }, { - "id": 20262, + "id": 22046, "properties": { "facing": "east", "half": "top", @@ -143181,7 +158418,7 @@ } }, { - "id": 20263, + "id": 22047, "properties": { "facing": "east", "half": "bottom", @@ -143190,7 +158427,7 @@ } }, { - "id": 20264, + "id": 22048, "properties": { "facing": "east", "half": "bottom", @@ -143199,7 +158436,7 @@ } }, { - "id": 20265, + "id": 22049, "properties": { "facing": "east", "half": "bottom", @@ -143208,7 +158445,7 @@ } }, { - "id": 20266, + "id": 22050, "properties": { "facing": "east", "half": "bottom", @@ -143217,7 +158454,7 @@ } }, { - "id": 20267, + "id": 22051, "properties": { "facing": "east", "half": "bottom", @@ -143226,7 +158463,7 @@ } }, { - "id": 20268, + "id": 22052, "properties": { "facing": "east", "half": "bottom", @@ -143235,7 +158472,7 @@ } }, { - "id": 20269, + "id": 22053, "properties": { "facing": "east", "half": "bottom", @@ -143244,7 +158481,7 @@ } }, { - "id": 20270, + "id": 22054, "properties": { "facing": "east", "half": "bottom", @@ -143253,7 +158490,7 @@ } }, { - "id": 20271, + "id": 22055, "properties": { "facing": "east", "half": "bottom", @@ -143262,7 +158499,7 @@ } }, { - "id": 20272, + "id": 22056, "properties": { "facing": "east", "half": "bottom", @@ -143305,7 +158542,7 @@ }, "states": [ { - "id": 20279, + "id": 22063, "properties": { "east": "none", "north": "none", @@ -143316,7 +158553,7 @@ } }, { - "id": 20280, + "id": 22064, "properties": { "east": "none", "north": "none", @@ -143327,7 +158564,7 @@ } }, { - "id": 20281, + "id": 22065, "properties": { "east": "none", "north": "none", @@ -143339,7 +158576,7 @@ }, { "default": true, - "id": 20282, + "id": 22066, "properties": { "east": "none", "north": "none", @@ -143350,7 +158587,7 @@ } }, { - "id": 20283, + "id": 22067, "properties": { "east": "none", "north": "none", @@ -143361,7 +158598,7 @@ } }, { - "id": 20284, + "id": 22068, "properties": { "east": "none", "north": "none", @@ -143372,7 +158609,7 @@ } }, { - "id": 20285, + "id": 22069, "properties": { "east": "none", "north": "none", @@ -143383,7 +158620,7 @@ } }, { - "id": 20286, + "id": 22070, "properties": { "east": "none", "north": "none", @@ -143394,7 +158631,7 @@ } }, { - "id": 20287, + "id": 22071, "properties": { "east": "none", "north": "none", @@ -143405,7 +158642,7 @@ } }, { - "id": 20288, + "id": 22072, "properties": { "east": "none", "north": "none", @@ -143416,7 +158653,7 @@ } }, { - "id": 20289, + "id": 22073, "properties": { "east": "none", "north": "none", @@ -143427,7 +158664,7 @@ } }, { - "id": 20290, + "id": 22074, "properties": { "east": "none", "north": "none", @@ -143438,7 +158675,7 @@ } }, { - "id": 20291, + "id": 22075, "properties": { "east": "none", "north": "none", @@ -143449,7 +158686,7 @@ } }, { - "id": 20292, + "id": 22076, "properties": { "east": "none", "north": "none", @@ -143460,7 +158697,7 @@ } }, { - "id": 20293, + "id": 22077, "properties": { "east": "none", "north": "none", @@ -143471,7 +158708,7 @@ } }, { - "id": 20294, + "id": 22078, "properties": { "east": "none", "north": "none", @@ -143482,7 +158719,7 @@ } }, { - "id": 20295, + "id": 22079, "properties": { "east": "none", "north": "none", @@ -143493,7 +158730,7 @@ } }, { - "id": 20296, + "id": 22080, "properties": { "east": "none", "north": "none", @@ -143504,7 +158741,7 @@ } }, { - "id": 20297, + "id": 22081, "properties": { "east": "none", "north": "none", @@ -143515,7 +158752,7 @@ } }, { - "id": 20298, + "id": 22082, "properties": { "east": "none", "north": "none", @@ -143526,7 +158763,7 @@ } }, { - "id": 20299, + "id": 22083, "properties": { "east": "none", "north": "none", @@ -143537,7 +158774,7 @@ } }, { - "id": 20300, + "id": 22084, "properties": { "east": "none", "north": "none", @@ -143548,7 +158785,7 @@ } }, { - "id": 20301, + "id": 22085, "properties": { "east": "none", "north": "none", @@ -143559,7 +158796,7 @@ } }, { - "id": 20302, + "id": 22086, "properties": { "east": "none", "north": "none", @@ -143570,7 +158807,7 @@ } }, { - "id": 20303, + "id": 22087, "properties": { "east": "none", "north": "none", @@ -143581,7 +158818,7 @@ } }, { - "id": 20304, + "id": 22088, "properties": { "east": "none", "north": "none", @@ -143592,7 +158829,7 @@ } }, { - "id": 20305, + "id": 22089, "properties": { "east": "none", "north": "none", @@ -143603,7 +158840,7 @@ } }, { - "id": 20306, + "id": 22090, "properties": { "east": "none", "north": "none", @@ -143614,7 +158851,7 @@ } }, { - "id": 20307, + "id": 22091, "properties": { "east": "none", "north": "none", @@ -143625,7 +158862,7 @@ } }, { - "id": 20308, + "id": 22092, "properties": { "east": "none", "north": "none", @@ -143636,7 +158873,7 @@ } }, { - "id": 20309, + "id": 22093, "properties": { "east": "none", "north": "none", @@ -143647,7 +158884,7 @@ } }, { - "id": 20310, + "id": 22094, "properties": { "east": "none", "north": "none", @@ -143658,7 +158895,7 @@ } }, { - "id": 20311, + "id": 22095, "properties": { "east": "none", "north": "none", @@ -143669,7 +158906,7 @@ } }, { - "id": 20312, + "id": 22096, "properties": { "east": "none", "north": "none", @@ -143680,7 +158917,7 @@ } }, { - "id": 20313, + "id": 22097, "properties": { "east": "none", "north": "none", @@ -143691,7 +158928,7 @@ } }, { - "id": 20314, + "id": 22098, "properties": { "east": "none", "north": "none", @@ -143702,7 +158939,7 @@ } }, { - "id": 20315, + "id": 22099, "properties": { "east": "none", "north": "low", @@ -143713,7 +158950,7 @@ } }, { - "id": 20316, + "id": 22100, "properties": { "east": "none", "north": "low", @@ -143724,7 +158961,7 @@ } }, { - "id": 20317, + "id": 22101, "properties": { "east": "none", "north": "low", @@ -143735,7 +158972,7 @@ } }, { - "id": 20318, + "id": 22102, "properties": { "east": "none", "north": "low", @@ -143746,7 +158983,7 @@ } }, { - "id": 20319, + "id": 22103, "properties": { "east": "none", "north": "low", @@ -143757,7 +158994,7 @@ } }, { - "id": 20320, + "id": 22104, "properties": { "east": "none", "north": "low", @@ -143768,7 +159005,7 @@ } }, { - "id": 20321, + "id": 22105, "properties": { "east": "none", "north": "low", @@ -143779,7 +159016,7 @@ } }, { - "id": 20322, + "id": 22106, "properties": { "east": "none", "north": "low", @@ -143790,7 +159027,7 @@ } }, { - "id": 20323, + "id": 22107, "properties": { "east": "none", "north": "low", @@ -143801,7 +159038,7 @@ } }, { - "id": 20324, + "id": 22108, "properties": { "east": "none", "north": "low", @@ -143812,7 +159049,7 @@ } }, { - "id": 20325, + "id": 22109, "properties": { "east": "none", "north": "low", @@ -143823,7 +159060,7 @@ } }, { - "id": 20326, + "id": 22110, "properties": { "east": "none", "north": "low", @@ -143834,7 +159071,7 @@ } }, { - "id": 20327, + "id": 22111, "properties": { "east": "none", "north": "low", @@ -143845,7 +159082,7 @@ } }, { - "id": 20328, + "id": 22112, "properties": { "east": "none", "north": "low", @@ -143856,7 +159093,7 @@ } }, { - "id": 20329, + "id": 22113, "properties": { "east": "none", "north": "low", @@ -143867,7 +159104,7 @@ } }, { - "id": 20330, + "id": 22114, "properties": { "east": "none", "north": "low", @@ -143878,7 +159115,7 @@ } }, { - "id": 20331, + "id": 22115, "properties": { "east": "none", "north": "low", @@ -143889,7 +159126,7 @@ } }, { - "id": 20332, + "id": 22116, "properties": { "east": "none", "north": "low", @@ -143900,7 +159137,7 @@ } }, { - "id": 20333, + "id": 22117, "properties": { "east": "none", "north": "low", @@ -143911,7 +159148,7 @@ } }, { - "id": 20334, + "id": 22118, "properties": { "east": "none", "north": "low", @@ -143922,7 +159159,7 @@ } }, { - "id": 20335, + "id": 22119, "properties": { "east": "none", "north": "low", @@ -143933,7 +159170,7 @@ } }, { - "id": 20336, + "id": 22120, "properties": { "east": "none", "north": "low", @@ -143944,7 +159181,7 @@ } }, { - "id": 20337, + "id": 22121, "properties": { "east": "none", "north": "low", @@ -143955,7 +159192,7 @@ } }, { - "id": 20338, + "id": 22122, "properties": { "east": "none", "north": "low", @@ -143966,7 +159203,7 @@ } }, { - "id": 20339, + "id": 22123, "properties": { "east": "none", "north": "low", @@ -143977,7 +159214,7 @@ } }, { - "id": 20340, + "id": 22124, "properties": { "east": "none", "north": "low", @@ -143988,7 +159225,7 @@ } }, { - "id": 20341, + "id": 22125, "properties": { "east": "none", "north": "low", @@ -143999,7 +159236,7 @@ } }, { - "id": 20342, + "id": 22126, "properties": { "east": "none", "north": "low", @@ -144010,7 +159247,7 @@ } }, { - "id": 20343, + "id": 22127, "properties": { "east": "none", "north": "low", @@ -144021,7 +159258,7 @@ } }, { - "id": 20344, + "id": 22128, "properties": { "east": "none", "north": "low", @@ -144032,7 +159269,7 @@ } }, { - "id": 20345, + "id": 22129, "properties": { "east": "none", "north": "low", @@ -144043,7 +159280,7 @@ } }, { - "id": 20346, + "id": 22130, "properties": { "east": "none", "north": "low", @@ -144054,7 +159291,7 @@ } }, { - "id": 20347, + "id": 22131, "properties": { "east": "none", "north": "low", @@ -144065,7 +159302,7 @@ } }, { - "id": 20348, + "id": 22132, "properties": { "east": "none", "north": "low", @@ -144076,7 +159313,7 @@ } }, { - "id": 20349, + "id": 22133, "properties": { "east": "none", "north": "low", @@ -144087,7 +159324,7 @@ } }, { - "id": 20350, + "id": 22134, "properties": { "east": "none", "north": "low", @@ -144098,7 +159335,7 @@ } }, { - "id": 20351, + "id": 22135, "properties": { "east": "none", "north": "tall", @@ -144109,7 +159346,7 @@ } }, { - "id": 20352, + "id": 22136, "properties": { "east": "none", "north": "tall", @@ -144120,7 +159357,7 @@ } }, { - "id": 20353, + "id": 22137, "properties": { "east": "none", "north": "tall", @@ -144131,7 +159368,7 @@ } }, { - "id": 20354, + "id": 22138, "properties": { "east": "none", "north": "tall", @@ -144142,7 +159379,7 @@ } }, { - "id": 20355, + "id": 22139, "properties": { "east": "none", "north": "tall", @@ -144153,7 +159390,7 @@ } }, { - "id": 20356, + "id": 22140, "properties": { "east": "none", "north": "tall", @@ -144164,7 +159401,7 @@ } }, { - "id": 20357, + "id": 22141, "properties": { "east": "none", "north": "tall", @@ -144175,7 +159412,7 @@ } }, { - "id": 20358, + "id": 22142, "properties": { "east": "none", "north": "tall", @@ -144186,7 +159423,7 @@ } }, { - "id": 20359, + "id": 22143, "properties": { "east": "none", "north": "tall", @@ -144197,7 +159434,7 @@ } }, { - "id": 20360, + "id": 22144, "properties": { "east": "none", "north": "tall", @@ -144208,7 +159445,7 @@ } }, { - "id": 20361, + "id": 22145, "properties": { "east": "none", "north": "tall", @@ -144219,7 +159456,7 @@ } }, { - "id": 20362, + "id": 22146, "properties": { "east": "none", "north": "tall", @@ -144230,7 +159467,7 @@ } }, { - "id": 20363, + "id": 22147, "properties": { "east": "none", "north": "tall", @@ -144241,7 +159478,7 @@ } }, { - "id": 20364, + "id": 22148, "properties": { "east": "none", "north": "tall", @@ -144252,7 +159489,7 @@ } }, { - "id": 20365, + "id": 22149, "properties": { "east": "none", "north": "tall", @@ -144263,7 +159500,7 @@ } }, { - "id": 20366, + "id": 22150, "properties": { "east": "none", "north": "tall", @@ -144274,7 +159511,7 @@ } }, { - "id": 20367, + "id": 22151, "properties": { "east": "none", "north": "tall", @@ -144285,7 +159522,7 @@ } }, { - "id": 20368, + "id": 22152, "properties": { "east": "none", "north": "tall", @@ -144296,7 +159533,7 @@ } }, { - "id": 20369, + "id": 22153, "properties": { "east": "none", "north": "tall", @@ -144307,7 +159544,7 @@ } }, { - "id": 20370, + "id": 22154, "properties": { "east": "none", "north": "tall", @@ -144318,7 +159555,7 @@ } }, { - "id": 20371, + "id": 22155, "properties": { "east": "none", "north": "tall", @@ -144329,7 +159566,7 @@ } }, { - "id": 20372, + "id": 22156, "properties": { "east": "none", "north": "tall", @@ -144340,7 +159577,7 @@ } }, { - "id": 20373, + "id": 22157, "properties": { "east": "none", "north": "tall", @@ -144351,7 +159588,7 @@ } }, { - "id": 20374, + "id": 22158, "properties": { "east": "none", "north": "tall", @@ -144362,7 +159599,7 @@ } }, { - "id": 20375, + "id": 22159, "properties": { "east": "none", "north": "tall", @@ -144373,7 +159610,7 @@ } }, { - "id": 20376, + "id": 22160, "properties": { "east": "none", "north": "tall", @@ -144384,7 +159621,7 @@ } }, { - "id": 20377, + "id": 22161, "properties": { "east": "none", "north": "tall", @@ -144395,7 +159632,7 @@ } }, { - "id": 20378, + "id": 22162, "properties": { "east": "none", "north": "tall", @@ -144406,7 +159643,7 @@ } }, { - "id": 20379, + "id": 22163, "properties": { "east": "none", "north": "tall", @@ -144417,7 +159654,7 @@ } }, { - "id": 20380, + "id": 22164, "properties": { "east": "none", "north": "tall", @@ -144428,7 +159665,7 @@ } }, { - "id": 20381, + "id": 22165, "properties": { "east": "none", "north": "tall", @@ -144439,7 +159676,7 @@ } }, { - "id": 20382, + "id": 22166, "properties": { "east": "none", "north": "tall", @@ -144450,7 +159687,7 @@ } }, { - "id": 20383, + "id": 22167, "properties": { "east": "none", "north": "tall", @@ -144461,7 +159698,7 @@ } }, { - "id": 20384, + "id": 22168, "properties": { "east": "none", "north": "tall", @@ -144472,7 +159709,7 @@ } }, { - "id": 20385, + "id": 22169, "properties": { "east": "none", "north": "tall", @@ -144483,7 +159720,7 @@ } }, { - "id": 20386, + "id": 22170, "properties": { "east": "none", "north": "tall", @@ -144494,7 +159731,7 @@ } }, { - "id": 20387, + "id": 22171, "properties": { "east": "low", "north": "none", @@ -144505,7 +159742,7 @@ } }, { - "id": 20388, + "id": 22172, "properties": { "east": "low", "north": "none", @@ -144516,7 +159753,7 @@ } }, { - "id": 20389, + "id": 22173, "properties": { "east": "low", "north": "none", @@ -144527,7 +159764,7 @@ } }, { - "id": 20390, + "id": 22174, "properties": { "east": "low", "north": "none", @@ -144538,7 +159775,7 @@ } }, { - "id": 20391, + "id": 22175, "properties": { "east": "low", "north": "none", @@ -144549,7 +159786,7 @@ } }, { - "id": 20392, + "id": 22176, "properties": { "east": "low", "north": "none", @@ -144560,7 +159797,7 @@ } }, { - "id": 20393, + "id": 22177, "properties": { "east": "low", "north": "none", @@ -144571,7 +159808,7 @@ } }, { - "id": 20394, + "id": 22178, "properties": { "east": "low", "north": "none", @@ -144582,7 +159819,7 @@ } }, { - "id": 20395, + "id": 22179, "properties": { "east": "low", "north": "none", @@ -144593,7 +159830,7 @@ } }, { - "id": 20396, + "id": 22180, "properties": { "east": "low", "north": "none", @@ -144604,7 +159841,7 @@ } }, { - "id": 20397, + "id": 22181, "properties": { "east": "low", "north": "none", @@ -144615,7 +159852,7 @@ } }, { - "id": 20398, + "id": 22182, "properties": { "east": "low", "north": "none", @@ -144626,7 +159863,7 @@ } }, { - "id": 20399, + "id": 22183, "properties": { "east": "low", "north": "none", @@ -144637,7 +159874,7 @@ } }, { - "id": 20400, + "id": 22184, "properties": { "east": "low", "north": "none", @@ -144648,7 +159885,7 @@ } }, { - "id": 20401, + "id": 22185, "properties": { "east": "low", "north": "none", @@ -144659,7 +159896,7 @@ } }, { - "id": 20402, + "id": 22186, "properties": { "east": "low", "north": "none", @@ -144670,7 +159907,7 @@ } }, { - "id": 20403, + "id": 22187, "properties": { "east": "low", "north": "none", @@ -144681,7 +159918,7 @@ } }, { - "id": 20404, + "id": 22188, "properties": { "east": "low", "north": "none", @@ -144692,7 +159929,7 @@ } }, { - "id": 20405, + "id": 22189, "properties": { "east": "low", "north": "none", @@ -144703,7 +159940,7 @@ } }, { - "id": 20406, + "id": 22190, "properties": { "east": "low", "north": "none", @@ -144714,7 +159951,7 @@ } }, { - "id": 20407, + "id": 22191, "properties": { "east": "low", "north": "none", @@ -144725,7 +159962,7 @@ } }, { - "id": 20408, + "id": 22192, "properties": { "east": "low", "north": "none", @@ -144736,7 +159973,7 @@ } }, { - "id": 20409, + "id": 22193, "properties": { "east": "low", "north": "none", @@ -144747,7 +159984,7 @@ } }, { - "id": 20410, + "id": 22194, "properties": { "east": "low", "north": "none", @@ -144758,7 +159995,7 @@ } }, { - "id": 20411, + "id": 22195, "properties": { "east": "low", "north": "none", @@ -144769,7 +160006,7 @@ } }, { - "id": 20412, + "id": 22196, "properties": { "east": "low", "north": "none", @@ -144780,7 +160017,7 @@ } }, { - "id": 20413, + "id": 22197, "properties": { "east": "low", "north": "none", @@ -144791,7 +160028,7 @@ } }, { - "id": 20414, + "id": 22198, "properties": { "east": "low", "north": "none", @@ -144802,7 +160039,7 @@ } }, { - "id": 20415, + "id": 22199, "properties": { "east": "low", "north": "none", @@ -144813,7 +160050,7 @@ } }, { - "id": 20416, + "id": 22200, "properties": { "east": "low", "north": "none", @@ -144824,7 +160061,7 @@ } }, { - "id": 20417, + "id": 22201, "properties": { "east": "low", "north": "none", @@ -144835,7 +160072,7 @@ } }, { - "id": 20418, + "id": 22202, "properties": { "east": "low", "north": "none", @@ -144846,7 +160083,7 @@ } }, { - "id": 20419, + "id": 22203, "properties": { "east": "low", "north": "none", @@ -144857,7 +160094,7 @@ } }, { - "id": 20420, + "id": 22204, "properties": { "east": "low", "north": "none", @@ -144868,7 +160105,7 @@ } }, { - "id": 20421, + "id": 22205, "properties": { "east": "low", "north": "none", @@ -144879,7 +160116,7 @@ } }, { - "id": 20422, + "id": 22206, "properties": { "east": "low", "north": "none", @@ -144890,7 +160127,7 @@ } }, { - "id": 20423, + "id": 22207, "properties": { "east": "low", "north": "low", @@ -144901,7 +160138,7 @@ } }, { - "id": 20424, + "id": 22208, "properties": { "east": "low", "north": "low", @@ -144912,7 +160149,7 @@ } }, { - "id": 20425, + "id": 22209, "properties": { "east": "low", "north": "low", @@ -144923,7 +160160,7 @@ } }, { - "id": 20426, + "id": 22210, "properties": { "east": "low", "north": "low", @@ -144934,7 +160171,7 @@ } }, { - "id": 20427, + "id": 22211, "properties": { "east": "low", "north": "low", @@ -144945,7 +160182,7 @@ } }, { - "id": 20428, + "id": 22212, "properties": { "east": "low", "north": "low", @@ -144956,7 +160193,7 @@ } }, { - "id": 20429, + "id": 22213, "properties": { "east": "low", "north": "low", @@ -144967,7 +160204,7 @@ } }, { - "id": 20430, + "id": 22214, "properties": { "east": "low", "north": "low", @@ -144978,7 +160215,7 @@ } }, { - "id": 20431, + "id": 22215, "properties": { "east": "low", "north": "low", @@ -144989,7 +160226,7 @@ } }, { - "id": 20432, + "id": 22216, "properties": { "east": "low", "north": "low", @@ -145000,7 +160237,7 @@ } }, { - "id": 20433, + "id": 22217, "properties": { "east": "low", "north": "low", @@ -145011,7 +160248,7 @@ } }, { - "id": 20434, + "id": 22218, "properties": { "east": "low", "north": "low", @@ -145022,7 +160259,7 @@ } }, { - "id": 20435, + "id": 22219, "properties": { "east": "low", "north": "low", @@ -145033,7 +160270,7 @@ } }, { - "id": 20436, + "id": 22220, "properties": { "east": "low", "north": "low", @@ -145044,7 +160281,7 @@ } }, { - "id": 20437, + "id": 22221, "properties": { "east": "low", "north": "low", @@ -145055,7 +160292,7 @@ } }, { - "id": 20438, + "id": 22222, "properties": { "east": "low", "north": "low", @@ -145066,7 +160303,7 @@ } }, { - "id": 20439, + "id": 22223, "properties": { "east": "low", "north": "low", @@ -145077,7 +160314,7 @@ } }, { - "id": 20440, + "id": 22224, "properties": { "east": "low", "north": "low", @@ -145088,7 +160325,7 @@ } }, { - "id": 20441, + "id": 22225, "properties": { "east": "low", "north": "low", @@ -145099,7 +160336,7 @@ } }, { - "id": 20442, + "id": 22226, "properties": { "east": "low", "north": "low", @@ -145110,7 +160347,7 @@ } }, { - "id": 20443, + "id": 22227, "properties": { "east": "low", "north": "low", @@ -145121,7 +160358,7 @@ } }, { - "id": 20444, + "id": 22228, "properties": { "east": "low", "north": "low", @@ -145132,7 +160369,7 @@ } }, { - "id": 20445, + "id": 22229, "properties": { "east": "low", "north": "low", @@ -145143,7 +160380,7 @@ } }, { - "id": 20446, + "id": 22230, "properties": { "east": "low", "north": "low", @@ -145154,7 +160391,7 @@ } }, { - "id": 20447, + "id": 22231, "properties": { "east": "low", "north": "low", @@ -145165,7 +160402,7 @@ } }, { - "id": 20448, + "id": 22232, "properties": { "east": "low", "north": "low", @@ -145176,7 +160413,7 @@ } }, { - "id": 20449, + "id": 22233, "properties": { "east": "low", "north": "low", @@ -145187,7 +160424,7 @@ } }, { - "id": 20450, + "id": 22234, "properties": { "east": "low", "north": "low", @@ -145198,7 +160435,7 @@ } }, { - "id": 20451, + "id": 22235, "properties": { "east": "low", "north": "low", @@ -145209,7 +160446,7 @@ } }, { - "id": 20452, + "id": 22236, "properties": { "east": "low", "north": "low", @@ -145220,7 +160457,7 @@ } }, { - "id": 20453, + "id": 22237, "properties": { "east": "low", "north": "low", @@ -145231,7 +160468,7 @@ } }, { - "id": 20454, + "id": 22238, "properties": { "east": "low", "north": "low", @@ -145242,7 +160479,7 @@ } }, { - "id": 20455, + "id": 22239, "properties": { "east": "low", "north": "low", @@ -145253,7 +160490,7 @@ } }, { - "id": 20456, + "id": 22240, "properties": { "east": "low", "north": "low", @@ -145264,7 +160501,7 @@ } }, { - "id": 20457, + "id": 22241, "properties": { "east": "low", "north": "low", @@ -145275,7 +160512,7 @@ } }, { - "id": 20458, + "id": 22242, "properties": { "east": "low", "north": "low", @@ -145286,7 +160523,7 @@ } }, { - "id": 20459, + "id": 22243, "properties": { "east": "low", "north": "tall", @@ -145297,7 +160534,7 @@ } }, { - "id": 20460, + "id": 22244, "properties": { "east": "low", "north": "tall", @@ -145308,7 +160545,7 @@ } }, { - "id": 20461, + "id": 22245, "properties": { "east": "low", "north": "tall", @@ -145319,7 +160556,7 @@ } }, { - "id": 20462, + "id": 22246, "properties": { "east": "low", "north": "tall", @@ -145330,7 +160567,7 @@ } }, { - "id": 20463, + "id": 22247, "properties": { "east": "low", "north": "tall", @@ -145341,7 +160578,7 @@ } }, { - "id": 20464, + "id": 22248, "properties": { "east": "low", "north": "tall", @@ -145352,7 +160589,7 @@ } }, { - "id": 20465, + "id": 22249, "properties": { "east": "low", "north": "tall", @@ -145363,7 +160600,7 @@ } }, { - "id": 20466, + "id": 22250, "properties": { "east": "low", "north": "tall", @@ -145374,7 +160611,7 @@ } }, { - "id": 20467, + "id": 22251, "properties": { "east": "low", "north": "tall", @@ -145385,7 +160622,7 @@ } }, { - "id": 20468, + "id": 22252, "properties": { "east": "low", "north": "tall", @@ -145396,7 +160633,7 @@ } }, { - "id": 20469, + "id": 22253, "properties": { "east": "low", "north": "tall", @@ -145407,7 +160644,7 @@ } }, { - "id": 20470, + "id": 22254, "properties": { "east": "low", "north": "tall", @@ -145418,7 +160655,7 @@ } }, { - "id": 20471, + "id": 22255, "properties": { "east": "low", "north": "tall", @@ -145429,7 +160666,7 @@ } }, { - "id": 20472, + "id": 22256, "properties": { "east": "low", "north": "tall", @@ -145440,7 +160677,7 @@ } }, { - "id": 20473, + "id": 22257, "properties": { "east": "low", "north": "tall", @@ -145451,7 +160688,7 @@ } }, { - "id": 20474, + "id": 22258, "properties": { "east": "low", "north": "tall", @@ -145462,7 +160699,7 @@ } }, { - "id": 20475, + "id": 22259, "properties": { "east": "low", "north": "tall", @@ -145473,7 +160710,7 @@ } }, { - "id": 20476, + "id": 22260, "properties": { "east": "low", "north": "tall", @@ -145484,7 +160721,7 @@ } }, { - "id": 20477, + "id": 22261, "properties": { "east": "low", "north": "tall", @@ -145495,7 +160732,7 @@ } }, { - "id": 20478, + "id": 22262, "properties": { "east": "low", "north": "tall", @@ -145506,7 +160743,7 @@ } }, { - "id": 20479, + "id": 22263, "properties": { "east": "low", "north": "tall", @@ -145517,7 +160754,7 @@ } }, { - "id": 20480, + "id": 22264, "properties": { "east": "low", "north": "tall", @@ -145528,7 +160765,7 @@ } }, { - "id": 20481, + "id": 22265, "properties": { "east": "low", "north": "tall", @@ -145539,7 +160776,7 @@ } }, { - "id": 20482, + "id": 22266, "properties": { "east": "low", "north": "tall", @@ -145550,7 +160787,7 @@ } }, { - "id": 20483, + "id": 22267, "properties": { "east": "low", "north": "tall", @@ -145561,7 +160798,7 @@ } }, { - "id": 20484, + "id": 22268, "properties": { "east": "low", "north": "tall", @@ -145572,7 +160809,7 @@ } }, { - "id": 20485, + "id": 22269, "properties": { "east": "low", "north": "tall", @@ -145583,7 +160820,7 @@ } }, { - "id": 20486, + "id": 22270, "properties": { "east": "low", "north": "tall", @@ -145594,7 +160831,7 @@ } }, { - "id": 20487, + "id": 22271, "properties": { "east": "low", "north": "tall", @@ -145605,7 +160842,7 @@ } }, { - "id": 20488, + "id": 22272, "properties": { "east": "low", "north": "tall", @@ -145616,7 +160853,7 @@ } }, { - "id": 20489, + "id": 22273, "properties": { "east": "low", "north": "tall", @@ -145627,7 +160864,7 @@ } }, { - "id": 20490, + "id": 22274, "properties": { "east": "low", "north": "tall", @@ -145638,7 +160875,7 @@ } }, { - "id": 20491, + "id": 22275, "properties": { "east": "low", "north": "tall", @@ -145649,7 +160886,7 @@ } }, { - "id": 20492, + "id": 22276, "properties": { "east": "low", "north": "tall", @@ -145660,7 +160897,7 @@ } }, { - "id": 20493, + "id": 22277, "properties": { "east": "low", "north": "tall", @@ -145671,7 +160908,7 @@ } }, { - "id": 20494, + "id": 22278, "properties": { "east": "low", "north": "tall", @@ -145682,7 +160919,7 @@ } }, { - "id": 20495, + "id": 22279, "properties": { "east": "tall", "north": "none", @@ -145693,7 +160930,7 @@ } }, { - "id": 20496, + "id": 22280, "properties": { "east": "tall", "north": "none", @@ -145704,7 +160941,7 @@ } }, { - "id": 20497, + "id": 22281, "properties": { "east": "tall", "north": "none", @@ -145715,7 +160952,7 @@ } }, { - "id": 20498, + "id": 22282, "properties": { "east": "tall", "north": "none", @@ -145726,7 +160963,7 @@ } }, { - "id": 20499, + "id": 22283, "properties": { "east": "tall", "north": "none", @@ -145737,7 +160974,7 @@ } }, { - "id": 20500, + "id": 22284, "properties": { "east": "tall", "north": "none", @@ -145748,7 +160985,7 @@ } }, { - "id": 20501, + "id": 22285, "properties": { "east": "tall", "north": "none", @@ -145759,7 +160996,7 @@ } }, { - "id": 20502, + "id": 22286, "properties": { "east": "tall", "north": "none", @@ -145770,7 +161007,7 @@ } }, { - "id": 20503, + "id": 22287, "properties": { "east": "tall", "north": "none", @@ -145781,7 +161018,7 @@ } }, { - "id": 20504, + "id": 22288, "properties": { "east": "tall", "north": "none", @@ -145792,7 +161029,7 @@ } }, { - "id": 20505, + "id": 22289, "properties": { "east": "tall", "north": "none", @@ -145803,7 +161040,7 @@ } }, { - "id": 20506, + "id": 22290, "properties": { "east": "tall", "north": "none", @@ -145814,7 +161051,7 @@ } }, { - "id": 20507, + "id": 22291, "properties": { "east": "tall", "north": "none", @@ -145825,7 +161062,7 @@ } }, { - "id": 20508, + "id": 22292, "properties": { "east": "tall", "north": "none", @@ -145836,7 +161073,7 @@ } }, { - "id": 20509, + "id": 22293, "properties": { "east": "tall", "north": "none", @@ -145847,7 +161084,7 @@ } }, { - "id": 20510, + "id": 22294, "properties": { "east": "tall", "north": "none", @@ -145858,7 +161095,7 @@ } }, { - "id": 20511, + "id": 22295, "properties": { "east": "tall", "north": "none", @@ -145869,7 +161106,7 @@ } }, { - "id": 20512, + "id": 22296, "properties": { "east": "tall", "north": "none", @@ -145880,7 +161117,7 @@ } }, { - "id": 20513, + "id": 22297, "properties": { "east": "tall", "north": "none", @@ -145891,7 +161128,7 @@ } }, { - "id": 20514, + "id": 22298, "properties": { "east": "tall", "north": "none", @@ -145902,7 +161139,7 @@ } }, { - "id": 20515, + "id": 22299, "properties": { "east": "tall", "north": "none", @@ -145913,7 +161150,7 @@ } }, { - "id": 20516, + "id": 22300, "properties": { "east": "tall", "north": "none", @@ -145924,7 +161161,7 @@ } }, { - "id": 20517, + "id": 22301, "properties": { "east": "tall", "north": "none", @@ -145935,7 +161172,7 @@ } }, { - "id": 20518, + "id": 22302, "properties": { "east": "tall", "north": "none", @@ -145946,7 +161183,7 @@ } }, { - "id": 20519, + "id": 22303, "properties": { "east": "tall", "north": "none", @@ -145957,7 +161194,7 @@ } }, { - "id": 20520, + "id": 22304, "properties": { "east": "tall", "north": "none", @@ -145968,7 +161205,7 @@ } }, { - "id": 20521, + "id": 22305, "properties": { "east": "tall", "north": "none", @@ -145979,7 +161216,7 @@ } }, { - "id": 20522, + "id": 22306, "properties": { "east": "tall", "north": "none", @@ -145990,7 +161227,7 @@ } }, { - "id": 20523, + "id": 22307, "properties": { "east": "tall", "north": "none", @@ -146001,7 +161238,7 @@ } }, { - "id": 20524, + "id": 22308, "properties": { "east": "tall", "north": "none", @@ -146012,7 +161249,7 @@ } }, { - "id": 20525, + "id": 22309, "properties": { "east": "tall", "north": "none", @@ -146023,7 +161260,7 @@ } }, { - "id": 20526, + "id": 22310, "properties": { "east": "tall", "north": "none", @@ -146034,7 +161271,7 @@ } }, { - "id": 20527, + "id": 22311, "properties": { "east": "tall", "north": "none", @@ -146045,7 +161282,7 @@ } }, { - "id": 20528, + "id": 22312, "properties": { "east": "tall", "north": "none", @@ -146056,7 +161293,7 @@ } }, { - "id": 20529, + "id": 22313, "properties": { "east": "tall", "north": "none", @@ -146067,7 +161304,7 @@ } }, { - "id": 20530, + "id": 22314, "properties": { "east": "tall", "north": "none", @@ -146078,7 +161315,7 @@ } }, { - "id": 20531, + "id": 22315, "properties": { "east": "tall", "north": "low", @@ -146089,7 +161326,7 @@ } }, { - "id": 20532, + "id": 22316, "properties": { "east": "tall", "north": "low", @@ -146100,7 +161337,7 @@ } }, { - "id": 20533, + "id": 22317, "properties": { "east": "tall", "north": "low", @@ -146111,7 +161348,7 @@ } }, { - "id": 20534, + "id": 22318, "properties": { "east": "tall", "north": "low", @@ -146122,7 +161359,7 @@ } }, { - "id": 20535, + "id": 22319, "properties": { "east": "tall", "north": "low", @@ -146133,7 +161370,7 @@ } }, { - "id": 20536, + "id": 22320, "properties": { "east": "tall", "north": "low", @@ -146144,7 +161381,7 @@ } }, { - "id": 20537, + "id": 22321, "properties": { "east": "tall", "north": "low", @@ -146155,7 +161392,7 @@ } }, { - "id": 20538, + "id": 22322, "properties": { "east": "tall", "north": "low", @@ -146166,7 +161403,7 @@ } }, { - "id": 20539, + "id": 22323, "properties": { "east": "tall", "north": "low", @@ -146177,7 +161414,7 @@ } }, { - "id": 20540, + "id": 22324, "properties": { "east": "tall", "north": "low", @@ -146188,7 +161425,7 @@ } }, { - "id": 20541, + "id": 22325, "properties": { "east": "tall", "north": "low", @@ -146199,7 +161436,7 @@ } }, { - "id": 20542, + "id": 22326, "properties": { "east": "tall", "north": "low", @@ -146210,7 +161447,7 @@ } }, { - "id": 20543, + "id": 22327, "properties": { "east": "tall", "north": "low", @@ -146221,7 +161458,7 @@ } }, { - "id": 20544, + "id": 22328, "properties": { "east": "tall", "north": "low", @@ -146232,7 +161469,7 @@ } }, { - "id": 20545, + "id": 22329, "properties": { "east": "tall", "north": "low", @@ -146243,7 +161480,7 @@ } }, { - "id": 20546, + "id": 22330, "properties": { "east": "tall", "north": "low", @@ -146254,7 +161491,7 @@ } }, { - "id": 20547, + "id": 22331, "properties": { "east": "tall", "north": "low", @@ -146265,7 +161502,7 @@ } }, { - "id": 20548, + "id": 22332, "properties": { "east": "tall", "north": "low", @@ -146276,7 +161513,7 @@ } }, { - "id": 20549, + "id": 22333, "properties": { "east": "tall", "north": "low", @@ -146287,7 +161524,7 @@ } }, { - "id": 20550, + "id": 22334, "properties": { "east": "tall", "north": "low", @@ -146298,7 +161535,7 @@ } }, { - "id": 20551, + "id": 22335, "properties": { "east": "tall", "north": "low", @@ -146309,7 +161546,7 @@ } }, { - "id": 20552, + "id": 22336, "properties": { "east": "tall", "north": "low", @@ -146320,7 +161557,7 @@ } }, { - "id": 20553, + "id": 22337, "properties": { "east": "tall", "north": "low", @@ -146331,7 +161568,7 @@ } }, { - "id": 20554, + "id": 22338, "properties": { "east": "tall", "north": "low", @@ -146342,7 +161579,7 @@ } }, { - "id": 20555, + "id": 22339, "properties": { "east": "tall", "north": "low", @@ -146353,7 +161590,7 @@ } }, { - "id": 20556, + "id": 22340, "properties": { "east": "tall", "north": "low", @@ -146364,7 +161601,7 @@ } }, { - "id": 20557, + "id": 22341, "properties": { "east": "tall", "north": "low", @@ -146375,7 +161612,7 @@ } }, { - "id": 20558, + "id": 22342, "properties": { "east": "tall", "north": "low", @@ -146386,7 +161623,7 @@ } }, { - "id": 20559, + "id": 22343, "properties": { "east": "tall", "north": "low", @@ -146397,7 +161634,7 @@ } }, { - "id": 20560, + "id": 22344, "properties": { "east": "tall", "north": "low", @@ -146408,7 +161645,7 @@ } }, { - "id": 20561, + "id": 22345, "properties": { "east": "tall", "north": "low", @@ -146419,7 +161656,7 @@ } }, { - "id": 20562, + "id": 22346, "properties": { "east": "tall", "north": "low", @@ -146430,7 +161667,7 @@ } }, { - "id": 20563, + "id": 22347, "properties": { "east": "tall", "north": "low", @@ -146441,7 +161678,7 @@ } }, { - "id": 20564, + "id": 22348, "properties": { "east": "tall", "north": "low", @@ -146452,7 +161689,7 @@ } }, { - "id": 20565, + "id": 22349, "properties": { "east": "tall", "north": "low", @@ -146463,7 +161700,7 @@ } }, { - "id": 20566, + "id": 22350, "properties": { "east": "tall", "north": "low", @@ -146474,7 +161711,7 @@ } }, { - "id": 20567, + "id": 22351, "properties": { "east": "tall", "north": "tall", @@ -146485,7 +161722,7 @@ } }, { - "id": 20568, + "id": 22352, "properties": { "east": "tall", "north": "tall", @@ -146496,7 +161733,7 @@ } }, { - "id": 20569, + "id": 22353, "properties": { "east": "tall", "north": "tall", @@ -146507,7 +161744,7 @@ } }, { - "id": 20570, + "id": 22354, "properties": { "east": "tall", "north": "tall", @@ -146518,7 +161755,7 @@ } }, { - "id": 20571, + "id": 22355, "properties": { "east": "tall", "north": "tall", @@ -146529,7 +161766,7 @@ } }, { - "id": 20572, + "id": 22356, "properties": { "east": "tall", "north": "tall", @@ -146540,7 +161777,7 @@ } }, { - "id": 20573, + "id": 22357, "properties": { "east": "tall", "north": "tall", @@ -146551,7 +161788,7 @@ } }, { - "id": 20574, + "id": 22358, "properties": { "east": "tall", "north": "tall", @@ -146562,7 +161799,7 @@ } }, { - "id": 20575, + "id": 22359, "properties": { "east": "tall", "north": "tall", @@ -146573,7 +161810,7 @@ } }, { - "id": 20576, + "id": 22360, "properties": { "east": "tall", "north": "tall", @@ -146584,7 +161821,7 @@ } }, { - "id": 20577, + "id": 22361, "properties": { "east": "tall", "north": "tall", @@ -146595,7 +161832,7 @@ } }, { - "id": 20578, + "id": 22362, "properties": { "east": "tall", "north": "tall", @@ -146606,7 +161843,7 @@ } }, { - "id": 20579, + "id": 22363, "properties": { "east": "tall", "north": "tall", @@ -146617,7 +161854,7 @@ } }, { - "id": 20580, + "id": 22364, "properties": { "east": "tall", "north": "tall", @@ -146628,7 +161865,7 @@ } }, { - "id": 20581, + "id": 22365, "properties": { "east": "tall", "north": "tall", @@ -146639,7 +161876,7 @@ } }, { - "id": 20582, + "id": 22366, "properties": { "east": "tall", "north": "tall", @@ -146650,7 +161887,7 @@ } }, { - "id": 20583, + "id": 22367, "properties": { "east": "tall", "north": "tall", @@ -146661,7 +161898,7 @@ } }, { - "id": 20584, + "id": 22368, "properties": { "east": "tall", "north": "tall", @@ -146672,7 +161909,7 @@ } }, { - "id": 20585, + "id": 22369, "properties": { "east": "tall", "north": "tall", @@ -146683,7 +161920,7 @@ } }, { - "id": 20586, + "id": 22370, "properties": { "east": "tall", "north": "tall", @@ -146694,7 +161931,7 @@ } }, { - "id": 20587, + "id": 22371, "properties": { "east": "tall", "north": "tall", @@ -146705,7 +161942,7 @@ } }, { - "id": 20588, + "id": 22372, "properties": { "east": "tall", "north": "tall", @@ -146716,7 +161953,7 @@ } }, { - "id": 20589, + "id": 22373, "properties": { "east": "tall", "north": "tall", @@ -146727,7 +161964,7 @@ } }, { - "id": 20590, + "id": 22374, "properties": { "east": "tall", "north": "tall", @@ -146738,7 +161975,7 @@ } }, { - "id": 20591, + "id": 22375, "properties": { "east": "tall", "north": "tall", @@ -146749,7 +161986,7 @@ } }, { - "id": 20592, + "id": 22376, "properties": { "east": "tall", "north": "tall", @@ -146760,7 +161997,7 @@ } }, { - "id": 20593, + "id": 22377, "properties": { "east": "tall", "north": "tall", @@ -146771,7 +162008,7 @@ } }, { - "id": 20594, + "id": 22378, "properties": { "east": "tall", "north": "tall", @@ -146782,7 +162019,7 @@ } }, { - "id": 20595, + "id": 22379, "properties": { "east": "tall", "north": "tall", @@ -146793,7 +162030,7 @@ } }, { - "id": 20596, + "id": 22380, "properties": { "east": "tall", "north": "tall", @@ -146804,7 +162041,7 @@ } }, { - "id": 20597, + "id": 22381, "properties": { "east": "tall", "north": "tall", @@ -146815,7 +162052,7 @@ } }, { - "id": 20598, + "id": 22382, "properties": { "east": "tall", "north": "tall", @@ -146826,7 +162063,7 @@ } }, { - "id": 20599, + "id": 22383, "properties": { "east": "tall", "north": "tall", @@ -146837,7 +162074,7 @@ } }, { - "id": 20600, + "id": 22384, "properties": { "east": "tall", "north": "tall", @@ -146848,7 +162085,7 @@ } }, { - "id": 20601, + "id": 22385, "properties": { "east": "tall", "north": "tall", @@ -146859,7 +162096,7 @@ } }, { - "id": 20602, + "id": 22386, "properties": { "east": "tall", "north": "tall", @@ -146893,21 +162130,21 @@ }, "states": [ { - "id": 11688, + "id": 13472, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11689, + "id": 13473, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11690, + "id": 13474, "properties": { "type": "bottom", "waterlogged": "true" @@ -146915,21 +162152,21 @@ }, { "default": true, - "id": 11691, + "id": 13475, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11692, + "id": 13476, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11693, + "id": 13477, "properties": { "type": "double", "waterlogged": "false" @@ -146963,7 +162200,7 @@ }, "states": [ { - "id": 10790, + "id": 12574, "properties": { "facing": "north", "half": "top", @@ -146972,7 +162209,7 @@ } }, { - "id": 10791, + "id": 12575, "properties": { "facing": "north", "half": "top", @@ -146981,7 +162218,7 @@ } }, { - "id": 10792, + "id": 12576, "properties": { "facing": "north", "half": "top", @@ -146990,7 +162227,7 @@ } }, { - "id": 10793, + "id": 12577, "properties": { "facing": "north", "half": "top", @@ -146999,7 +162236,7 @@ } }, { - "id": 10794, + "id": 12578, "properties": { "facing": "north", "half": "top", @@ -147008,7 +162245,7 @@ } }, { - "id": 10795, + "id": 12579, "properties": { "facing": "north", "half": "top", @@ -147017,7 +162254,7 @@ } }, { - "id": 10796, + "id": 12580, "properties": { "facing": "north", "half": "top", @@ -147026,7 +162263,7 @@ } }, { - "id": 10797, + "id": 12581, "properties": { "facing": "north", "half": "top", @@ -147035,7 +162272,7 @@ } }, { - "id": 10798, + "id": 12582, "properties": { "facing": "north", "half": "top", @@ -147044,7 +162281,7 @@ } }, { - "id": 10799, + "id": 12583, "properties": { "facing": "north", "half": "top", @@ -147053,7 +162290,7 @@ } }, { - "id": 10800, + "id": 12584, "properties": { "facing": "north", "half": "bottom", @@ -147063,7 +162300,7 @@ }, { "default": true, - "id": 10801, + "id": 12585, "properties": { "facing": "north", "half": "bottom", @@ -147072,7 +162309,7 @@ } }, { - "id": 10802, + "id": 12586, "properties": { "facing": "north", "half": "bottom", @@ -147081,7 +162318,7 @@ } }, { - "id": 10803, + "id": 12587, "properties": { "facing": "north", "half": "bottom", @@ -147090,7 +162327,7 @@ } }, { - "id": 10804, + "id": 12588, "properties": { "facing": "north", "half": "bottom", @@ -147099,7 +162336,7 @@ } }, { - "id": 10805, + "id": 12589, "properties": { "facing": "north", "half": "bottom", @@ -147108,7 +162345,7 @@ } }, { - "id": 10806, + "id": 12590, "properties": { "facing": "north", "half": "bottom", @@ -147117,7 +162354,7 @@ } }, { - "id": 10807, + "id": 12591, "properties": { "facing": "north", "half": "bottom", @@ -147126,7 +162363,7 @@ } }, { - "id": 10808, + "id": 12592, "properties": { "facing": "north", "half": "bottom", @@ -147135,7 +162372,7 @@ } }, { - "id": 10809, + "id": 12593, "properties": { "facing": "north", "half": "bottom", @@ -147144,7 +162381,7 @@ } }, { - "id": 10810, + "id": 12594, "properties": { "facing": "south", "half": "top", @@ -147153,7 +162390,7 @@ } }, { - "id": 10811, + "id": 12595, "properties": { "facing": "south", "half": "top", @@ -147162,7 +162399,7 @@ } }, { - "id": 10812, + "id": 12596, "properties": { "facing": "south", "half": "top", @@ -147171,7 +162408,7 @@ } }, { - "id": 10813, + "id": 12597, "properties": { "facing": "south", "half": "top", @@ -147180,7 +162417,7 @@ } }, { - "id": 10814, + "id": 12598, "properties": { "facing": "south", "half": "top", @@ -147189,7 +162426,7 @@ } }, { - "id": 10815, + "id": 12599, "properties": { "facing": "south", "half": "top", @@ -147198,7 +162435,7 @@ } }, { - "id": 10816, + "id": 12600, "properties": { "facing": "south", "half": "top", @@ -147207,7 +162444,7 @@ } }, { - "id": 10817, + "id": 12601, "properties": { "facing": "south", "half": "top", @@ -147216,7 +162453,7 @@ } }, { - "id": 10818, + "id": 12602, "properties": { "facing": "south", "half": "top", @@ -147225,7 +162462,7 @@ } }, { - "id": 10819, + "id": 12603, "properties": { "facing": "south", "half": "top", @@ -147234,7 +162471,7 @@ } }, { - "id": 10820, + "id": 12604, "properties": { "facing": "south", "half": "bottom", @@ -147243,7 +162480,7 @@ } }, { - "id": 10821, + "id": 12605, "properties": { "facing": "south", "half": "bottom", @@ -147252,7 +162489,7 @@ } }, { - "id": 10822, + "id": 12606, "properties": { "facing": "south", "half": "bottom", @@ -147261,7 +162498,7 @@ } }, { - "id": 10823, + "id": 12607, "properties": { "facing": "south", "half": "bottom", @@ -147270,7 +162507,7 @@ } }, { - "id": 10824, + "id": 12608, "properties": { "facing": "south", "half": "bottom", @@ -147279,7 +162516,7 @@ } }, { - "id": 10825, + "id": 12609, "properties": { "facing": "south", "half": "bottom", @@ -147288,7 +162525,7 @@ } }, { - "id": 10826, + "id": 12610, "properties": { "facing": "south", "half": "bottom", @@ -147297,7 +162534,7 @@ } }, { - "id": 10827, + "id": 12611, "properties": { "facing": "south", "half": "bottom", @@ -147306,7 +162543,7 @@ } }, { - "id": 10828, + "id": 12612, "properties": { "facing": "south", "half": "bottom", @@ -147315,7 +162552,7 @@ } }, { - "id": 10829, + "id": 12613, "properties": { "facing": "south", "half": "bottom", @@ -147324,7 +162561,7 @@ } }, { - "id": 10830, + "id": 12614, "properties": { "facing": "west", "half": "top", @@ -147333,7 +162570,7 @@ } }, { - "id": 10831, + "id": 12615, "properties": { "facing": "west", "half": "top", @@ -147342,7 +162579,7 @@ } }, { - "id": 10832, + "id": 12616, "properties": { "facing": "west", "half": "top", @@ -147351,7 +162588,7 @@ } }, { - "id": 10833, + "id": 12617, "properties": { "facing": "west", "half": "top", @@ -147360,7 +162597,7 @@ } }, { - "id": 10834, + "id": 12618, "properties": { "facing": "west", "half": "top", @@ -147369,7 +162606,7 @@ } }, { - "id": 10835, + "id": 12619, "properties": { "facing": "west", "half": "top", @@ -147378,7 +162615,7 @@ } }, { - "id": 10836, + "id": 12620, "properties": { "facing": "west", "half": "top", @@ -147387,7 +162624,7 @@ } }, { - "id": 10837, + "id": 12621, "properties": { "facing": "west", "half": "top", @@ -147396,7 +162633,7 @@ } }, { - "id": 10838, + "id": 12622, "properties": { "facing": "west", "half": "top", @@ -147405,7 +162642,7 @@ } }, { - "id": 10839, + "id": 12623, "properties": { "facing": "west", "half": "top", @@ -147414,7 +162651,7 @@ } }, { - "id": 10840, + "id": 12624, "properties": { "facing": "west", "half": "bottom", @@ -147423,7 +162660,7 @@ } }, { - "id": 10841, + "id": 12625, "properties": { "facing": "west", "half": "bottom", @@ -147432,7 +162669,7 @@ } }, { - "id": 10842, + "id": 12626, "properties": { "facing": "west", "half": "bottom", @@ -147441,7 +162678,7 @@ } }, { - "id": 10843, + "id": 12627, "properties": { "facing": "west", "half": "bottom", @@ -147450,7 +162687,7 @@ } }, { - "id": 10844, + "id": 12628, "properties": { "facing": "west", "half": "bottom", @@ -147459,7 +162696,7 @@ } }, { - "id": 10845, + "id": 12629, "properties": { "facing": "west", "half": "bottom", @@ -147468,7 +162705,7 @@ } }, { - "id": 10846, + "id": 12630, "properties": { "facing": "west", "half": "bottom", @@ -147477,7 +162714,7 @@ } }, { - "id": 10847, + "id": 12631, "properties": { "facing": "west", "half": "bottom", @@ -147486,7 +162723,7 @@ } }, { - "id": 10848, + "id": 12632, "properties": { "facing": "west", "half": "bottom", @@ -147495,7 +162732,7 @@ } }, { - "id": 10849, + "id": 12633, "properties": { "facing": "west", "half": "bottom", @@ -147504,7 +162741,7 @@ } }, { - "id": 10850, + "id": 12634, "properties": { "facing": "east", "half": "top", @@ -147513,7 +162750,7 @@ } }, { - "id": 10851, + "id": 12635, "properties": { "facing": "east", "half": "top", @@ -147522,7 +162759,7 @@ } }, { - "id": 10852, + "id": 12636, "properties": { "facing": "east", "half": "top", @@ -147531,7 +162768,7 @@ } }, { - "id": 10853, + "id": 12637, "properties": { "facing": "east", "half": "top", @@ -147540,7 +162777,7 @@ } }, { - "id": 10854, + "id": 12638, "properties": { "facing": "east", "half": "top", @@ -147549,7 +162786,7 @@ } }, { - "id": 10855, + "id": 12639, "properties": { "facing": "east", "half": "top", @@ -147558,7 +162795,7 @@ } }, { - "id": 10856, + "id": 12640, "properties": { "facing": "east", "half": "top", @@ -147567,7 +162804,7 @@ } }, { - "id": 10857, + "id": 12641, "properties": { "facing": "east", "half": "top", @@ -147576,7 +162813,7 @@ } }, { - "id": 10858, + "id": 12642, "properties": { "facing": "east", "half": "top", @@ -147585,7 +162822,7 @@ } }, { - "id": 10859, + "id": 12643, "properties": { "facing": "east", "half": "top", @@ -147594,7 +162831,7 @@ } }, { - "id": 10860, + "id": 12644, "properties": { "facing": "east", "half": "bottom", @@ -147603,7 +162840,7 @@ } }, { - "id": 10861, + "id": 12645, "properties": { "facing": "east", "half": "bottom", @@ -147612,7 +162849,7 @@ } }, { - "id": 10862, + "id": 12646, "properties": { "facing": "east", "half": "bottom", @@ -147621,7 +162858,7 @@ } }, { - "id": 10863, + "id": 12647, "properties": { "facing": "east", "half": "bottom", @@ -147630,7 +162867,7 @@ } }, { - "id": 10864, + "id": 12648, "properties": { "facing": "east", "half": "bottom", @@ -147639,7 +162876,7 @@ } }, { - "id": 10865, + "id": 12649, "properties": { "facing": "east", "half": "bottom", @@ -147648,7 +162885,7 @@ } }, { - "id": 10866, + "id": 12650, "properties": { "facing": "east", "half": "bottom", @@ -147657,7 +162894,7 @@ } }, { - "id": 10867, + "id": 12651, "properties": { "facing": "east", "half": "bottom", @@ -147666,7 +162903,7 @@ } }, { - "id": 10868, + "id": 12652, "properties": { "facing": "east", "half": "bottom", @@ -147675,7 +162912,7 @@ } }, { - "id": 10869, + "id": 12653, "properties": { "facing": "east", "half": "bottom", @@ -147707,21 +162944,21 @@ }, "states": [ { - "id": 11670, + "id": 13454, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11671, + "id": 13455, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11672, + "id": 13456, "properties": { "type": "bottom", "waterlogged": "true" @@ -147729,21 +162966,21 @@ }, { "default": true, - "id": 11673, + "id": 13457, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11674, + "id": 13458, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11675, + "id": 13459, "properties": { "type": "double", "waterlogged": "false" @@ -147777,7 +163014,7 @@ }, "states": [ { - "id": 10550, + "id": 12334, "properties": { "facing": "north", "half": "top", @@ -147786,7 +163023,7 @@ } }, { - "id": 10551, + "id": 12335, "properties": { "facing": "north", "half": "top", @@ -147795,7 +163032,7 @@ } }, { - "id": 10552, + "id": 12336, "properties": { "facing": "north", "half": "top", @@ -147804,7 +163041,7 @@ } }, { - "id": 10553, + "id": 12337, "properties": { "facing": "north", "half": "top", @@ -147813,7 +163050,7 @@ } }, { - "id": 10554, + "id": 12338, "properties": { "facing": "north", "half": "top", @@ -147822,7 +163059,7 @@ } }, { - "id": 10555, + "id": 12339, "properties": { "facing": "north", "half": "top", @@ -147831,7 +163068,7 @@ } }, { - "id": 10556, + "id": 12340, "properties": { "facing": "north", "half": "top", @@ -147840,7 +163077,7 @@ } }, { - "id": 10557, + "id": 12341, "properties": { "facing": "north", "half": "top", @@ -147849,7 +163086,7 @@ } }, { - "id": 10558, + "id": 12342, "properties": { "facing": "north", "half": "top", @@ -147858,7 +163095,7 @@ } }, { - "id": 10559, + "id": 12343, "properties": { "facing": "north", "half": "top", @@ -147867,7 +163104,7 @@ } }, { - "id": 10560, + "id": 12344, "properties": { "facing": "north", "half": "bottom", @@ -147877,7 +163114,7 @@ }, { "default": true, - "id": 10561, + "id": 12345, "properties": { "facing": "north", "half": "bottom", @@ -147886,7 +163123,7 @@ } }, { - "id": 10562, + "id": 12346, "properties": { "facing": "north", "half": "bottom", @@ -147895,7 +163132,7 @@ } }, { - "id": 10563, + "id": 12347, "properties": { "facing": "north", "half": "bottom", @@ -147904,7 +163141,7 @@ } }, { - "id": 10564, + "id": 12348, "properties": { "facing": "north", "half": "bottom", @@ -147913,7 +163150,7 @@ } }, { - "id": 10565, + "id": 12349, "properties": { "facing": "north", "half": "bottom", @@ -147922,7 +163159,7 @@ } }, { - "id": 10566, + "id": 12350, "properties": { "facing": "north", "half": "bottom", @@ -147931,7 +163168,7 @@ } }, { - "id": 10567, + "id": 12351, "properties": { "facing": "north", "half": "bottom", @@ -147940,7 +163177,7 @@ } }, { - "id": 10568, + "id": 12352, "properties": { "facing": "north", "half": "bottom", @@ -147949,7 +163186,7 @@ } }, { - "id": 10569, + "id": 12353, "properties": { "facing": "north", "half": "bottom", @@ -147958,7 +163195,7 @@ } }, { - "id": 10570, + "id": 12354, "properties": { "facing": "south", "half": "top", @@ -147967,7 +163204,7 @@ } }, { - "id": 10571, + "id": 12355, "properties": { "facing": "south", "half": "top", @@ -147976,7 +163213,7 @@ } }, { - "id": 10572, + "id": 12356, "properties": { "facing": "south", "half": "top", @@ -147985,7 +163222,7 @@ } }, { - "id": 10573, + "id": 12357, "properties": { "facing": "south", "half": "top", @@ -147994,7 +163231,7 @@ } }, { - "id": 10574, + "id": 12358, "properties": { "facing": "south", "half": "top", @@ -148003,7 +163240,7 @@ } }, { - "id": 10575, + "id": 12359, "properties": { "facing": "south", "half": "top", @@ -148012,7 +163249,7 @@ } }, { - "id": 10576, + "id": 12360, "properties": { "facing": "south", "half": "top", @@ -148021,7 +163258,7 @@ } }, { - "id": 10577, + "id": 12361, "properties": { "facing": "south", "half": "top", @@ -148030,7 +163267,7 @@ } }, { - "id": 10578, + "id": 12362, "properties": { "facing": "south", "half": "top", @@ -148039,7 +163276,7 @@ } }, { - "id": 10579, + "id": 12363, "properties": { "facing": "south", "half": "top", @@ -148048,7 +163285,7 @@ } }, { - "id": 10580, + "id": 12364, "properties": { "facing": "south", "half": "bottom", @@ -148057,7 +163294,7 @@ } }, { - "id": 10581, + "id": 12365, "properties": { "facing": "south", "half": "bottom", @@ -148066,7 +163303,7 @@ } }, { - "id": 10582, + "id": 12366, "properties": { "facing": "south", "half": "bottom", @@ -148075,7 +163312,7 @@ } }, { - "id": 10583, + "id": 12367, "properties": { "facing": "south", "half": "bottom", @@ -148084,7 +163321,7 @@ } }, { - "id": 10584, + "id": 12368, "properties": { "facing": "south", "half": "bottom", @@ -148093,7 +163330,7 @@ } }, { - "id": 10585, + "id": 12369, "properties": { "facing": "south", "half": "bottom", @@ -148102,7 +163339,7 @@ } }, { - "id": 10586, + "id": 12370, "properties": { "facing": "south", "half": "bottom", @@ -148111,7 +163348,7 @@ } }, { - "id": 10587, + "id": 12371, "properties": { "facing": "south", "half": "bottom", @@ -148120,7 +163357,7 @@ } }, { - "id": 10588, + "id": 12372, "properties": { "facing": "south", "half": "bottom", @@ -148129,7 +163366,7 @@ } }, { - "id": 10589, + "id": 12373, "properties": { "facing": "south", "half": "bottom", @@ -148138,7 +163375,7 @@ } }, { - "id": 10590, + "id": 12374, "properties": { "facing": "west", "half": "top", @@ -148147,7 +163384,7 @@ } }, { - "id": 10591, + "id": 12375, "properties": { "facing": "west", "half": "top", @@ -148156,7 +163393,7 @@ } }, { - "id": 10592, + "id": 12376, "properties": { "facing": "west", "half": "top", @@ -148165,7 +163402,7 @@ } }, { - "id": 10593, + "id": 12377, "properties": { "facing": "west", "half": "top", @@ -148174,7 +163411,7 @@ } }, { - "id": 10594, + "id": 12378, "properties": { "facing": "west", "half": "top", @@ -148183,7 +163420,7 @@ } }, { - "id": 10595, + "id": 12379, "properties": { "facing": "west", "half": "top", @@ -148192,7 +163429,7 @@ } }, { - "id": 10596, + "id": 12380, "properties": { "facing": "west", "half": "top", @@ -148201,7 +163438,7 @@ } }, { - "id": 10597, + "id": 12381, "properties": { "facing": "west", "half": "top", @@ -148210,7 +163447,7 @@ } }, { - "id": 10598, + "id": 12382, "properties": { "facing": "west", "half": "top", @@ -148219,7 +163456,7 @@ } }, { - "id": 10599, + "id": 12383, "properties": { "facing": "west", "half": "top", @@ -148228,7 +163465,7 @@ } }, { - "id": 10600, + "id": 12384, "properties": { "facing": "west", "half": "bottom", @@ -148237,7 +163474,7 @@ } }, { - "id": 10601, + "id": 12385, "properties": { "facing": "west", "half": "bottom", @@ -148246,7 +163483,7 @@ } }, { - "id": 10602, + "id": 12386, "properties": { "facing": "west", "half": "bottom", @@ -148255,7 +163492,7 @@ } }, { - "id": 10603, + "id": 12387, "properties": { "facing": "west", "half": "bottom", @@ -148264,7 +163501,7 @@ } }, { - "id": 10604, + "id": 12388, "properties": { "facing": "west", "half": "bottom", @@ -148273,7 +163510,7 @@ } }, { - "id": 10605, + "id": 12389, "properties": { "facing": "west", "half": "bottom", @@ -148282,7 +163519,7 @@ } }, { - "id": 10606, + "id": 12390, "properties": { "facing": "west", "half": "bottom", @@ -148291,7 +163528,7 @@ } }, { - "id": 10607, + "id": 12391, "properties": { "facing": "west", "half": "bottom", @@ -148300,7 +163537,7 @@ } }, { - "id": 10608, + "id": 12392, "properties": { "facing": "west", "half": "bottom", @@ -148309,7 +163546,7 @@ } }, { - "id": 10609, + "id": 12393, "properties": { "facing": "west", "half": "bottom", @@ -148318,7 +163555,7 @@ } }, { - "id": 10610, + "id": 12394, "properties": { "facing": "east", "half": "top", @@ -148327,7 +163564,7 @@ } }, { - "id": 10611, + "id": 12395, "properties": { "facing": "east", "half": "top", @@ -148336,7 +163573,7 @@ } }, { - "id": 10612, + "id": 12396, "properties": { "facing": "east", "half": "top", @@ -148345,7 +163582,7 @@ } }, { - "id": 10613, + "id": 12397, "properties": { "facing": "east", "half": "top", @@ -148354,7 +163591,7 @@ } }, { - "id": 10614, + "id": 12398, "properties": { "facing": "east", "half": "top", @@ -148363,7 +163600,7 @@ } }, { - "id": 10615, + "id": 12399, "properties": { "facing": "east", "half": "top", @@ -148372,7 +163609,7 @@ } }, { - "id": 10616, + "id": 12400, "properties": { "facing": "east", "half": "top", @@ -148381,7 +163618,7 @@ } }, { - "id": 10617, + "id": 12401, "properties": { "facing": "east", "half": "top", @@ -148390,7 +163627,7 @@ } }, { - "id": 10618, + "id": 12402, "properties": { "facing": "east", "half": "top", @@ -148399,7 +163636,7 @@ } }, { - "id": 10619, + "id": 12403, "properties": { "facing": "east", "half": "top", @@ -148408,7 +163645,7 @@ } }, { - "id": 10620, + "id": 12404, "properties": { "facing": "east", "half": "bottom", @@ -148417,7 +163654,7 @@ } }, { - "id": 10621, + "id": 12405, "properties": { "facing": "east", "half": "bottom", @@ -148426,7 +163663,7 @@ } }, { - "id": 10622, + "id": 12406, "properties": { "facing": "east", "half": "bottom", @@ -148435,7 +163672,7 @@ } }, { - "id": 10623, + "id": 12407, "properties": { "facing": "east", "half": "bottom", @@ -148444,7 +163681,7 @@ } }, { - "id": 10624, + "id": 12408, "properties": { "facing": "east", "half": "bottom", @@ -148453,7 +163690,7 @@ } }, { - "id": 10625, + "id": 12409, "properties": { "facing": "east", "half": "bottom", @@ -148462,7 +163699,7 @@ } }, { - "id": 10626, + "id": 12410, "properties": { "facing": "east", "half": "bottom", @@ -148471,7 +163708,7 @@ } }, { - "id": 10627, + "id": 12411, "properties": { "facing": "east", "half": "bottom", @@ -148480,7 +163717,7 @@ } }, { - "id": 10628, + "id": 12412, "properties": { "facing": "east", "half": "bottom", @@ -148489,7 +163726,7 @@ } }, { - "id": 10629, + "id": 12413, "properties": { "facing": "east", "half": "bottom", @@ -148503,7 +163740,7 @@ "states": [ { "default": true, - "id": 1667 + "id": 2025 } ] }, @@ -148523,49 +163760,49 @@ "states": [ { "default": true, - "id": 6931, + "id": 8371, "properties": { "age": "0" } }, { - "id": 6932, + "id": 8372, "properties": { "age": "1" } }, { - "id": 6933, + "id": 8373, "properties": { "age": "2" } }, { - "id": 6934, + "id": 8374, "properties": { "age": "3" } }, { - "id": 6935, + "id": 8375, "properties": { "age": "4" } }, { - "id": 6936, + "id": 8376, "properties": { "age": "5" } }, { - "id": 6937, + "id": 8377, "properties": { "age": "6" } }, { - "id": 6938, + "id": 8378, "properties": { "age": "7" } @@ -148576,7 +163813,7 @@ "states": [ { "default": true, - "id": 6902 + "id": 8342 } ] }, @@ -148584,7 +163821,7 @@ "states": [ { "default": true, - "id": 6909 + "id": 8349 } ] }, @@ -148592,7 +163829,7 @@ "states": [ { "default": true, - "id": 21435 + "id": 23219 } ] }, @@ -148600,7 +163837,7 @@ "states": [ { "default": true, - "id": 6910 + "id": 8350 } ] }, @@ -148608,7 +163845,7 @@ "states": [ { "default": true, - "id": 10545 + "id": 12329 } ] }, @@ -148616,7 +163853,7 @@ "states": [ { "default": true, - "id": 6900 + "id": 8340 } ] }, @@ -148624,7 +163861,7 @@ "states": [ { "default": true, - "id": 6908 + "id": 8348 } ] }, @@ -148632,7 +163869,7 @@ "states": [ { "default": true, - "id": 6920 + "id": 8360 } ] }, @@ -148640,7 +163877,7 @@ "states": [ { "default": true, - "id": 6922 + "id": 8362 } ] }, @@ -148648,7 +163885,7 @@ "states": [ { "default": true, - "id": 6916 + "id": 8356 } ] }, @@ -148656,7 +163893,7 @@ "states": [ { "default": true, - "id": 17043 + "id": 18827 } ] }, @@ -148664,7 +163901,7 @@ "states": [ { "default": true, - "id": 17045 + "id": 18829 } ] }, @@ -148672,7 +163909,7 @@ "states": [ { "default": true, - "id": 6906 + "id": 8346 } ] }, @@ -148680,7 +163917,7 @@ "states": [ { "default": true, - "id": 6903 + "id": 8343 } ] }, @@ -148688,7 +163925,7 @@ "states": [ { "default": true, - "id": 6921 + "id": 8361 } ] }, @@ -148696,7 +163933,7 @@ "states": [ { "default": true, - "id": 6905 + "id": 8345 } ] }, @@ -148704,7 +163941,7 @@ "states": [ { "default": true, - "id": 21436 + "id": 23220 } ] }, @@ -148712,7 +163949,7 @@ "states": [ { "default": true, - "id": 6901 + "id": 8341 } ] }, @@ -148720,7 +163957,7 @@ "states": [ { "default": true, - "id": 6917 + "id": 8357 } ] }, @@ -148728,7 +163965,7 @@ "states": [ { "default": true, - "id": 6904 + "id": 8344 } ] }, @@ -148736,7 +163973,7 @@ "states": [ { "default": true, - "id": 6898 + "id": 8338 } ] }, @@ -148744,7 +163981,7 @@ "states": [ { "default": true, - "id": 6912 + "id": 8352 } ] }, @@ -148752,7 +163989,7 @@ "states": [ { "default": true, - "id": 6915 + "id": 8355 } ] }, @@ -148760,7 +163997,7 @@ "states": [ { "default": true, - "id": 6914 + "id": 8354 } ] }, @@ -148768,7 +164005,7 @@ "states": [ { "default": true, - "id": 6907 + "id": 8347 } ] }, @@ -148776,7 +164013,7 @@ "states": [ { "default": true, - "id": 6919 + "id": 8359 } ] }, @@ -148784,7 +164021,7 @@ "states": [ { "default": true, - "id": 6911 + "id": 8351 } ] }, @@ -148792,7 +164029,7 @@ "states": [ { "default": true, - "id": 6899 + "id": 8339 } ] }, @@ -148800,7 +164037,7 @@ "states": [ { "default": true, - "id": 17044 + "id": 18828 } ] }, @@ -148808,7 +164045,7 @@ "states": [ { "default": true, - "id": 17046 + "id": 18830 } ] }, @@ -148816,7 +164053,7 @@ "states": [ { "default": true, - "id": 6913 + "id": 8353 } ] }, @@ -148824,7 +164061,7 @@ "states": [ { "default": true, - "id": 6918 + "id": 8358 } ] }, @@ -148832,7 +164069,7 @@ "states": [ { "default": true, - "id": 18672 + "id": 20456 } ] }, @@ -148847,19 +164084,19 @@ "states": [ { "default": true, - "id": 5733, + "id": 7173, "properties": { "level": "1" } }, { - "id": 5734, + "id": 7174, "properties": { "level": "2" } }, { - "id": 5735, + "id": 7175, "properties": { "level": "3" } @@ -148887,7 +164124,7 @@ }, "states": [ { - "id": 1535, + "id": 1893, "properties": { "powered": "true", "shape": "north_south", @@ -148895,7 +164132,7 @@ } }, { - "id": 1536, + "id": 1894, "properties": { "powered": "true", "shape": "north_south", @@ -148903,7 +164140,7 @@ } }, { - "id": 1537, + "id": 1895, "properties": { "powered": "true", "shape": "east_west", @@ -148911,7 +164148,7 @@ } }, { - "id": 1538, + "id": 1896, "properties": { "powered": "true", "shape": "east_west", @@ -148919,7 +164156,7 @@ } }, { - "id": 1539, + "id": 1897, "properties": { "powered": "true", "shape": "ascending_east", @@ -148927,7 +164164,7 @@ } }, { - "id": 1540, + "id": 1898, "properties": { "powered": "true", "shape": "ascending_east", @@ -148935,7 +164172,7 @@ } }, { - "id": 1541, + "id": 1899, "properties": { "powered": "true", "shape": "ascending_west", @@ -148943,7 +164180,7 @@ } }, { - "id": 1542, + "id": 1900, "properties": { "powered": "true", "shape": "ascending_west", @@ -148951,7 +164188,7 @@ } }, { - "id": 1543, + "id": 1901, "properties": { "powered": "true", "shape": "ascending_north", @@ -148959,7 +164196,7 @@ } }, { - "id": 1544, + "id": 1902, "properties": { "powered": "true", "shape": "ascending_north", @@ -148967,7 +164204,7 @@ } }, { - "id": 1545, + "id": 1903, "properties": { "powered": "true", "shape": "ascending_south", @@ -148975,7 +164212,7 @@ } }, { - "id": 1546, + "id": 1904, "properties": { "powered": "true", "shape": "ascending_south", @@ -148983,7 +164220,7 @@ } }, { - "id": 1547, + "id": 1905, "properties": { "powered": "false", "shape": "north_south", @@ -148992,7 +164229,7 @@ }, { "default": true, - "id": 1548, + "id": 1906, "properties": { "powered": "false", "shape": "north_south", @@ -149000,7 +164237,7 @@ } }, { - "id": 1549, + "id": 1907, "properties": { "powered": "false", "shape": "east_west", @@ -149008,7 +164245,7 @@ } }, { - "id": 1550, + "id": 1908, "properties": { "powered": "false", "shape": "east_west", @@ -149016,7 +164253,7 @@ } }, { - "id": 1551, + "id": 1909, "properties": { "powered": "false", "shape": "ascending_east", @@ -149024,7 +164261,7 @@ } }, { - "id": 1552, + "id": 1910, "properties": { "powered": "false", "shape": "ascending_east", @@ -149032,7 +164269,7 @@ } }, { - "id": 1553, + "id": 1911, "properties": { "powered": "false", "shape": "ascending_west", @@ -149040,7 +164277,7 @@ } }, { - "id": 1554, + "id": 1912, "properties": { "powered": "false", "shape": "ascending_west", @@ -149048,7 +164285,7 @@ } }, { - "id": 1555, + "id": 1913, "properties": { "powered": "false", "shape": "ascending_north", @@ -149056,7 +164293,7 @@ } }, { - "id": 1556, + "id": 1914, "properties": { "powered": "false", "shape": "ascending_north", @@ -149064,7 +164301,7 @@ } }, { - "id": 1557, + "id": 1915, "properties": { "powered": "false", "shape": "ascending_south", @@ -149072,7 +164309,7 @@ } }, { - "id": 1558, + "id": 1916, "properties": { "powered": "false", "shape": "ascending_south", @@ -149085,7 +164322,7 @@ "states": [ { "default": true, - "id": 8342 + "id": 9986 } ] }, @@ -149103,21 +164340,21 @@ }, "states": [ { - "id": 8591, + "id": 10235, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 8592, + "id": 10236, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 8593, + "id": 10237, "properties": { "type": "bottom", "waterlogged": "true" @@ -149125,21 +164362,21 @@ }, { "default": true, - "id": 8594, + "id": 10238, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 8595, + "id": 10239, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 8596, + "id": 10240, "properties": { "type": "double", "waterlogged": "false" @@ -149173,7 +164410,7 @@ }, "states": [ { - "id": 8425, + "id": 10069, "properties": { "facing": "north", "half": "top", @@ -149182,7 +164419,7 @@ } }, { - "id": 8426, + "id": 10070, "properties": { "facing": "north", "half": "top", @@ -149191,7 +164428,7 @@ } }, { - "id": 8427, + "id": 10071, "properties": { "facing": "north", "half": "top", @@ -149200,7 +164437,7 @@ } }, { - "id": 8428, + "id": 10072, "properties": { "facing": "north", "half": "top", @@ -149209,7 +164446,7 @@ } }, { - "id": 8429, + "id": 10073, "properties": { "facing": "north", "half": "top", @@ -149218,7 +164455,7 @@ } }, { - "id": 8430, + "id": 10074, "properties": { "facing": "north", "half": "top", @@ -149227,7 +164464,7 @@ } }, { - "id": 8431, + "id": 10075, "properties": { "facing": "north", "half": "top", @@ -149236,7 +164473,7 @@ } }, { - "id": 8432, + "id": 10076, "properties": { "facing": "north", "half": "top", @@ -149245,7 +164482,7 @@ } }, { - "id": 8433, + "id": 10077, "properties": { "facing": "north", "half": "top", @@ -149254,7 +164491,7 @@ } }, { - "id": 8434, + "id": 10078, "properties": { "facing": "north", "half": "top", @@ -149263,7 +164500,7 @@ } }, { - "id": 8435, + "id": 10079, "properties": { "facing": "north", "half": "bottom", @@ -149273,7 +164510,7 @@ }, { "default": true, - "id": 8436, + "id": 10080, "properties": { "facing": "north", "half": "bottom", @@ -149282,7 +164519,7 @@ } }, { - "id": 8437, + "id": 10081, "properties": { "facing": "north", "half": "bottom", @@ -149291,7 +164528,7 @@ } }, { - "id": 8438, + "id": 10082, "properties": { "facing": "north", "half": "bottom", @@ -149300,7 +164537,7 @@ } }, { - "id": 8439, + "id": 10083, "properties": { "facing": "north", "half": "bottom", @@ -149309,7 +164546,7 @@ } }, { - "id": 8440, + "id": 10084, "properties": { "facing": "north", "half": "bottom", @@ -149318,7 +164555,7 @@ } }, { - "id": 8441, + "id": 10085, "properties": { "facing": "north", "half": "bottom", @@ -149327,7 +164564,7 @@ } }, { - "id": 8442, + "id": 10086, "properties": { "facing": "north", "half": "bottom", @@ -149336,7 +164573,7 @@ } }, { - "id": 8443, + "id": 10087, "properties": { "facing": "north", "half": "bottom", @@ -149345,7 +164582,7 @@ } }, { - "id": 8444, + "id": 10088, "properties": { "facing": "north", "half": "bottom", @@ -149354,7 +164591,7 @@ } }, { - "id": 8445, + "id": 10089, "properties": { "facing": "south", "half": "top", @@ -149363,7 +164600,7 @@ } }, { - "id": 8446, + "id": 10090, "properties": { "facing": "south", "half": "top", @@ -149372,7 +164609,7 @@ } }, { - "id": 8447, + "id": 10091, "properties": { "facing": "south", "half": "top", @@ -149381,7 +164618,7 @@ } }, { - "id": 8448, + "id": 10092, "properties": { "facing": "south", "half": "top", @@ -149390,7 +164627,7 @@ } }, { - "id": 8449, + "id": 10093, "properties": { "facing": "south", "half": "top", @@ -149399,7 +164636,7 @@ } }, { - "id": 8450, + "id": 10094, "properties": { "facing": "south", "half": "top", @@ -149408,7 +164645,7 @@ } }, { - "id": 8451, + "id": 10095, "properties": { "facing": "south", "half": "top", @@ -149417,7 +164654,7 @@ } }, { - "id": 8452, + "id": 10096, "properties": { "facing": "south", "half": "top", @@ -149426,7 +164663,7 @@ } }, { - "id": 8453, + "id": 10097, "properties": { "facing": "south", "half": "top", @@ -149435,7 +164672,7 @@ } }, { - "id": 8454, + "id": 10098, "properties": { "facing": "south", "half": "top", @@ -149444,7 +164681,7 @@ } }, { - "id": 8455, + "id": 10099, "properties": { "facing": "south", "half": "bottom", @@ -149453,7 +164690,7 @@ } }, { - "id": 8456, + "id": 10100, "properties": { "facing": "south", "half": "bottom", @@ -149462,7 +164699,7 @@ } }, { - "id": 8457, + "id": 10101, "properties": { "facing": "south", "half": "bottom", @@ -149471,7 +164708,7 @@ } }, { - "id": 8458, + "id": 10102, "properties": { "facing": "south", "half": "bottom", @@ -149480,7 +164717,7 @@ } }, { - "id": 8459, + "id": 10103, "properties": { "facing": "south", "half": "bottom", @@ -149489,7 +164726,7 @@ } }, { - "id": 8460, + "id": 10104, "properties": { "facing": "south", "half": "bottom", @@ -149498,7 +164735,7 @@ } }, { - "id": 8461, + "id": 10105, "properties": { "facing": "south", "half": "bottom", @@ -149507,7 +164744,7 @@ } }, { - "id": 8462, + "id": 10106, "properties": { "facing": "south", "half": "bottom", @@ -149516,7 +164753,7 @@ } }, { - "id": 8463, + "id": 10107, "properties": { "facing": "south", "half": "bottom", @@ -149525,7 +164762,7 @@ } }, { - "id": 8464, + "id": 10108, "properties": { "facing": "south", "half": "bottom", @@ -149534,7 +164771,7 @@ } }, { - "id": 8465, + "id": 10109, "properties": { "facing": "west", "half": "top", @@ -149543,7 +164780,7 @@ } }, { - "id": 8466, + "id": 10110, "properties": { "facing": "west", "half": "top", @@ -149552,7 +164789,7 @@ } }, { - "id": 8467, + "id": 10111, "properties": { "facing": "west", "half": "top", @@ -149561,7 +164798,7 @@ } }, { - "id": 8468, + "id": 10112, "properties": { "facing": "west", "half": "top", @@ -149570,7 +164807,7 @@ } }, { - "id": 8469, + "id": 10113, "properties": { "facing": "west", "half": "top", @@ -149579,7 +164816,7 @@ } }, { - "id": 8470, + "id": 10114, "properties": { "facing": "west", "half": "top", @@ -149588,7 +164825,7 @@ } }, { - "id": 8471, + "id": 10115, "properties": { "facing": "west", "half": "top", @@ -149597,7 +164834,7 @@ } }, { - "id": 8472, + "id": 10116, "properties": { "facing": "west", "half": "top", @@ -149606,7 +164843,7 @@ } }, { - "id": 8473, + "id": 10117, "properties": { "facing": "west", "half": "top", @@ -149615,7 +164852,7 @@ } }, { - "id": 8474, + "id": 10118, "properties": { "facing": "west", "half": "top", @@ -149624,7 +164861,7 @@ } }, { - "id": 8475, + "id": 10119, "properties": { "facing": "west", "half": "bottom", @@ -149633,7 +164870,7 @@ } }, { - "id": 8476, + "id": 10120, "properties": { "facing": "west", "half": "bottom", @@ -149642,7 +164879,7 @@ } }, { - "id": 8477, + "id": 10121, "properties": { "facing": "west", "half": "bottom", @@ -149651,7 +164888,7 @@ } }, { - "id": 8478, + "id": 10122, "properties": { "facing": "west", "half": "bottom", @@ -149660,7 +164897,7 @@ } }, { - "id": 8479, + "id": 10123, "properties": { "facing": "west", "half": "bottom", @@ -149669,7 +164906,7 @@ } }, { - "id": 8480, + "id": 10124, "properties": { "facing": "west", "half": "bottom", @@ -149678,7 +164915,7 @@ } }, { - "id": 8481, + "id": 10125, "properties": { "facing": "west", "half": "bottom", @@ -149687,7 +164924,7 @@ } }, { - "id": 8482, + "id": 10126, "properties": { "facing": "west", "half": "bottom", @@ -149696,7 +164933,7 @@ } }, { - "id": 8483, + "id": 10127, "properties": { "facing": "west", "half": "bottom", @@ -149705,7 +164942,7 @@ } }, { - "id": 8484, + "id": 10128, "properties": { "facing": "west", "half": "bottom", @@ -149714,7 +164951,7 @@ } }, { - "id": 8485, + "id": 10129, "properties": { "facing": "east", "half": "top", @@ -149723,7 +164960,7 @@ } }, { - "id": 8486, + "id": 10130, "properties": { "facing": "east", "half": "top", @@ -149732,7 +164969,7 @@ } }, { - "id": 8487, + "id": 10131, "properties": { "facing": "east", "half": "top", @@ -149741,7 +164978,7 @@ } }, { - "id": 8488, + "id": 10132, "properties": { "facing": "east", "half": "top", @@ -149750,7 +164987,7 @@ } }, { - "id": 8489, + "id": 10133, "properties": { "facing": "east", "half": "top", @@ -149759,7 +164996,7 @@ } }, { - "id": 8490, + "id": 10134, "properties": { "facing": "east", "half": "top", @@ -149768,7 +165005,7 @@ } }, { - "id": 8491, + "id": 10135, "properties": { "facing": "east", "half": "top", @@ -149777,7 +165014,7 @@ } }, { - "id": 8492, + "id": 10136, "properties": { "facing": "east", "half": "top", @@ -149786,7 +165023,7 @@ } }, { - "id": 8493, + "id": 10137, "properties": { "facing": "east", "half": "top", @@ -149795,7 +165032,7 @@ } }, { - "id": 8494, + "id": 10138, "properties": { "facing": "east", "half": "top", @@ -149804,7 +165041,7 @@ } }, { - "id": 8495, + "id": 10139, "properties": { "facing": "east", "half": "bottom", @@ -149813,7 +165050,7 @@ } }, { - "id": 8496, + "id": 10140, "properties": { "facing": "east", "half": "bottom", @@ -149822,7 +165059,7 @@ } }, { - "id": 8497, + "id": 10141, "properties": { "facing": "east", "half": "bottom", @@ -149831,7 +165068,7 @@ } }, { - "id": 8498, + "id": 10142, "properties": { "facing": "east", "half": "bottom", @@ -149840,7 +165077,7 @@ } }, { - "id": 8499, + "id": 10143, "properties": { "facing": "east", "half": "bottom", @@ -149849,7 +165086,7 @@ } }, { - "id": 8500, + "id": 10144, "properties": { "facing": "east", "half": "bottom", @@ -149858,7 +165095,7 @@ } }, { - "id": 8501, + "id": 10145, "properties": { "facing": "east", "half": "bottom", @@ -149867,7 +165104,7 @@ } }, { - "id": 8502, + "id": 10146, "properties": { "facing": "east", "half": "bottom", @@ -149876,7 +165113,7 @@ } }, { - "id": 8503, + "id": 10147, "properties": { "facing": "east", "half": "bottom", @@ -149885,7 +165122,7 @@ } }, { - "id": 8504, + "id": 10148, "properties": { "facing": "east", "half": "bottom", @@ -149899,7 +165136,7 @@ "states": [ { "default": true, - "id": 8343 + "id": 9987 } ] }, @@ -149917,21 +165154,21 @@ }, "states": [ { - "id": 8585, + "id": 10229, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 8586, + "id": 10230, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 8587, + "id": 10231, "properties": { "type": "bottom", "waterlogged": "true" @@ -149939,21 +165176,21 @@ }, { "default": true, - "id": 8588, + "id": 10232, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 8589, + "id": 10233, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 8590, + "id": 10234, "properties": { "type": "double", "waterlogged": "false" @@ -149987,7 +165224,7 @@ }, "states": [ { - "id": 8345, + "id": 9989, "properties": { "facing": "north", "half": "top", @@ -149996,7 +165233,7 @@ } }, { - "id": 8346, + "id": 9990, "properties": { "facing": "north", "half": "top", @@ -150005,7 +165242,7 @@ } }, { - "id": 8347, + "id": 9991, "properties": { "facing": "north", "half": "top", @@ -150014,7 +165251,7 @@ } }, { - "id": 8348, + "id": 9992, "properties": { "facing": "north", "half": "top", @@ -150023,7 +165260,7 @@ } }, { - "id": 8349, + "id": 9993, "properties": { "facing": "north", "half": "top", @@ -150032,7 +165269,7 @@ } }, { - "id": 8350, + "id": 9994, "properties": { "facing": "north", "half": "top", @@ -150041,7 +165278,7 @@ } }, { - "id": 8351, + "id": 9995, "properties": { "facing": "north", "half": "top", @@ -150050,7 +165287,7 @@ } }, { - "id": 8352, + "id": 9996, "properties": { "facing": "north", "half": "top", @@ -150059,7 +165296,7 @@ } }, { - "id": 8353, + "id": 9997, "properties": { "facing": "north", "half": "top", @@ -150068,7 +165305,7 @@ } }, { - "id": 8354, + "id": 9998, "properties": { "facing": "north", "half": "top", @@ -150077,7 +165314,7 @@ } }, { - "id": 8355, + "id": 9999, "properties": { "facing": "north", "half": "bottom", @@ -150087,7 +165324,7 @@ }, { "default": true, - "id": 8356, + "id": 10000, "properties": { "facing": "north", "half": "bottom", @@ -150096,7 +165333,7 @@ } }, { - "id": 8357, + "id": 10001, "properties": { "facing": "north", "half": "bottom", @@ -150105,7 +165342,7 @@ } }, { - "id": 8358, + "id": 10002, "properties": { "facing": "north", "half": "bottom", @@ -150114,7 +165351,7 @@ } }, { - "id": 8359, + "id": 10003, "properties": { "facing": "north", "half": "bottom", @@ -150123,7 +165360,7 @@ } }, { - "id": 8360, + "id": 10004, "properties": { "facing": "north", "half": "bottom", @@ -150132,7 +165369,7 @@ } }, { - "id": 8361, + "id": 10005, "properties": { "facing": "north", "half": "bottom", @@ -150141,7 +165378,7 @@ } }, { - "id": 8362, + "id": 10006, "properties": { "facing": "north", "half": "bottom", @@ -150150,7 +165387,7 @@ } }, { - "id": 8363, + "id": 10007, "properties": { "facing": "north", "half": "bottom", @@ -150159,7 +165396,7 @@ } }, { - "id": 8364, + "id": 10008, "properties": { "facing": "north", "half": "bottom", @@ -150168,7 +165405,7 @@ } }, { - "id": 8365, + "id": 10009, "properties": { "facing": "south", "half": "top", @@ -150177,7 +165414,7 @@ } }, { - "id": 8366, + "id": 10010, "properties": { "facing": "south", "half": "top", @@ -150186,7 +165423,7 @@ } }, { - "id": 8367, + "id": 10011, "properties": { "facing": "south", "half": "top", @@ -150195,7 +165432,7 @@ } }, { - "id": 8368, + "id": 10012, "properties": { "facing": "south", "half": "top", @@ -150204,7 +165441,7 @@ } }, { - "id": 8369, + "id": 10013, "properties": { "facing": "south", "half": "top", @@ -150213,7 +165450,7 @@ } }, { - "id": 8370, + "id": 10014, "properties": { "facing": "south", "half": "top", @@ -150222,7 +165459,7 @@ } }, { - "id": 8371, + "id": 10015, "properties": { "facing": "south", "half": "top", @@ -150231,7 +165468,7 @@ } }, { - "id": 8372, + "id": 10016, "properties": { "facing": "south", "half": "top", @@ -150240,7 +165477,7 @@ } }, { - "id": 8373, + "id": 10017, "properties": { "facing": "south", "half": "top", @@ -150249,7 +165486,7 @@ } }, { - "id": 8374, + "id": 10018, "properties": { "facing": "south", "half": "top", @@ -150258,7 +165495,7 @@ } }, { - "id": 8375, + "id": 10019, "properties": { "facing": "south", "half": "bottom", @@ -150267,7 +165504,7 @@ } }, { - "id": 8376, + "id": 10020, "properties": { "facing": "south", "half": "bottom", @@ -150276,7 +165513,7 @@ } }, { - "id": 8377, + "id": 10021, "properties": { "facing": "south", "half": "bottom", @@ -150285,7 +165522,7 @@ } }, { - "id": 8378, + "id": 10022, "properties": { "facing": "south", "half": "bottom", @@ -150294,7 +165531,7 @@ } }, { - "id": 8379, + "id": 10023, "properties": { "facing": "south", "half": "bottom", @@ -150303,7 +165540,7 @@ } }, { - "id": 8380, + "id": 10024, "properties": { "facing": "south", "half": "bottom", @@ -150312,7 +165549,7 @@ } }, { - "id": 8381, + "id": 10025, "properties": { "facing": "south", "half": "bottom", @@ -150321,7 +165558,7 @@ } }, { - "id": 8382, + "id": 10026, "properties": { "facing": "south", "half": "bottom", @@ -150330,7 +165567,7 @@ } }, { - "id": 8383, + "id": 10027, "properties": { "facing": "south", "half": "bottom", @@ -150339,7 +165576,7 @@ } }, { - "id": 8384, + "id": 10028, "properties": { "facing": "south", "half": "bottom", @@ -150348,7 +165585,7 @@ } }, { - "id": 8385, + "id": 10029, "properties": { "facing": "west", "half": "top", @@ -150357,7 +165594,7 @@ } }, { - "id": 8386, + "id": 10030, "properties": { "facing": "west", "half": "top", @@ -150366,7 +165603,7 @@ } }, { - "id": 8387, + "id": 10031, "properties": { "facing": "west", "half": "top", @@ -150375,7 +165612,7 @@ } }, { - "id": 8388, + "id": 10032, "properties": { "facing": "west", "half": "top", @@ -150384,7 +165621,7 @@ } }, { - "id": 8389, + "id": 10033, "properties": { "facing": "west", "half": "top", @@ -150393,7 +165630,7 @@ } }, { - "id": 8390, + "id": 10034, "properties": { "facing": "west", "half": "top", @@ -150402,7 +165639,7 @@ } }, { - "id": 8391, + "id": 10035, "properties": { "facing": "west", "half": "top", @@ -150411,7 +165648,7 @@ } }, { - "id": 8392, + "id": 10036, "properties": { "facing": "west", "half": "top", @@ -150420,7 +165657,7 @@ } }, { - "id": 8393, + "id": 10037, "properties": { "facing": "west", "half": "top", @@ -150429,7 +165666,7 @@ } }, { - "id": 8394, + "id": 10038, "properties": { "facing": "west", "half": "top", @@ -150438,7 +165675,7 @@ } }, { - "id": 8395, + "id": 10039, "properties": { "facing": "west", "half": "bottom", @@ -150447,7 +165684,7 @@ } }, { - "id": 8396, + "id": 10040, "properties": { "facing": "west", "half": "bottom", @@ -150456,7 +165693,7 @@ } }, { - "id": 8397, + "id": 10041, "properties": { "facing": "west", "half": "bottom", @@ -150465,7 +165702,7 @@ } }, { - "id": 8398, + "id": 10042, "properties": { "facing": "west", "half": "bottom", @@ -150474,7 +165711,7 @@ } }, { - "id": 8399, + "id": 10043, "properties": { "facing": "west", "half": "bottom", @@ -150483,7 +165720,7 @@ } }, { - "id": 8400, + "id": 10044, "properties": { "facing": "west", "half": "bottom", @@ -150492,7 +165729,7 @@ } }, { - "id": 8401, + "id": 10045, "properties": { "facing": "west", "half": "bottom", @@ -150501,7 +165738,7 @@ } }, { - "id": 8402, + "id": 10046, "properties": { "facing": "west", "half": "bottom", @@ -150510,7 +165747,7 @@ } }, { - "id": 8403, + "id": 10047, "properties": { "facing": "west", "half": "bottom", @@ -150519,7 +165756,7 @@ } }, { - "id": 8404, + "id": 10048, "properties": { "facing": "west", "half": "bottom", @@ -150528,7 +165765,7 @@ } }, { - "id": 8405, + "id": 10049, "properties": { "facing": "east", "half": "top", @@ -150537,7 +165774,7 @@ } }, { - "id": 8406, + "id": 10050, "properties": { "facing": "east", "half": "top", @@ -150546,7 +165783,7 @@ } }, { - "id": 8407, + "id": 10051, "properties": { "facing": "east", "half": "top", @@ -150555,7 +165792,7 @@ } }, { - "id": 8408, + "id": 10052, "properties": { "facing": "east", "half": "top", @@ -150564,7 +165801,7 @@ } }, { - "id": 8409, + "id": 10053, "properties": { "facing": "east", "half": "top", @@ -150573,7 +165810,7 @@ } }, { - "id": 8410, + "id": 10054, "properties": { "facing": "east", "half": "top", @@ -150582,7 +165819,7 @@ } }, { - "id": 8411, + "id": 10055, "properties": { "facing": "east", "half": "top", @@ -150591,7 +165828,7 @@ } }, { - "id": 8412, + "id": 10056, "properties": { "facing": "east", "half": "top", @@ -150600,7 +165837,7 @@ } }, { - "id": 8413, + "id": 10057, "properties": { "facing": "east", "half": "top", @@ -150609,7 +165846,7 @@ } }, { - "id": 8414, + "id": 10058, "properties": { "facing": "east", "half": "top", @@ -150618,7 +165855,7 @@ } }, { - "id": 8415, + "id": 10059, "properties": { "facing": "east", "half": "bottom", @@ -150627,7 +165864,7 @@ } }, { - "id": 8416, + "id": 10060, "properties": { "facing": "east", "half": "bottom", @@ -150636,7 +165873,7 @@ } }, { - "id": 8417, + "id": 10061, "properties": { "facing": "east", "half": "bottom", @@ -150645,7 +165882,7 @@ } }, { - "id": 8418, + "id": 10062, "properties": { "facing": "east", "half": "bottom", @@ -150654,7 +165891,7 @@ } }, { - "id": 8419, + "id": 10063, "properties": { "facing": "east", "half": "bottom", @@ -150663,7 +165900,7 @@ } }, { - "id": 8420, + "id": 10064, "properties": { "facing": "east", "half": "bottom", @@ -150672,7 +165909,7 @@ } }, { - "id": 8421, + "id": 10065, "properties": { "facing": "east", "half": "bottom", @@ -150681,7 +165918,7 @@ } }, { - "id": 8422, + "id": 10066, "properties": { "facing": "east", "half": "bottom", @@ -150690,7 +165927,7 @@ } }, { - "id": 8423, + "id": 10067, "properties": { "facing": "east", "half": "bottom", @@ -150699,7 +165936,7 @@ } }, { - "id": 8424, + "id": 10068, "properties": { "facing": "east", "half": "bottom", @@ -150742,7 +165979,7 @@ }, "states": [ { - "id": 12072, + "id": 13856, "properties": { "east": "none", "north": "none", @@ -150753,7 +165990,7 @@ } }, { - "id": 12073, + "id": 13857, "properties": { "east": "none", "north": "none", @@ -150764,7 +166001,7 @@ } }, { - "id": 12074, + "id": 13858, "properties": { "east": "none", "north": "none", @@ -150776,7 +166013,7 @@ }, { "default": true, - "id": 12075, + "id": 13859, "properties": { "east": "none", "north": "none", @@ -150787,7 +166024,7 @@ } }, { - "id": 12076, + "id": 13860, "properties": { "east": "none", "north": "none", @@ -150798,7 +166035,7 @@ } }, { - "id": 12077, + "id": 13861, "properties": { "east": "none", "north": "none", @@ -150809,7 +166046,7 @@ } }, { - "id": 12078, + "id": 13862, "properties": { "east": "none", "north": "none", @@ -150820,7 +166057,7 @@ } }, { - "id": 12079, + "id": 13863, "properties": { "east": "none", "north": "none", @@ -150831,7 +166068,7 @@ } }, { - "id": 12080, + "id": 13864, "properties": { "east": "none", "north": "none", @@ -150842,7 +166079,7 @@ } }, { - "id": 12081, + "id": 13865, "properties": { "east": "none", "north": "none", @@ -150853,7 +166090,7 @@ } }, { - "id": 12082, + "id": 13866, "properties": { "east": "none", "north": "none", @@ -150864,7 +166101,7 @@ } }, { - "id": 12083, + "id": 13867, "properties": { "east": "none", "north": "none", @@ -150875,7 +166112,7 @@ } }, { - "id": 12084, + "id": 13868, "properties": { "east": "none", "north": "none", @@ -150886,7 +166123,7 @@ } }, { - "id": 12085, + "id": 13869, "properties": { "east": "none", "north": "none", @@ -150897,7 +166134,7 @@ } }, { - "id": 12086, + "id": 13870, "properties": { "east": "none", "north": "none", @@ -150908,7 +166145,7 @@ } }, { - "id": 12087, + "id": 13871, "properties": { "east": "none", "north": "none", @@ -150919,7 +166156,7 @@ } }, { - "id": 12088, + "id": 13872, "properties": { "east": "none", "north": "none", @@ -150930,7 +166167,7 @@ } }, { - "id": 12089, + "id": 13873, "properties": { "east": "none", "north": "none", @@ -150941,7 +166178,7 @@ } }, { - "id": 12090, + "id": 13874, "properties": { "east": "none", "north": "none", @@ -150952,7 +166189,7 @@ } }, { - "id": 12091, + "id": 13875, "properties": { "east": "none", "north": "none", @@ -150963,7 +166200,7 @@ } }, { - "id": 12092, + "id": 13876, "properties": { "east": "none", "north": "none", @@ -150974,7 +166211,7 @@ } }, { - "id": 12093, + "id": 13877, "properties": { "east": "none", "north": "none", @@ -150985,7 +166222,7 @@ } }, { - "id": 12094, + "id": 13878, "properties": { "east": "none", "north": "none", @@ -150996,7 +166233,7 @@ } }, { - "id": 12095, + "id": 13879, "properties": { "east": "none", "north": "none", @@ -151007,7 +166244,7 @@ } }, { - "id": 12096, + "id": 13880, "properties": { "east": "none", "north": "none", @@ -151018,7 +166255,7 @@ } }, { - "id": 12097, + "id": 13881, "properties": { "east": "none", "north": "none", @@ -151029,7 +166266,7 @@ } }, { - "id": 12098, + "id": 13882, "properties": { "east": "none", "north": "none", @@ -151040,7 +166277,7 @@ } }, { - "id": 12099, + "id": 13883, "properties": { "east": "none", "north": "none", @@ -151051,7 +166288,7 @@ } }, { - "id": 12100, + "id": 13884, "properties": { "east": "none", "north": "none", @@ -151062,7 +166299,7 @@ } }, { - "id": 12101, + "id": 13885, "properties": { "east": "none", "north": "none", @@ -151073,7 +166310,7 @@ } }, { - "id": 12102, + "id": 13886, "properties": { "east": "none", "north": "none", @@ -151084,7 +166321,7 @@ } }, { - "id": 12103, + "id": 13887, "properties": { "east": "none", "north": "none", @@ -151095,7 +166332,7 @@ } }, { - "id": 12104, + "id": 13888, "properties": { "east": "none", "north": "none", @@ -151106,7 +166343,7 @@ } }, { - "id": 12105, + "id": 13889, "properties": { "east": "none", "north": "none", @@ -151117,7 +166354,7 @@ } }, { - "id": 12106, + "id": 13890, "properties": { "east": "none", "north": "none", @@ -151128,7 +166365,7 @@ } }, { - "id": 12107, + "id": 13891, "properties": { "east": "none", "north": "none", @@ -151139,7 +166376,7 @@ } }, { - "id": 12108, + "id": 13892, "properties": { "east": "none", "north": "low", @@ -151150,7 +166387,7 @@ } }, { - "id": 12109, + "id": 13893, "properties": { "east": "none", "north": "low", @@ -151161,7 +166398,7 @@ } }, { - "id": 12110, + "id": 13894, "properties": { "east": "none", "north": "low", @@ -151172,7 +166409,7 @@ } }, { - "id": 12111, + "id": 13895, "properties": { "east": "none", "north": "low", @@ -151183,7 +166420,7 @@ } }, { - "id": 12112, + "id": 13896, "properties": { "east": "none", "north": "low", @@ -151194,7 +166431,7 @@ } }, { - "id": 12113, + "id": 13897, "properties": { "east": "none", "north": "low", @@ -151205,7 +166442,7 @@ } }, { - "id": 12114, + "id": 13898, "properties": { "east": "none", "north": "low", @@ -151216,7 +166453,7 @@ } }, { - "id": 12115, + "id": 13899, "properties": { "east": "none", "north": "low", @@ -151227,7 +166464,7 @@ } }, { - "id": 12116, + "id": 13900, "properties": { "east": "none", "north": "low", @@ -151238,7 +166475,7 @@ } }, { - "id": 12117, + "id": 13901, "properties": { "east": "none", "north": "low", @@ -151249,7 +166486,7 @@ } }, { - "id": 12118, + "id": 13902, "properties": { "east": "none", "north": "low", @@ -151260,7 +166497,7 @@ } }, { - "id": 12119, + "id": 13903, "properties": { "east": "none", "north": "low", @@ -151271,7 +166508,7 @@ } }, { - "id": 12120, + "id": 13904, "properties": { "east": "none", "north": "low", @@ -151282,7 +166519,7 @@ } }, { - "id": 12121, + "id": 13905, "properties": { "east": "none", "north": "low", @@ -151293,7 +166530,7 @@ } }, { - "id": 12122, + "id": 13906, "properties": { "east": "none", "north": "low", @@ -151304,7 +166541,7 @@ } }, { - "id": 12123, + "id": 13907, "properties": { "east": "none", "north": "low", @@ -151315,7 +166552,7 @@ } }, { - "id": 12124, + "id": 13908, "properties": { "east": "none", "north": "low", @@ -151326,7 +166563,7 @@ } }, { - "id": 12125, + "id": 13909, "properties": { "east": "none", "north": "low", @@ -151337,7 +166574,7 @@ } }, { - "id": 12126, + "id": 13910, "properties": { "east": "none", "north": "low", @@ -151348,7 +166585,7 @@ } }, { - "id": 12127, + "id": 13911, "properties": { "east": "none", "north": "low", @@ -151359,7 +166596,7 @@ } }, { - "id": 12128, + "id": 13912, "properties": { "east": "none", "north": "low", @@ -151370,7 +166607,7 @@ } }, { - "id": 12129, + "id": 13913, "properties": { "east": "none", "north": "low", @@ -151381,7 +166618,7 @@ } }, { - "id": 12130, + "id": 13914, "properties": { "east": "none", "north": "low", @@ -151392,7 +166629,7 @@ } }, { - "id": 12131, + "id": 13915, "properties": { "east": "none", "north": "low", @@ -151403,7 +166640,7 @@ } }, { - "id": 12132, + "id": 13916, "properties": { "east": "none", "north": "low", @@ -151414,7 +166651,7 @@ } }, { - "id": 12133, + "id": 13917, "properties": { "east": "none", "north": "low", @@ -151425,7 +166662,7 @@ } }, { - "id": 12134, + "id": 13918, "properties": { "east": "none", "north": "low", @@ -151436,7 +166673,7 @@ } }, { - "id": 12135, + "id": 13919, "properties": { "east": "none", "north": "low", @@ -151447,7 +166684,7 @@ } }, { - "id": 12136, + "id": 13920, "properties": { "east": "none", "north": "low", @@ -151458,7 +166695,7 @@ } }, { - "id": 12137, + "id": 13921, "properties": { "east": "none", "north": "low", @@ -151469,7 +166706,7 @@ } }, { - "id": 12138, + "id": 13922, "properties": { "east": "none", "north": "low", @@ -151480,7 +166717,7 @@ } }, { - "id": 12139, + "id": 13923, "properties": { "east": "none", "north": "low", @@ -151491,7 +166728,7 @@ } }, { - "id": 12140, + "id": 13924, "properties": { "east": "none", "north": "low", @@ -151502,7 +166739,7 @@ } }, { - "id": 12141, + "id": 13925, "properties": { "east": "none", "north": "low", @@ -151513,7 +166750,7 @@ } }, { - "id": 12142, + "id": 13926, "properties": { "east": "none", "north": "low", @@ -151524,7 +166761,7 @@ } }, { - "id": 12143, + "id": 13927, "properties": { "east": "none", "north": "low", @@ -151535,7 +166772,7 @@ } }, { - "id": 12144, + "id": 13928, "properties": { "east": "none", "north": "tall", @@ -151546,7 +166783,7 @@ } }, { - "id": 12145, + "id": 13929, "properties": { "east": "none", "north": "tall", @@ -151557,7 +166794,7 @@ } }, { - "id": 12146, + "id": 13930, "properties": { "east": "none", "north": "tall", @@ -151568,7 +166805,7 @@ } }, { - "id": 12147, + "id": 13931, "properties": { "east": "none", "north": "tall", @@ -151579,7 +166816,7 @@ } }, { - "id": 12148, + "id": 13932, "properties": { "east": "none", "north": "tall", @@ -151590,7 +166827,7 @@ } }, { - "id": 12149, + "id": 13933, "properties": { "east": "none", "north": "tall", @@ -151601,7 +166838,7 @@ } }, { - "id": 12150, + "id": 13934, "properties": { "east": "none", "north": "tall", @@ -151612,7 +166849,7 @@ } }, { - "id": 12151, + "id": 13935, "properties": { "east": "none", "north": "tall", @@ -151623,7 +166860,7 @@ } }, { - "id": 12152, + "id": 13936, "properties": { "east": "none", "north": "tall", @@ -151634,7 +166871,7 @@ } }, { - "id": 12153, + "id": 13937, "properties": { "east": "none", "north": "tall", @@ -151645,7 +166882,7 @@ } }, { - "id": 12154, + "id": 13938, "properties": { "east": "none", "north": "tall", @@ -151656,7 +166893,7 @@ } }, { - "id": 12155, + "id": 13939, "properties": { "east": "none", "north": "tall", @@ -151667,7 +166904,7 @@ } }, { - "id": 12156, + "id": 13940, "properties": { "east": "none", "north": "tall", @@ -151678,7 +166915,7 @@ } }, { - "id": 12157, + "id": 13941, "properties": { "east": "none", "north": "tall", @@ -151689,7 +166926,7 @@ } }, { - "id": 12158, + "id": 13942, "properties": { "east": "none", "north": "tall", @@ -151700,7 +166937,7 @@ } }, { - "id": 12159, + "id": 13943, "properties": { "east": "none", "north": "tall", @@ -151711,7 +166948,7 @@ } }, { - "id": 12160, + "id": 13944, "properties": { "east": "none", "north": "tall", @@ -151722,7 +166959,7 @@ } }, { - "id": 12161, + "id": 13945, "properties": { "east": "none", "north": "tall", @@ -151733,7 +166970,7 @@ } }, { - "id": 12162, + "id": 13946, "properties": { "east": "none", "north": "tall", @@ -151744,7 +166981,7 @@ } }, { - "id": 12163, + "id": 13947, "properties": { "east": "none", "north": "tall", @@ -151755,7 +166992,7 @@ } }, { - "id": 12164, + "id": 13948, "properties": { "east": "none", "north": "tall", @@ -151766,7 +167003,7 @@ } }, { - "id": 12165, + "id": 13949, "properties": { "east": "none", "north": "tall", @@ -151777,7 +167014,7 @@ } }, { - "id": 12166, + "id": 13950, "properties": { "east": "none", "north": "tall", @@ -151788,7 +167025,7 @@ } }, { - "id": 12167, + "id": 13951, "properties": { "east": "none", "north": "tall", @@ -151799,7 +167036,7 @@ } }, { - "id": 12168, + "id": 13952, "properties": { "east": "none", "north": "tall", @@ -151810,7 +167047,7 @@ } }, { - "id": 12169, + "id": 13953, "properties": { "east": "none", "north": "tall", @@ -151821,7 +167058,7 @@ } }, { - "id": 12170, + "id": 13954, "properties": { "east": "none", "north": "tall", @@ -151832,7 +167069,7 @@ } }, { - "id": 12171, + "id": 13955, "properties": { "east": "none", "north": "tall", @@ -151843,7 +167080,7 @@ } }, { - "id": 12172, + "id": 13956, "properties": { "east": "none", "north": "tall", @@ -151854,7 +167091,7 @@ } }, { - "id": 12173, + "id": 13957, "properties": { "east": "none", "north": "tall", @@ -151865,7 +167102,7 @@ } }, { - "id": 12174, + "id": 13958, "properties": { "east": "none", "north": "tall", @@ -151876,7 +167113,7 @@ } }, { - "id": 12175, + "id": 13959, "properties": { "east": "none", "north": "tall", @@ -151887,7 +167124,7 @@ } }, { - "id": 12176, + "id": 13960, "properties": { "east": "none", "north": "tall", @@ -151898,7 +167135,7 @@ } }, { - "id": 12177, + "id": 13961, "properties": { "east": "none", "north": "tall", @@ -151909,7 +167146,7 @@ } }, { - "id": 12178, + "id": 13962, "properties": { "east": "none", "north": "tall", @@ -151920,7 +167157,7 @@ } }, { - "id": 12179, + "id": 13963, "properties": { "east": "none", "north": "tall", @@ -151931,7 +167168,7 @@ } }, { - "id": 12180, + "id": 13964, "properties": { "east": "low", "north": "none", @@ -151942,7 +167179,7 @@ } }, { - "id": 12181, + "id": 13965, "properties": { "east": "low", "north": "none", @@ -151953,7 +167190,7 @@ } }, { - "id": 12182, + "id": 13966, "properties": { "east": "low", "north": "none", @@ -151964,7 +167201,7 @@ } }, { - "id": 12183, + "id": 13967, "properties": { "east": "low", "north": "none", @@ -151975,7 +167212,7 @@ } }, { - "id": 12184, + "id": 13968, "properties": { "east": "low", "north": "none", @@ -151986,7 +167223,7 @@ } }, { - "id": 12185, + "id": 13969, "properties": { "east": "low", "north": "none", @@ -151997,7 +167234,7 @@ } }, { - "id": 12186, + "id": 13970, "properties": { "east": "low", "north": "none", @@ -152008,7 +167245,7 @@ } }, { - "id": 12187, + "id": 13971, "properties": { "east": "low", "north": "none", @@ -152019,7 +167256,7 @@ } }, { - "id": 12188, + "id": 13972, "properties": { "east": "low", "north": "none", @@ -152030,7 +167267,7 @@ } }, { - "id": 12189, + "id": 13973, "properties": { "east": "low", "north": "none", @@ -152041,7 +167278,7 @@ } }, { - "id": 12190, + "id": 13974, "properties": { "east": "low", "north": "none", @@ -152052,7 +167289,7 @@ } }, { - "id": 12191, + "id": 13975, "properties": { "east": "low", "north": "none", @@ -152063,7 +167300,7 @@ } }, { - "id": 12192, + "id": 13976, "properties": { "east": "low", "north": "none", @@ -152074,7 +167311,7 @@ } }, { - "id": 12193, + "id": 13977, "properties": { "east": "low", "north": "none", @@ -152085,7 +167322,7 @@ } }, { - "id": 12194, + "id": 13978, "properties": { "east": "low", "north": "none", @@ -152096,7 +167333,7 @@ } }, { - "id": 12195, + "id": 13979, "properties": { "east": "low", "north": "none", @@ -152107,7 +167344,7 @@ } }, { - "id": 12196, + "id": 13980, "properties": { "east": "low", "north": "none", @@ -152118,7 +167355,7 @@ } }, { - "id": 12197, + "id": 13981, "properties": { "east": "low", "north": "none", @@ -152129,7 +167366,7 @@ } }, { - "id": 12198, + "id": 13982, "properties": { "east": "low", "north": "none", @@ -152140,7 +167377,7 @@ } }, { - "id": 12199, + "id": 13983, "properties": { "east": "low", "north": "none", @@ -152151,7 +167388,7 @@ } }, { - "id": 12200, + "id": 13984, "properties": { "east": "low", "north": "none", @@ -152162,7 +167399,7 @@ } }, { - "id": 12201, + "id": 13985, "properties": { "east": "low", "north": "none", @@ -152173,7 +167410,7 @@ } }, { - "id": 12202, + "id": 13986, "properties": { "east": "low", "north": "none", @@ -152184,7 +167421,7 @@ } }, { - "id": 12203, + "id": 13987, "properties": { "east": "low", "north": "none", @@ -152195,7 +167432,7 @@ } }, { - "id": 12204, + "id": 13988, "properties": { "east": "low", "north": "none", @@ -152206,7 +167443,7 @@ } }, { - "id": 12205, + "id": 13989, "properties": { "east": "low", "north": "none", @@ -152217,7 +167454,7 @@ } }, { - "id": 12206, + "id": 13990, "properties": { "east": "low", "north": "none", @@ -152228,7 +167465,7 @@ } }, { - "id": 12207, + "id": 13991, "properties": { "east": "low", "north": "none", @@ -152239,7 +167476,7 @@ } }, { - "id": 12208, + "id": 13992, "properties": { "east": "low", "north": "none", @@ -152250,7 +167487,7 @@ } }, { - "id": 12209, + "id": 13993, "properties": { "east": "low", "north": "none", @@ -152261,7 +167498,7 @@ } }, { - "id": 12210, + "id": 13994, "properties": { "east": "low", "north": "none", @@ -152272,7 +167509,7 @@ } }, { - "id": 12211, + "id": 13995, "properties": { "east": "low", "north": "none", @@ -152283,7 +167520,7 @@ } }, { - "id": 12212, + "id": 13996, "properties": { "east": "low", "north": "none", @@ -152294,7 +167531,7 @@ } }, { - "id": 12213, + "id": 13997, "properties": { "east": "low", "north": "none", @@ -152305,7 +167542,7 @@ } }, { - "id": 12214, + "id": 13998, "properties": { "east": "low", "north": "none", @@ -152316,7 +167553,7 @@ } }, { - "id": 12215, + "id": 13999, "properties": { "east": "low", "north": "none", @@ -152327,7 +167564,7 @@ } }, { - "id": 12216, + "id": 14000, "properties": { "east": "low", "north": "low", @@ -152338,7 +167575,7 @@ } }, { - "id": 12217, + "id": 14001, "properties": { "east": "low", "north": "low", @@ -152349,7 +167586,7 @@ } }, { - "id": 12218, + "id": 14002, "properties": { "east": "low", "north": "low", @@ -152360,7 +167597,7 @@ } }, { - "id": 12219, + "id": 14003, "properties": { "east": "low", "north": "low", @@ -152371,7 +167608,7 @@ } }, { - "id": 12220, + "id": 14004, "properties": { "east": "low", "north": "low", @@ -152382,7 +167619,7 @@ } }, { - "id": 12221, + "id": 14005, "properties": { "east": "low", "north": "low", @@ -152393,7 +167630,7 @@ } }, { - "id": 12222, + "id": 14006, "properties": { "east": "low", "north": "low", @@ -152404,7 +167641,7 @@ } }, { - "id": 12223, + "id": 14007, "properties": { "east": "low", "north": "low", @@ -152415,7 +167652,7 @@ } }, { - "id": 12224, + "id": 14008, "properties": { "east": "low", "north": "low", @@ -152426,7 +167663,7 @@ } }, { - "id": 12225, + "id": 14009, "properties": { "east": "low", "north": "low", @@ -152437,7 +167674,7 @@ } }, { - "id": 12226, + "id": 14010, "properties": { "east": "low", "north": "low", @@ -152448,7 +167685,7 @@ } }, { - "id": 12227, + "id": 14011, "properties": { "east": "low", "north": "low", @@ -152459,7 +167696,7 @@ } }, { - "id": 12228, + "id": 14012, "properties": { "east": "low", "north": "low", @@ -152470,7 +167707,7 @@ } }, { - "id": 12229, + "id": 14013, "properties": { "east": "low", "north": "low", @@ -152481,7 +167718,7 @@ } }, { - "id": 12230, + "id": 14014, "properties": { "east": "low", "north": "low", @@ -152492,7 +167729,7 @@ } }, { - "id": 12231, + "id": 14015, "properties": { "east": "low", "north": "low", @@ -152503,7 +167740,7 @@ } }, { - "id": 12232, + "id": 14016, "properties": { "east": "low", "north": "low", @@ -152514,7 +167751,7 @@ } }, { - "id": 12233, + "id": 14017, "properties": { "east": "low", "north": "low", @@ -152525,7 +167762,7 @@ } }, { - "id": 12234, + "id": 14018, "properties": { "east": "low", "north": "low", @@ -152536,7 +167773,7 @@ } }, { - "id": 12235, + "id": 14019, "properties": { "east": "low", "north": "low", @@ -152547,7 +167784,7 @@ } }, { - "id": 12236, + "id": 14020, "properties": { "east": "low", "north": "low", @@ -152558,7 +167795,7 @@ } }, { - "id": 12237, + "id": 14021, "properties": { "east": "low", "north": "low", @@ -152569,7 +167806,7 @@ } }, { - "id": 12238, + "id": 14022, "properties": { "east": "low", "north": "low", @@ -152580,7 +167817,7 @@ } }, { - "id": 12239, + "id": 14023, "properties": { "east": "low", "north": "low", @@ -152591,7 +167828,7 @@ } }, { - "id": 12240, + "id": 14024, "properties": { "east": "low", "north": "low", @@ -152602,7 +167839,7 @@ } }, { - "id": 12241, + "id": 14025, "properties": { "east": "low", "north": "low", @@ -152613,7 +167850,7 @@ } }, { - "id": 12242, + "id": 14026, "properties": { "east": "low", "north": "low", @@ -152624,7 +167861,7 @@ } }, { - "id": 12243, + "id": 14027, "properties": { "east": "low", "north": "low", @@ -152635,7 +167872,7 @@ } }, { - "id": 12244, + "id": 14028, "properties": { "east": "low", "north": "low", @@ -152646,7 +167883,7 @@ } }, { - "id": 12245, + "id": 14029, "properties": { "east": "low", "north": "low", @@ -152657,7 +167894,7 @@ } }, { - "id": 12246, + "id": 14030, "properties": { "east": "low", "north": "low", @@ -152668,7 +167905,7 @@ } }, { - "id": 12247, + "id": 14031, "properties": { "east": "low", "north": "low", @@ -152679,7 +167916,7 @@ } }, { - "id": 12248, + "id": 14032, "properties": { "east": "low", "north": "low", @@ -152690,7 +167927,7 @@ } }, { - "id": 12249, + "id": 14033, "properties": { "east": "low", "north": "low", @@ -152701,7 +167938,7 @@ } }, { - "id": 12250, + "id": 14034, "properties": { "east": "low", "north": "low", @@ -152712,7 +167949,7 @@ } }, { - "id": 12251, + "id": 14035, "properties": { "east": "low", "north": "low", @@ -152723,7 +167960,7 @@ } }, { - "id": 12252, + "id": 14036, "properties": { "east": "low", "north": "tall", @@ -152734,7 +167971,7 @@ } }, { - "id": 12253, + "id": 14037, "properties": { "east": "low", "north": "tall", @@ -152745,7 +167982,7 @@ } }, { - "id": 12254, + "id": 14038, "properties": { "east": "low", "north": "tall", @@ -152756,7 +167993,7 @@ } }, { - "id": 12255, + "id": 14039, "properties": { "east": "low", "north": "tall", @@ -152767,7 +168004,7 @@ } }, { - "id": 12256, + "id": 14040, "properties": { "east": "low", "north": "tall", @@ -152778,7 +168015,7 @@ } }, { - "id": 12257, + "id": 14041, "properties": { "east": "low", "north": "tall", @@ -152789,7 +168026,7 @@ } }, { - "id": 12258, + "id": 14042, "properties": { "east": "low", "north": "tall", @@ -152800,7 +168037,7 @@ } }, { - "id": 12259, + "id": 14043, "properties": { "east": "low", "north": "tall", @@ -152811,7 +168048,7 @@ } }, { - "id": 12260, + "id": 14044, "properties": { "east": "low", "north": "tall", @@ -152822,7 +168059,7 @@ } }, { - "id": 12261, + "id": 14045, "properties": { "east": "low", "north": "tall", @@ -152833,7 +168070,7 @@ } }, { - "id": 12262, + "id": 14046, "properties": { "east": "low", "north": "tall", @@ -152844,7 +168081,7 @@ } }, { - "id": 12263, + "id": 14047, "properties": { "east": "low", "north": "tall", @@ -152855,7 +168092,7 @@ } }, { - "id": 12264, + "id": 14048, "properties": { "east": "low", "north": "tall", @@ -152866,7 +168103,7 @@ } }, { - "id": 12265, + "id": 14049, "properties": { "east": "low", "north": "tall", @@ -152877,7 +168114,7 @@ } }, { - "id": 12266, + "id": 14050, "properties": { "east": "low", "north": "tall", @@ -152888,7 +168125,7 @@ } }, { - "id": 12267, + "id": 14051, "properties": { "east": "low", "north": "tall", @@ -152899,7 +168136,7 @@ } }, { - "id": 12268, + "id": 14052, "properties": { "east": "low", "north": "tall", @@ -152910,7 +168147,7 @@ } }, { - "id": 12269, + "id": 14053, "properties": { "east": "low", "north": "tall", @@ -152921,7 +168158,7 @@ } }, { - "id": 12270, + "id": 14054, "properties": { "east": "low", "north": "tall", @@ -152932,7 +168169,7 @@ } }, { - "id": 12271, + "id": 14055, "properties": { "east": "low", "north": "tall", @@ -152943,7 +168180,7 @@ } }, { - "id": 12272, + "id": 14056, "properties": { "east": "low", "north": "tall", @@ -152954,7 +168191,7 @@ } }, { - "id": 12273, + "id": 14057, "properties": { "east": "low", "north": "tall", @@ -152965,7 +168202,7 @@ } }, { - "id": 12274, + "id": 14058, "properties": { "east": "low", "north": "tall", @@ -152976,7 +168213,7 @@ } }, { - "id": 12275, + "id": 14059, "properties": { "east": "low", "north": "tall", @@ -152987,7 +168224,7 @@ } }, { - "id": 12276, + "id": 14060, "properties": { "east": "low", "north": "tall", @@ -152998,7 +168235,7 @@ } }, { - "id": 12277, + "id": 14061, "properties": { "east": "low", "north": "tall", @@ -153009,7 +168246,7 @@ } }, { - "id": 12278, + "id": 14062, "properties": { "east": "low", "north": "tall", @@ -153020,7 +168257,7 @@ } }, { - "id": 12279, + "id": 14063, "properties": { "east": "low", "north": "tall", @@ -153031,7 +168268,7 @@ } }, { - "id": 12280, + "id": 14064, "properties": { "east": "low", "north": "tall", @@ -153042,7 +168279,7 @@ } }, { - "id": 12281, + "id": 14065, "properties": { "east": "low", "north": "tall", @@ -153053,7 +168290,7 @@ } }, { - "id": 12282, + "id": 14066, "properties": { "east": "low", "north": "tall", @@ -153064,7 +168301,7 @@ } }, { - "id": 12283, + "id": 14067, "properties": { "east": "low", "north": "tall", @@ -153075,7 +168312,7 @@ } }, { - "id": 12284, + "id": 14068, "properties": { "east": "low", "north": "tall", @@ -153086,7 +168323,7 @@ } }, { - "id": 12285, + "id": 14069, "properties": { "east": "low", "north": "tall", @@ -153097,7 +168334,7 @@ } }, { - "id": 12286, + "id": 14070, "properties": { "east": "low", "north": "tall", @@ -153108,7 +168345,7 @@ } }, { - "id": 12287, + "id": 14071, "properties": { "east": "low", "north": "tall", @@ -153119,7 +168356,7 @@ } }, { - "id": 12288, + "id": 14072, "properties": { "east": "tall", "north": "none", @@ -153130,7 +168367,7 @@ } }, { - "id": 12289, + "id": 14073, "properties": { "east": "tall", "north": "none", @@ -153141,7 +168378,7 @@ } }, { - "id": 12290, + "id": 14074, "properties": { "east": "tall", "north": "none", @@ -153152,7 +168389,7 @@ } }, { - "id": 12291, + "id": 14075, "properties": { "east": "tall", "north": "none", @@ -153163,7 +168400,7 @@ } }, { - "id": 12292, + "id": 14076, "properties": { "east": "tall", "north": "none", @@ -153174,7 +168411,7 @@ } }, { - "id": 12293, + "id": 14077, "properties": { "east": "tall", "north": "none", @@ -153185,7 +168422,7 @@ } }, { - "id": 12294, + "id": 14078, "properties": { "east": "tall", "north": "none", @@ -153196,7 +168433,7 @@ } }, { - "id": 12295, + "id": 14079, "properties": { "east": "tall", "north": "none", @@ -153207,7 +168444,7 @@ } }, { - "id": 12296, + "id": 14080, "properties": { "east": "tall", "north": "none", @@ -153218,7 +168455,7 @@ } }, { - "id": 12297, + "id": 14081, "properties": { "east": "tall", "north": "none", @@ -153229,7 +168466,7 @@ } }, { - "id": 12298, + "id": 14082, "properties": { "east": "tall", "north": "none", @@ -153240,7 +168477,7 @@ } }, { - "id": 12299, + "id": 14083, "properties": { "east": "tall", "north": "none", @@ -153251,7 +168488,7 @@ } }, { - "id": 12300, + "id": 14084, "properties": { "east": "tall", "north": "none", @@ -153262,7 +168499,7 @@ } }, { - "id": 12301, + "id": 14085, "properties": { "east": "tall", "north": "none", @@ -153273,7 +168510,7 @@ } }, { - "id": 12302, + "id": 14086, "properties": { "east": "tall", "north": "none", @@ -153284,7 +168521,7 @@ } }, { - "id": 12303, + "id": 14087, "properties": { "east": "tall", "north": "none", @@ -153295,7 +168532,7 @@ } }, { - "id": 12304, + "id": 14088, "properties": { "east": "tall", "north": "none", @@ -153306,7 +168543,7 @@ } }, { - "id": 12305, + "id": 14089, "properties": { "east": "tall", "north": "none", @@ -153317,7 +168554,7 @@ } }, { - "id": 12306, + "id": 14090, "properties": { "east": "tall", "north": "none", @@ -153328,7 +168565,7 @@ } }, { - "id": 12307, + "id": 14091, "properties": { "east": "tall", "north": "none", @@ -153339,7 +168576,7 @@ } }, { - "id": 12308, + "id": 14092, "properties": { "east": "tall", "north": "none", @@ -153350,7 +168587,7 @@ } }, { - "id": 12309, + "id": 14093, "properties": { "east": "tall", "north": "none", @@ -153361,7 +168598,7 @@ } }, { - "id": 12310, + "id": 14094, "properties": { "east": "tall", "north": "none", @@ -153372,7 +168609,7 @@ } }, { - "id": 12311, + "id": 14095, "properties": { "east": "tall", "north": "none", @@ -153383,7 +168620,7 @@ } }, { - "id": 12312, + "id": 14096, "properties": { "east": "tall", "north": "none", @@ -153394,7 +168631,7 @@ } }, { - "id": 12313, + "id": 14097, "properties": { "east": "tall", "north": "none", @@ -153405,7 +168642,7 @@ } }, { - "id": 12314, + "id": 14098, "properties": { "east": "tall", "north": "none", @@ -153416,7 +168653,7 @@ } }, { - "id": 12315, + "id": 14099, "properties": { "east": "tall", "north": "none", @@ -153427,7 +168664,7 @@ } }, { - "id": 12316, + "id": 14100, "properties": { "east": "tall", "north": "none", @@ -153438,7 +168675,7 @@ } }, { - "id": 12317, + "id": 14101, "properties": { "east": "tall", "north": "none", @@ -153449,7 +168686,7 @@ } }, { - "id": 12318, + "id": 14102, "properties": { "east": "tall", "north": "none", @@ -153460,7 +168697,7 @@ } }, { - "id": 12319, + "id": 14103, "properties": { "east": "tall", "north": "none", @@ -153471,7 +168708,7 @@ } }, { - "id": 12320, + "id": 14104, "properties": { "east": "tall", "north": "none", @@ -153482,7 +168719,7 @@ } }, { - "id": 12321, + "id": 14105, "properties": { "east": "tall", "north": "none", @@ -153493,7 +168730,7 @@ } }, { - "id": 12322, + "id": 14106, "properties": { "east": "tall", "north": "none", @@ -153504,7 +168741,7 @@ } }, { - "id": 12323, + "id": 14107, "properties": { "east": "tall", "north": "none", @@ -153515,7 +168752,7 @@ } }, { - "id": 12324, + "id": 14108, "properties": { "east": "tall", "north": "low", @@ -153526,7 +168763,7 @@ } }, { - "id": 12325, + "id": 14109, "properties": { "east": "tall", "north": "low", @@ -153537,7 +168774,7 @@ } }, { - "id": 12326, + "id": 14110, "properties": { "east": "tall", "north": "low", @@ -153548,7 +168785,7 @@ } }, { - "id": 12327, + "id": 14111, "properties": { "east": "tall", "north": "low", @@ -153559,7 +168796,7 @@ } }, { - "id": 12328, + "id": 14112, "properties": { "east": "tall", "north": "low", @@ -153570,7 +168807,7 @@ } }, { - "id": 12329, + "id": 14113, "properties": { "east": "tall", "north": "low", @@ -153581,7 +168818,7 @@ } }, { - "id": 12330, + "id": 14114, "properties": { "east": "tall", "north": "low", @@ -153592,7 +168829,7 @@ } }, { - "id": 12331, + "id": 14115, "properties": { "east": "tall", "north": "low", @@ -153603,7 +168840,7 @@ } }, { - "id": 12332, + "id": 14116, "properties": { "east": "tall", "north": "low", @@ -153614,7 +168851,7 @@ } }, { - "id": 12333, + "id": 14117, "properties": { "east": "tall", "north": "low", @@ -153625,7 +168862,7 @@ } }, { - "id": 12334, + "id": 14118, "properties": { "east": "tall", "north": "low", @@ -153636,7 +168873,7 @@ } }, { - "id": 12335, + "id": 14119, "properties": { "east": "tall", "north": "low", @@ -153647,7 +168884,7 @@ } }, { - "id": 12336, + "id": 14120, "properties": { "east": "tall", "north": "low", @@ -153658,7 +168895,7 @@ } }, { - "id": 12337, + "id": 14121, "properties": { "east": "tall", "north": "low", @@ -153669,7 +168906,7 @@ } }, { - "id": 12338, + "id": 14122, "properties": { "east": "tall", "north": "low", @@ -153680,7 +168917,7 @@ } }, { - "id": 12339, + "id": 14123, "properties": { "east": "tall", "north": "low", @@ -153691,7 +168928,7 @@ } }, { - "id": 12340, + "id": 14124, "properties": { "east": "tall", "north": "low", @@ -153702,7 +168939,7 @@ } }, { - "id": 12341, + "id": 14125, "properties": { "east": "tall", "north": "low", @@ -153713,7 +168950,7 @@ } }, { - "id": 12342, + "id": 14126, "properties": { "east": "tall", "north": "low", @@ -153724,7 +168961,7 @@ } }, { - "id": 12343, + "id": 14127, "properties": { "east": "tall", "north": "low", @@ -153735,7 +168972,7 @@ } }, { - "id": 12344, + "id": 14128, "properties": { "east": "tall", "north": "low", @@ -153746,7 +168983,7 @@ } }, { - "id": 12345, + "id": 14129, "properties": { "east": "tall", "north": "low", @@ -153757,7 +168994,7 @@ } }, { - "id": 12346, + "id": 14130, "properties": { "east": "tall", "north": "low", @@ -153768,7 +169005,7 @@ } }, { - "id": 12347, + "id": 14131, "properties": { "east": "tall", "north": "low", @@ -153779,7 +169016,7 @@ } }, { - "id": 12348, + "id": 14132, "properties": { "east": "tall", "north": "low", @@ -153790,7 +169027,7 @@ } }, { - "id": 12349, + "id": 14133, "properties": { "east": "tall", "north": "low", @@ -153801,7 +169038,7 @@ } }, { - "id": 12350, + "id": 14134, "properties": { "east": "tall", "north": "low", @@ -153812,7 +169049,7 @@ } }, { - "id": 12351, + "id": 14135, "properties": { "east": "tall", "north": "low", @@ -153823,7 +169060,7 @@ } }, { - "id": 12352, + "id": 14136, "properties": { "east": "tall", "north": "low", @@ -153834,7 +169071,7 @@ } }, { - "id": 12353, + "id": 14137, "properties": { "east": "tall", "north": "low", @@ -153845,7 +169082,7 @@ } }, { - "id": 12354, + "id": 14138, "properties": { "east": "tall", "north": "low", @@ -153856,7 +169093,7 @@ } }, { - "id": 12355, + "id": 14139, "properties": { "east": "tall", "north": "low", @@ -153867,7 +169104,7 @@ } }, { - "id": 12356, + "id": 14140, "properties": { "east": "tall", "north": "low", @@ -153878,7 +169115,7 @@ } }, { - "id": 12357, + "id": 14141, "properties": { "east": "tall", "north": "low", @@ -153889,7 +169126,7 @@ } }, { - "id": 12358, + "id": 14142, "properties": { "east": "tall", "north": "low", @@ -153900,7 +169137,7 @@ } }, { - "id": 12359, + "id": 14143, "properties": { "east": "tall", "north": "low", @@ -153911,7 +169148,7 @@ } }, { - "id": 12360, + "id": 14144, "properties": { "east": "tall", "north": "tall", @@ -153922,7 +169159,7 @@ } }, { - "id": 12361, + "id": 14145, "properties": { "east": "tall", "north": "tall", @@ -153933,7 +169170,7 @@ } }, { - "id": 12362, + "id": 14146, "properties": { "east": "tall", "north": "tall", @@ -153944,7 +169181,7 @@ } }, { - "id": 12363, + "id": 14147, "properties": { "east": "tall", "north": "tall", @@ -153955,7 +169192,7 @@ } }, { - "id": 12364, + "id": 14148, "properties": { "east": "tall", "north": "tall", @@ -153966,7 +169203,7 @@ } }, { - "id": 12365, + "id": 14149, "properties": { "east": "tall", "north": "tall", @@ -153977,7 +169214,7 @@ } }, { - "id": 12366, + "id": 14150, "properties": { "east": "tall", "north": "tall", @@ -153988,7 +169225,7 @@ } }, { - "id": 12367, + "id": 14151, "properties": { "east": "tall", "north": "tall", @@ -153999,7 +169236,7 @@ } }, { - "id": 12368, + "id": 14152, "properties": { "east": "tall", "north": "tall", @@ -154010,7 +169247,7 @@ } }, { - "id": 12369, + "id": 14153, "properties": { "east": "tall", "north": "tall", @@ -154021,7 +169258,7 @@ } }, { - "id": 12370, + "id": 14154, "properties": { "east": "tall", "north": "tall", @@ -154032,7 +169269,7 @@ } }, { - "id": 12371, + "id": 14155, "properties": { "east": "tall", "north": "tall", @@ -154043,7 +169280,7 @@ } }, { - "id": 12372, + "id": 14156, "properties": { "east": "tall", "north": "tall", @@ -154054,7 +169291,7 @@ } }, { - "id": 12373, + "id": 14157, "properties": { "east": "tall", "north": "tall", @@ -154065,7 +169302,7 @@ } }, { - "id": 12374, + "id": 14158, "properties": { "east": "tall", "north": "tall", @@ -154076,7 +169313,7 @@ } }, { - "id": 12375, + "id": 14159, "properties": { "east": "tall", "north": "tall", @@ -154087,7 +169324,7 @@ } }, { - "id": 12376, + "id": 14160, "properties": { "east": "tall", "north": "tall", @@ -154098,7 +169335,7 @@ } }, { - "id": 12377, + "id": 14161, "properties": { "east": "tall", "north": "tall", @@ -154109,7 +169346,7 @@ } }, { - "id": 12378, + "id": 14162, "properties": { "east": "tall", "north": "tall", @@ -154120,7 +169357,7 @@ } }, { - "id": 12379, + "id": 14163, "properties": { "east": "tall", "north": "tall", @@ -154131,7 +169368,7 @@ } }, { - "id": 12380, + "id": 14164, "properties": { "east": "tall", "north": "tall", @@ -154142,7 +169379,7 @@ } }, { - "id": 12381, + "id": 14165, "properties": { "east": "tall", "north": "tall", @@ -154153,7 +169390,7 @@ } }, { - "id": 12382, + "id": 14166, "properties": { "east": "tall", "north": "tall", @@ -154164,7 +169401,7 @@ } }, { - "id": 12383, + "id": 14167, "properties": { "east": "tall", "north": "tall", @@ -154175,7 +169412,7 @@ } }, { - "id": 12384, + "id": 14168, "properties": { "east": "tall", "north": "tall", @@ -154186,7 +169423,7 @@ } }, { - "id": 12385, + "id": 14169, "properties": { "east": "tall", "north": "tall", @@ -154197,7 +169434,7 @@ } }, { - "id": 12386, + "id": 14170, "properties": { "east": "tall", "north": "tall", @@ -154208,7 +169445,7 @@ } }, { - "id": 12387, + "id": 14171, "properties": { "east": "tall", "north": "tall", @@ -154219,7 +169456,7 @@ } }, { - "id": 12388, + "id": 14172, "properties": { "east": "tall", "north": "tall", @@ -154230,7 +169467,7 @@ } }, { - "id": 12389, + "id": 14173, "properties": { "east": "tall", "north": "tall", @@ -154241,7 +169478,7 @@ } }, { - "id": 12390, + "id": 14174, "properties": { "east": "tall", "north": "tall", @@ -154252,7 +169489,7 @@ } }, { - "id": 12391, + "id": 14175, "properties": { "east": "tall", "north": "tall", @@ -154263,7 +169500,7 @@ } }, { - "id": 12392, + "id": 14176, "properties": { "east": "tall", "north": "tall", @@ -154274,7 +169511,7 @@ } }, { - "id": 12393, + "id": 14177, "properties": { "east": "tall", "north": "tall", @@ -154285,7 +169522,7 @@ } }, { - "id": 12394, + "id": 14178, "properties": { "east": "tall", "north": "tall", @@ -154296,7 +169533,7 @@ } }, { - "id": 12395, + "id": 14179, "properties": { "east": "tall", "north": "tall", @@ -154312,7 +169549,7 @@ "states": [ { "default": true, - "id": 4307 + "id": 5683 } ] }, @@ -154332,49 +169569,49 @@ "states": [ { "default": true, - "id": 5151, + "id": 6591, "properties": { "age": "0" } }, { - "id": 5152, + "id": 6592, "properties": { "age": "1" } }, { - "id": 5153, + "id": 6593, "properties": { "age": "2" } }, { - "id": 5154, + "id": 6594, "properties": { "age": "3" } }, { - "id": 5155, + "id": 6595, "properties": { "age": "4" } }, { - "id": 5156, + "id": 6596, "properties": { "age": "5" } }, { - "id": 5157, + "id": 6597, "properties": { "age": "6" } }, { - "id": 5158, + "id": 6598, "properties": { "age": "7" } @@ -154405,97 +169642,97 @@ "states": [ { "default": true, - "id": 8798, + "id": 10442, "properties": { "rotation": "0" } }, { - "id": 8799, + "id": 10443, "properties": { "rotation": "1" } }, { - "id": 8800, + "id": 10444, "properties": { "rotation": "2" } }, { - "id": 8801, + "id": 10445, "properties": { "rotation": "3" } }, { - "id": 8802, + "id": 10446, "properties": { "rotation": "4" } }, { - "id": 8803, + "id": 10447, "properties": { "rotation": "5" } }, { - "id": 8804, + "id": 10448, "properties": { "rotation": "6" } }, { - "id": 8805, + "id": 10449, "properties": { "rotation": "7" } }, { - "id": 8806, + "id": 10450, "properties": { "rotation": "8" } }, { - "id": 8807, + "id": 10451, "properties": { "rotation": "9" } }, { - "id": 8808, + "id": 10452, "properties": { "rotation": "10" } }, { - "id": 8809, + "id": 10453, "properties": { "rotation": "11" } }, { - "id": 8810, + "id": 10454, "properties": { "rotation": "12" } }, { - "id": 8811, + "id": 10455, "properties": { "rotation": "13" } }, { - "id": 8812, + "id": 10456, "properties": { "rotation": "14" } }, { - "id": 8813, + "id": 10457, "properties": { "rotation": "15" } @@ -154521,7 +169758,7 @@ }, "states": [ { - "id": 1439, + "id": 1797, "properties": { "facing": "north", "occupied": "true", @@ -154529,7 +169766,7 @@ } }, { - "id": 1440, + "id": 1798, "properties": { "facing": "north", "occupied": "true", @@ -154537,7 +169774,7 @@ } }, { - "id": 1441, + "id": 1799, "properties": { "facing": "north", "occupied": "false", @@ -154546,7 +169783,7 @@ }, { "default": true, - "id": 1442, + "id": 1800, "properties": { "facing": "north", "occupied": "false", @@ -154554,7 +169791,7 @@ } }, { - "id": 1443, + "id": 1801, "properties": { "facing": "south", "occupied": "true", @@ -154562,7 +169799,7 @@ } }, { - "id": 1444, + "id": 1802, "properties": { "facing": "south", "occupied": "true", @@ -154570,7 +169807,7 @@ } }, { - "id": 1445, + "id": 1803, "properties": { "facing": "south", "occupied": "false", @@ -154578,7 +169815,7 @@ } }, { - "id": 1446, + "id": 1804, "properties": { "facing": "south", "occupied": "false", @@ -154586,7 +169823,7 @@ } }, { - "id": 1447, + "id": 1805, "properties": { "facing": "west", "occupied": "true", @@ -154594,7 +169831,7 @@ } }, { - "id": 1448, + "id": 1806, "properties": { "facing": "west", "occupied": "true", @@ -154602,7 +169839,7 @@ } }, { - "id": 1449, + "id": 1807, "properties": { "facing": "west", "occupied": "false", @@ -154610,7 +169847,7 @@ } }, { - "id": 1450, + "id": 1808, "properties": { "facing": "west", "occupied": "false", @@ -154618,7 +169855,7 @@ } }, { - "id": 1451, + "id": 1809, "properties": { "facing": "east", "occupied": "true", @@ -154626,7 +169863,7 @@ } }, { - "id": 1452, + "id": 1810, "properties": { "facing": "east", "occupied": "true", @@ -154634,7 +169871,7 @@ } }, { - "id": 1453, + "id": 1811, "properties": { "facing": "east", "occupied": "false", @@ -154642,7 +169879,7 @@ } }, { - "id": 1454, + "id": 1812, "properties": { "facing": "east", "occupied": "false", @@ -154670,7 +169907,7 @@ }, "states": [ { - "id": 18489, + "id": 20273, "properties": { "candles": "1", "lit": "true", @@ -154678,7 +169915,7 @@ } }, { - "id": 18490, + "id": 20274, "properties": { "candles": "1", "lit": "true", @@ -154686,7 +169923,7 @@ } }, { - "id": 18491, + "id": 20275, "properties": { "candles": "1", "lit": "false", @@ -154695,7 +169932,7 @@ }, { "default": true, - "id": 18492, + "id": 20276, "properties": { "candles": "1", "lit": "false", @@ -154703,7 +169940,7 @@ } }, { - "id": 18493, + "id": 20277, "properties": { "candles": "2", "lit": "true", @@ -154711,7 +169948,7 @@ } }, { - "id": 18494, + "id": 20278, "properties": { "candles": "2", "lit": "true", @@ -154719,7 +169956,7 @@ } }, { - "id": 18495, + "id": 20279, "properties": { "candles": "2", "lit": "false", @@ -154727,7 +169964,7 @@ } }, { - "id": 18496, + "id": 20280, "properties": { "candles": "2", "lit": "false", @@ -154735,7 +169972,7 @@ } }, { - "id": 18497, + "id": 20281, "properties": { "candles": "3", "lit": "true", @@ -154743,7 +169980,7 @@ } }, { - "id": 18498, + "id": 20282, "properties": { "candles": "3", "lit": "true", @@ -154751,7 +169988,7 @@ } }, { - "id": 18499, + "id": 20283, "properties": { "candles": "3", "lit": "false", @@ -154759,7 +169996,7 @@ } }, { - "id": 18500, + "id": 20284, "properties": { "candles": "3", "lit": "false", @@ -154767,7 +170004,7 @@ } }, { - "id": 18501, + "id": 20285, "properties": { "candles": "4", "lit": "true", @@ -154775,7 +170012,7 @@ } }, { - "id": 18502, + "id": 20286, "properties": { "candles": "4", "lit": "true", @@ -154783,7 +170020,7 @@ } }, { - "id": 18503, + "id": 20287, "properties": { "candles": "4", "lit": "false", @@ -154791,7 +170028,7 @@ } }, { - "id": 18504, + "id": 20288, "properties": { "candles": "4", "lit": "false", @@ -154809,14 +170046,14 @@ }, "states": [ { - "id": 18607, + "id": 20391, "properties": { "lit": "true" } }, { "default": true, - "id": 18608, + "id": 20392, "properties": { "lit": "false" } @@ -154827,7 +170064,7 @@ "states": [ { "default": true, - "id": 8617 + "id": 10261 } ] }, @@ -154835,7 +170072,7 @@ "states": [ { "default": true, - "id": 10329 + "id": 12113 } ] }, @@ -154843,7 +170080,7 @@ "states": [ { "default": true, - "id": 10345 + "id": 12129 } ] }, @@ -154859,25 +170096,25 @@ "states": [ { "default": true, - "id": 10295, + "id": 12079, "properties": { "facing": "north" } }, { - "id": 10296, + "id": 12080, "properties": { "facing": "south" } }, { - "id": 10297, + "id": 12081, "properties": { "facing": "west" } }, { - "id": 10298, + "id": 12082, "properties": { "facing": "east" } @@ -154897,38 +170134,38 @@ }, "states": [ { - "id": 10219, + "id": 12003, "properties": { "facing": "north" } }, { - "id": 10220, + "id": 12004, "properties": { "facing": "east" } }, { - "id": 10221, + "id": 12005, "properties": { "facing": "south" } }, { - "id": 10222, + "id": 12006, "properties": { "facing": "west" } }, { "default": true, - "id": 10223, + "id": 12007, "properties": { "facing": "up" } }, { - "id": 10224, + "id": 12008, "properties": { "facing": "down" } @@ -154939,7 +170176,7 @@ "states": [ { "default": true, - "id": 4414 + "id": 5790 } ] }, @@ -154968,7 +170205,7 @@ }, "states": [ { - "id": 7812, + "id": 9296, "properties": { "east": "true", "north": "true", @@ -154978,7 +170215,7 @@ } }, { - "id": 7813, + "id": 9297, "properties": { "east": "true", "north": "true", @@ -154988,7 +170225,7 @@ } }, { - "id": 7814, + "id": 9298, "properties": { "east": "true", "north": "true", @@ -154998,7 +170235,7 @@ } }, { - "id": 7815, + "id": 9299, "properties": { "east": "true", "north": "true", @@ -155008,7 +170245,7 @@ } }, { - "id": 7816, + "id": 9300, "properties": { "east": "true", "north": "true", @@ -155018,7 +170255,7 @@ } }, { - "id": 7817, + "id": 9301, "properties": { "east": "true", "north": "true", @@ -155028,7 +170265,7 @@ } }, { - "id": 7818, + "id": 9302, "properties": { "east": "true", "north": "true", @@ -155038,7 +170275,7 @@ } }, { - "id": 7819, + "id": 9303, "properties": { "east": "true", "north": "true", @@ -155048,7 +170285,7 @@ } }, { - "id": 7820, + "id": 9304, "properties": { "east": "true", "north": "false", @@ -155058,7 +170295,7 @@ } }, { - "id": 7821, + "id": 9305, "properties": { "east": "true", "north": "false", @@ -155068,7 +170305,7 @@ } }, { - "id": 7822, + "id": 9306, "properties": { "east": "true", "north": "false", @@ -155078,7 +170315,7 @@ } }, { - "id": 7823, + "id": 9307, "properties": { "east": "true", "north": "false", @@ -155088,7 +170325,7 @@ } }, { - "id": 7824, + "id": 9308, "properties": { "east": "true", "north": "false", @@ -155098,7 +170335,7 @@ } }, { - "id": 7825, + "id": 9309, "properties": { "east": "true", "north": "false", @@ -155108,7 +170345,7 @@ } }, { - "id": 7826, + "id": 9310, "properties": { "east": "true", "north": "false", @@ -155118,7 +170355,7 @@ } }, { - "id": 7827, + "id": 9311, "properties": { "east": "true", "north": "false", @@ -155128,7 +170365,7 @@ } }, { - "id": 7828, + "id": 9312, "properties": { "east": "false", "north": "true", @@ -155138,7 +170375,7 @@ } }, { - "id": 7829, + "id": 9313, "properties": { "east": "false", "north": "true", @@ -155148,7 +170385,7 @@ } }, { - "id": 7830, + "id": 9314, "properties": { "east": "false", "north": "true", @@ -155158,7 +170395,7 @@ } }, { - "id": 7831, + "id": 9315, "properties": { "east": "false", "north": "true", @@ -155168,7 +170405,7 @@ } }, { - "id": 7832, + "id": 9316, "properties": { "east": "false", "north": "true", @@ -155178,7 +170415,7 @@ } }, { - "id": 7833, + "id": 9317, "properties": { "east": "false", "north": "true", @@ -155188,7 +170425,7 @@ } }, { - "id": 7834, + "id": 9318, "properties": { "east": "false", "north": "true", @@ -155198,7 +170435,7 @@ } }, { - "id": 7835, + "id": 9319, "properties": { "east": "false", "north": "true", @@ -155208,7 +170445,7 @@ } }, { - "id": 7836, + "id": 9320, "properties": { "east": "false", "north": "false", @@ -155218,7 +170455,7 @@ } }, { - "id": 7837, + "id": 9321, "properties": { "east": "false", "north": "false", @@ -155228,7 +170465,7 @@ } }, { - "id": 7838, + "id": 9322, "properties": { "east": "false", "north": "false", @@ -155238,7 +170475,7 @@ } }, { - "id": 7839, + "id": 9323, "properties": { "east": "false", "north": "false", @@ -155248,7 +170485,7 @@ } }, { - "id": 7840, + "id": 9324, "properties": { "east": "false", "north": "false", @@ -155258,7 +170495,7 @@ } }, { - "id": 7841, + "id": 9325, "properties": { "east": "false", "north": "false", @@ -155268,7 +170505,7 @@ } }, { - "id": 7842, + "id": 9326, "properties": { "east": "false", "north": "false", @@ -155279,7 +170516,7 @@ }, { "default": true, - "id": 7843, + "id": 9327, "properties": { "east": "false", "north": "false", @@ -155294,7 +170531,7 @@ "states": [ { "default": true, - "id": 7486 + "id": 8970 } ] }, @@ -155310,25 +170547,25 @@ "states": [ { "default": true, - "id": 8934, + "id": 10578, "properties": { "facing": "north" } }, { - "id": 8935, + "id": 10579, "properties": { "facing": "south" } }, { - "id": 8936, + "id": 10580, "properties": { "facing": "west" } }, { - "id": 8937, + "id": 10581, "properties": { "facing": "east" } @@ -155339,7 +170576,7 @@ "states": [ { "default": true, - "id": 1648 + "id": 2006 } ] }, @@ -155347,7 +170584,7 @@ "states": [ { "default": true, - "id": 10015 + "id": 11799 } ] }, @@ -155361,20 +170598,20 @@ }, "states": [ { - "id": 10016, + "id": 11800, "properties": { "axis": "x" } }, { "default": true, - "id": 10017, + "id": 11801, "properties": { "axis": "y" } }, { - "id": 10018, + "id": 11802, "properties": { "axis": "z" } @@ -155395,21 +170632,21 @@ }, "states": [ { - "id": 9161, + "id": 10817, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 9162, + "id": 10818, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 9163, + "id": 10819, "properties": { "type": "bottom", "waterlogged": "true" @@ -155417,21 +170654,21 @@ }, { "default": true, - "id": 9164, + "id": 10820, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 9165, + "id": 10821, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 9166, + "id": 10822, "properties": { "type": "double", "waterlogged": "false" @@ -155465,7 +170702,7 @@ }, "states": [ { - "id": 10019, + "id": 11803, "properties": { "facing": "north", "half": "top", @@ -155474,7 +170711,7 @@ } }, { - "id": 10020, + "id": 11804, "properties": { "facing": "north", "half": "top", @@ -155483,7 +170720,7 @@ } }, { - "id": 10021, + "id": 11805, "properties": { "facing": "north", "half": "top", @@ -155492,7 +170729,7 @@ } }, { - "id": 10022, + "id": 11806, "properties": { "facing": "north", "half": "top", @@ -155501,7 +170738,7 @@ } }, { - "id": 10023, + "id": 11807, "properties": { "facing": "north", "half": "top", @@ -155510,7 +170747,7 @@ } }, { - "id": 10024, + "id": 11808, "properties": { "facing": "north", "half": "top", @@ -155519,7 +170756,7 @@ } }, { - "id": 10025, + "id": 11809, "properties": { "facing": "north", "half": "top", @@ -155528,7 +170765,7 @@ } }, { - "id": 10026, + "id": 11810, "properties": { "facing": "north", "half": "top", @@ -155537,7 +170774,7 @@ } }, { - "id": 10027, + "id": 11811, "properties": { "facing": "north", "half": "top", @@ -155546,7 +170783,7 @@ } }, { - "id": 10028, + "id": 11812, "properties": { "facing": "north", "half": "top", @@ -155555,7 +170792,7 @@ } }, { - "id": 10029, + "id": 11813, "properties": { "facing": "north", "half": "bottom", @@ -155565,7 +170802,7 @@ }, { "default": true, - "id": 10030, + "id": 11814, "properties": { "facing": "north", "half": "bottom", @@ -155574,7 +170811,7 @@ } }, { - "id": 10031, + "id": 11815, "properties": { "facing": "north", "half": "bottom", @@ -155583,7 +170820,7 @@ } }, { - "id": 10032, + "id": 11816, "properties": { "facing": "north", "half": "bottom", @@ -155592,7 +170829,7 @@ } }, { - "id": 10033, + "id": 11817, "properties": { "facing": "north", "half": "bottom", @@ -155601,7 +170838,7 @@ } }, { - "id": 10034, + "id": 11818, "properties": { "facing": "north", "half": "bottom", @@ -155610,7 +170847,7 @@ } }, { - "id": 10035, + "id": 11819, "properties": { "facing": "north", "half": "bottom", @@ -155619,7 +170856,7 @@ } }, { - "id": 10036, + "id": 11820, "properties": { "facing": "north", "half": "bottom", @@ -155628,7 +170865,7 @@ } }, { - "id": 10037, + "id": 11821, "properties": { "facing": "north", "half": "bottom", @@ -155637,7 +170874,7 @@ } }, { - "id": 10038, + "id": 11822, "properties": { "facing": "north", "half": "bottom", @@ -155646,7 +170883,7 @@ } }, { - "id": 10039, + "id": 11823, "properties": { "facing": "south", "half": "top", @@ -155655,7 +170892,7 @@ } }, { - "id": 10040, + "id": 11824, "properties": { "facing": "south", "half": "top", @@ -155664,7 +170901,7 @@ } }, { - "id": 10041, + "id": 11825, "properties": { "facing": "south", "half": "top", @@ -155673,7 +170910,7 @@ } }, { - "id": 10042, + "id": 11826, "properties": { "facing": "south", "half": "top", @@ -155682,7 +170919,7 @@ } }, { - "id": 10043, + "id": 11827, "properties": { "facing": "south", "half": "top", @@ -155691,7 +170928,7 @@ } }, { - "id": 10044, + "id": 11828, "properties": { "facing": "south", "half": "top", @@ -155700,7 +170937,7 @@ } }, { - "id": 10045, + "id": 11829, "properties": { "facing": "south", "half": "top", @@ -155709,7 +170946,7 @@ } }, { - "id": 10046, + "id": 11830, "properties": { "facing": "south", "half": "top", @@ -155718,7 +170955,7 @@ } }, { - "id": 10047, + "id": 11831, "properties": { "facing": "south", "half": "top", @@ -155727,7 +170964,7 @@ } }, { - "id": 10048, + "id": 11832, "properties": { "facing": "south", "half": "top", @@ -155736,7 +170973,7 @@ } }, { - "id": 10049, + "id": 11833, "properties": { "facing": "south", "half": "bottom", @@ -155745,7 +170982,7 @@ } }, { - "id": 10050, + "id": 11834, "properties": { "facing": "south", "half": "bottom", @@ -155754,7 +170991,7 @@ } }, { - "id": 10051, + "id": 11835, "properties": { "facing": "south", "half": "bottom", @@ -155763,7 +171000,7 @@ } }, { - "id": 10052, + "id": 11836, "properties": { "facing": "south", "half": "bottom", @@ -155772,7 +171009,7 @@ } }, { - "id": 10053, + "id": 11837, "properties": { "facing": "south", "half": "bottom", @@ -155781,7 +171018,7 @@ } }, { - "id": 10054, + "id": 11838, "properties": { "facing": "south", "half": "bottom", @@ -155790,7 +171027,7 @@ } }, { - "id": 10055, + "id": 11839, "properties": { "facing": "south", "half": "bottom", @@ -155799,7 +171036,7 @@ } }, { - "id": 10056, + "id": 11840, "properties": { "facing": "south", "half": "bottom", @@ -155808,7 +171045,7 @@ } }, { - "id": 10057, + "id": 11841, "properties": { "facing": "south", "half": "bottom", @@ -155817,7 +171054,7 @@ } }, { - "id": 10058, + "id": 11842, "properties": { "facing": "south", "half": "bottom", @@ -155826,7 +171063,7 @@ } }, { - "id": 10059, + "id": 11843, "properties": { "facing": "west", "half": "top", @@ -155835,7 +171072,7 @@ } }, { - "id": 10060, + "id": 11844, "properties": { "facing": "west", "half": "top", @@ -155844,7 +171081,7 @@ } }, { - "id": 10061, + "id": 11845, "properties": { "facing": "west", "half": "top", @@ -155853,7 +171090,7 @@ } }, { - "id": 10062, + "id": 11846, "properties": { "facing": "west", "half": "top", @@ -155862,7 +171099,7 @@ } }, { - "id": 10063, + "id": 11847, "properties": { "facing": "west", "half": "top", @@ -155871,7 +171108,7 @@ } }, { - "id": 10064, + "id": 11848, "properties": { "facing": "west", "half": "top", @@ -155880,7 +171117,7 @@ } }, { - "id": 10065, + "id": 11849, "properties": { "facing": "west", "half": "top", @@ -155889,7 +171126,7 @@ } }, { - "id": 10066, + "id": 11850, "properties": { "facing": "west", "half": "top", @@ -155898,7 +171135,7 @@ } }, { - "id": 10067, + "id": 11851, "properties": { "facing": "west", "half": "top", @@ -155907,7 +171144,7 @@ } }, { - "id": 10068, + "id": 11852, "properties": { "facing": "west", "half": "top", @@ -155916,7 +171153,7 @@ } }, { - "id": 10069, + "id": 11853, "properties": { "facing": "west", "half": "bottom", @@ -155925,7 +171162,7 @@ } }, { - "id": 10070, + "id": 11854, "properties": { "facing": "west", "half": "bottom", @@ -155934,7 +171171,7 @@ } }, { - "id": 10071, + "id": 11855, "properties": { "facing": "west", "half": "bottom", @@ -155943,7 +171180,7 @@ } }, { - "id": 10072, + "id": 11856, "properties": { "facing": "west", "half": "bottom", @@ -155952,7 +171189,7 @@ } }, { - "id": 10073, + "id": 11857, "properties": { "facing": "west", "half": "bottom", @@ -155961,7 +171198,7 @@ } }, { - "id": 10074, + "id": 11858, "properties": { "facing": "west", "half": "bottom", @@ -155970,7 +171207,7 @@ } }, { - "id": 10075, + "id": 11859, "properties": { "facing": "west", "half": "bottom", @@ -155979,7 +171216,7 @@ } }, { - "id": 10076, + "id": 11860, "properties": { "facing": "west", "half": "bottom", @@ -155988,7 +171225,7 @@ } }, { - "id": 10077, + "id": 11861, "properties": { "facing": "west", "half": "bottom", @@ -155997,7 +171234,7 @@ } }, { - "id": 10078, + "id": 11862, "properties": { "facing": "west", "half": "bottom", @@ -156006,7 +171243,7 @@ } }, { - "id": 10079, + "id": 11863, "properties": { "facing": "east", "half": "top", @@ -156015,7 +171252,7 @@ } }, { - "id": 10080, + "id": 11864, "properties": { "facing": "east", "half": "top", @@ -156024,7 +171261,7 @@ } }, { - "id": 10081, + "id": 11865, "properties": { "facing": "east", "half": "top", @@ -156033,7 +171270,7 @@ } }, { - "id": 10082, + "id": 11866, "properties": { "facing": "east", "half": "top", @@ -156042,7 +171279,7 @@ } }, { - "id": 10083, + "id": 11867, "properties": { "facing": "east", "half": "top", @@ -156051,7 +171288,7 @@ } }, { - "id": 10084, + "id": 11868, "properties": { "facing": "east", "half": "top", @@ -156060,7 +171297,7 @@ } }, { - "id": 10085, + "id": 11869, "properties": { "facing": "east", "half": "top", @@ -156069,7 +171306,7 @@ } }, { - "id": 10086, + "id": 11870, "properties": { "facing": "east", "half": "top", @@ -156078,7 +171315,7 @@ } }, { - "id": 10087, + "id": 11871, "properties": { "facing": "east", "half": "top", @@ -156087,7 +171324,7 @@ } }, { - "id": 10088, + "id": 11872, "properties": { "facing": "east", "half": "top", @@ -156096,7 +171333,7 @@ } }, { - "id": 10089, + "id": 11873, "properties": { "facing": "east", "half": "bottom", @@ -156105,7 +171342,7 @@ } }, { - "id": 10090, + "id": 11874, "properties": { "facing": "east", "half": "bottom", @@ -156114,7 +171351,7 @@ } }, { - "id": 10091, + "id": 11875, "properties": { "facing": "east", "half": "bottom", @@ -156123,7 +171360,7 @@ } }, { - "id": 10092, + "id": 11876, "properties": { "facing": "east", "half": "bottom", @@ -156132,7 +171369,7 @@ } }, { - "id": 10093, + "id": 11877, "properties": { "facing": "east", "half": "bottom", @@ -156141,7 +171378,7 @@ } }, { - "id": 10094, + "id": 11878, "properties": { "facing": "east", "half": "bottom", @@ -156150,7 +171387,7 @@ } }, { - "id": 10095, + "id": 11879, "properties": { "facing": "east", "half": "bottom", @@ -156159,7 +171396,7 @@ } }, { - "id": 10096, + "id": 11880, "properties": { "facing": "east", "half": "bottom", @@ -156168,7 +171405,7 @@ } }, { - "id": 10097, + "id": 11881, "properties": { "facing": "east", "half": "bottom", @@ -156177,7 +171414,7 @@ } }, { - "id": 10098, + "id": 11882, "properties": { "facing": "east", "half": "bottom", @@ -156191,7 +171428,7 @@ "states": [ { "default": true, - "id": 7355 + "id": 8839 } ] }, @@ -156199,7 +171436,7 @@ "states": [ { "default": true, - "id": 18312 + "id": 20096 } ] }, @@ -156213,20 +171450,20 @@ }, "states": [ { - "id": 7357, + "id": 8841, "properties": { "axis": "x" } }, { "default": true, - "id": 7358, + "id": 8842, "properties": { "axis": "y" } }, { - "id": 7359, + "id": 8843, "properties": { "axis": "z" } @@ -156247,21 +171484,21 @@ }, "states": [ { - "id": 9143, + "id": 10799, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 9144, + "id": 10800, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 9145, + "id": 10801, "properties": { "type": "bottom", "waterlogged": "true" @@ -156269,21 +171506,21 @@ }, { "default": true, - "id": 9146, + "id": 10802, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 9147, + "id": 10803, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 9148, + "id": 10804, "properties": { "type": "double", "waterlogged": "false" @@ -156317,7 +171554,7 @@ }, "states": [ { - "id": 7360, + "id": 8844, "properties": { "facing": "north", "half": "top", @@ -156326,7 +171563,7 @@ } }, { - "id": 7361, + "id": 8845, "properties": { "facing": "north", "half": "top", @@ -156335,7 +171572,7 @@ } }, { - "id": 7362, + "id": 8846, "properties": { "facing": "north", "half": "top", @@ -156344,7 +171581,7 @@ } }, { - "id": 7363, + "id": 8847, "properties": { "facing": "north", "half": "top", @@ -156353,7 +171590,7 @@ } }, { - "id": 7364, + "id": 8848, "properties": { "facing": "north", "half": "top", @@ -156362,7 +171599,7 @@ } }, { - "id": 7365, + "id": 8849, "properties": { "facing": "north", "half": "top", @@ -156371,7 +171608,7 @@ } }, { - "id": 7366, + "id": 8850, "properties": { "facing": "north", "half": "top", @@ -156380,7 +171617,7 @@ } }, { - "id": 7367, + "id": 8851, "properties": { "facing": "north", "half": "top", @@ -156389,7 +171626,7 @@ } }, { - "id": 7368, + "id": 8852, "properties": { "facing": "north", "half": "top", @@ -156398,7 +171635,7 @@ } }, { - "id": 7369, + "id": 8853, "properties": { "facing": "north", "half": "top", @@ -156407,7 +171644,7 @@ } }, { - "id": 7370, + "id": 8854, "properties": { "facing": "north", "half": "bottom", @@ -156417,7 +171654,7 @@ }, { "default": true, - "id": 7371, + "id": 8855, "properties": { "facing": "north", "half": "bottom", @@ -156426,7 +171663,7 @@ } }, { - "id": 7372, + "id": 8856, "properties": { "facing": "north", "half": "bottom", @@ -156435,7 +171672,7 @@ } }, { - "id": 7373, + "id": 8857, "properties": { "facing": "north", "half": "bottom", @@ -156444,7 +171681,7 @@ } }, { - "id": 7374, + "id": 8858, "properties": { "facing": "north", "half": "bottom", @@ -156453,7 +171690,7 @@ } }, { - "id": 7375, + "id": 8859, "properties": { "facing": "north", "half": "bottom", @@ -156462,7 +171699,7 @@ } }, { - "id": 7376, + "id": 8860, "properties": { "facing": "north", "half": "bottom", @@ -156471,7 +171708,7 @@ } }, { - "id": 7377, + "id": 8861, "properties": { "facing": "north", "half": "bottom", @@ -156480,7 +171717,7 @@ } }, { - "id": 7378, + "id": 8862, "properties": { "facing": "north", "half": "bottom", @@ -156489,7 +171726,7 @@ } }, { - "id": 7379, + "id": 8863, "properties": { "facing": "north", "half": "bottom", @@ -156498,7 +171735,7 @@ } }, { - "id": 7380, + "id": 8864, "properties": { "facing": "south", "half": "top", @@ -156507,7 +171744,7 @@ } }, { - "id": 7381, + "id": 8865, "properties": { "facing": "south", "half": "top", @@ -156516,7 +171753,7 @@ } }, { - "id": 7382, + "id": 8866, "properties": { "facing": "south", "half": "top", @@ -156525,7 +171762,7 @@ } }, { - "id": 7383, + "id": 8867, "properties": { "facing": "south", "half": "top", @@ -156534,7 +171771,7 @@ } }, { - "id": 7384, + "id": 8868, "properties": { "facing": "south", "half": "top", @@ -156543,7 +171780,7 @@ } }, { - "id": 7385, + "id": 8869, "properties": { "facing": "south", "half": "top", @@ -156552,7 +171789,7 @@ } }, { - "id": 7386, + "id": 8870, "properties": { "facing": "south", "half": "top", @@ -156561,7 +171798,7 @@ } }, { - "id": 7387, + "id": 8871, "properties": { "facing": "south", "half": "top", @@ -156570,7 +171807,7 @@ } }, { - "id": 7388, + "id": 8872, "properties": { "facing": "south", "half": "top", @@ -156579,7 +171816,7 @@ } }, { - "id": 7389, + "id": 8873, "properties": { "facing": "south", "half": "top", @@ -156588,7 +171825,7 @@ } }, { - "id": 7390, + "id": 8874, "properties": { "facing": "south", "half": "bottom", @@ -156597,7 +171834,7 @@ } }, { - "id": 7391, + "id": 8875, "properties": { "facing": "south", "half": "bottom", @@ -156606,7 +171843,7 @@ } }, { - "id": 7392, + "id": 8876, "properties": { "facing": "south", "half": "bottom", @@ -156615,7 +171852,7 @@ } }, { - "id": 7393, + "id": 8877, "properties": { "facing": "south", "half": "bottom", @@ -156624,7 +171861,7 @@ } }, { - "id": 7394, + "id": 8878, "properties": { "facing": "south", "half": "bottom", @@ -156633,7 +171870,7 @@ } }, { - "id": 7395, + "id": 8879, "properties": { "facing": "south", "half": "bottom", @@ -156642,7 +171879,7 @@ } }, { - "id": 7396, + "id": 8880, "properties": { "facing": "south", "half": "bottom", @@ -156651,7 +171888,7 @@ } }, { - "id": 7397, + "id": 8881, "properties": { "facing": "south", "half": "bottom", @@ -156660,7 +171897,7 @@ } }, { - "id": 7398, + "id": 8882, "properties": { "facing": "south", "half": "bottom", @@ -156669,7 +171906,7 @@ } }, { - "id": 7399, + "id": 8883, "properties": { "facing": "south", "half": "bottom", @@ -156678,7 +171915,7 @@ } }, { - "id": 7400, + "id": 8884, "properties": { "facing": "west", "half": "top", @@ -156687,7 +171924,7 @@ } }, { - "id": 7401, + "id": 8885, "properties": { "facing": "west", "half": "top", @@ -156696,7 +171933,7 @@ } }, { - "id": 7402, + "id": 8886, "properties": { "facing": "west", "half": "top", @@ -156705,7 +171942,7 @@ } }, { - "id": 7403, + "id": 8887, "properties": { "facing": "west", "half": "top", @@ -156714,7 +171951,7 @@ } }, { - "id": 7404, + "id": 8888, "properties": { "facing": "west", "half": "top", @@ -156723,7 +171960,7 @@ } }, { - "id": 7405, + "id": 8889, "properties": { "facing": "west", "half": "top", @@ -156732,7 +171969,7 @@ } }, { - "id": 7406, + "id": 8890, "properties": { "facing": "west", "half": "top", @@ -156741,7 +171978,7 @@ } }, { - "id": 7407, + "id": 8891, "properties": { "facing": "west", "half": "top", @@ -156750,7 +171987,7 @@ } }, { - "id": 7408, + "id": 8892, "properties": { "facing": "west", "half": "top", @@ -156759,7 +171996,7 @@ } }, { - "id": 7409, + "id": 8893, "properties": { "facing": "west", "half": "top", @@ -156768,7 +172005,7 @@ } }, { - "id": 7410, + "id": 8894, "properties": { "facing": "west", "half": "bottom", @@ -156777,7 +172014,7 @@ } }, { - "id": 7411, + "id": 8895, "properties": { "facing": "west", "half": "bottom", @@ -156786,7 +172023,7 @@ } }, { - "id": 7412, + "id": 8896, "properties": { "facing": "west", "half": "bottom", @@ -156795,7 +172032,7 @@ } }, { - "id": 7413, + "id": 8897, "properties": { "facing": "west", "half": "bottom", @@ -156804,7 +172041,7 @@ } }, { - "id": 7414, + "id": 8898, "properties": { "facing": "west", "half": "bottom", @@ -156813,7 +172050,7 @@ } }, { - "id": 7415, + "id": 8899, "properties": { "facing": "west", "half": "bottom", @@ -156822,7 +172059,7 @@ } }, { - "id": 7416, + "id": 8900, "properties": { "facing": "west", "half": "bottom", @@ -156831,7 +172068,7 @@ } }, { - "id": 7417, + "id": 8901, "properties": { "facing": "west", "half": "bottom", @@ -156840,7 +172077,7 @@ } }, { - "id": 7418, + "id": 8902, "properties": { "facing": "west", "half": "bottom", @@ -156849,7 +172086,7 @@ } }, { - "id": 7419, + "id": 8903, "properties": { "facing": "west", "half": "bottom", @@ -156858,7 +172095,7 @@ } }, { - "id": 7420, + "id": 8904, "properties": { "facing": "east", "half": "top", @@ -156867,7 +172104,7 @@ } }, { - "id": 7421, + "id": 8905, "properties": { "facing": "east", "half": "top", @@ -156876,7 +172113,7 @@ } }, { - "id": 7422, + "id": 8906, "properties": { "facing": "east", "half": "top", @@ -156885,7 +172122,7 @@ } }, { - "id": 7423, + "id": 8907, "properties": { "facing": "east", "half": "top", @@ -156894,7 +172131,7 @@ } }, { - "id": 7424, + "id": 8908, "properties": { "facing": "east", "half": "top", @@ -156903,7 +172140,7 @@ } }, { - "id": 7425, + "id": 8909, "properties": { "facing": "east", "half": "top", @@ -156912,7 +172149,7 @@ } }, { - "id": 7426, + "id": 8910, "properties": { "facing": "east", "half": "top", @@ -156921,7 +172158,7 @@ } }, { - "id": 7427, + "id": 8911, "properties": { "facing": "east", "half": "top", @@ -156930,7 +172167,7 @@ } }, { - "id": 7428, + "id": 8912, "properties": { "facing": "east", "half": "top", @@ -156939,7 +172176,7 @@ } }, { - "id": 7429, + "id": 8913, "properties": { "facing": "east", "half": "top", @@ -156948,7 +172185,7 @@ } }, { - "id": 7430, + "id": 8914, "properties": { "facing": "east", "half": "bottom", @@ -156957,7 +172194,7 @@ } }, { - "id": 7431, + "id": 8915, "properties": { "facing": "east", "half": "bottom", @@ -156966,7 +172203,7 @@ } }, { - "id": 7432, + "id": 8916, "properties": { "facing": "east", "half": "bottom", @@ -156975,7 +172212,7 @@ } }, { - "id": 7433, + "id": 8917, "properties": { "facing": "east", "half": "bottom", @@ -156984,7 +172221,7 @@ } }, { - "id": 7434, + "id": 8918, "properties": { "facing": "east", "half": "bottom", @@ -156993,7 +172230,7 @@ } }, { - "id": 7435, + "id": 8919, "properties": { "facing": "east", "half": "bottom", @@ -157002,7 +172239,7 @@ } }, { - "id": 7436, + "id": 8920, "properties": { "facing": "east", "half": "bottom", @@ -157011,7 +172248,7 @@ } }, { - "id": 7437, + "id": 8921, "properties": { "facing": "east", "half": "bottom", @@ -157020,7 +172257,7 @@ } }, { - "id": 7438, + "id": 8922, "properties": { "facing": "east", "half": "bottom", @@ -157029,7 +172266,7 @@ } }, { - "id": 7439, + "id": 8923, "properties": { "facing": "east", "half": "bottom", @@ -157060,7 +172297,7 @@ }, "states": [ { - "id": 3932, + "id": 4578, "properties": { "shape": "north_south", "waterlogged": "true" @@ -157068,133 +172305,133 @@ }, { "default": true, - "id": 3933, + "id": 4579, "properties": { "shape": "north_south", "waterlogged": "false" } }, { - "id": 3934, + "id": 4580, "properties": { "shape": "east_west", "waterlogged": "true" } }, { - "id": 3935, + "id": 4581, "properties": { "shape": "east_west", "waterlogged": "false" } }, { - "id": 3936, + "id": 4582, "properties": { "shape": "ascending_east", "waterlogged": "true" } }, { - "id": 3937, + "id": 4583, "properties": { "shape": "ascending_east", "waterlogged": "false" } }, { - "id": 3938, + "id": 4584, "properties": { "shape": "ascending_west", "waterlogged": "true" } }, { - "id": 3939, + "id": 4585, "properties": { "shape": "ascending_west", "waterlogged": "false" } }, { - "id": 3940, + "id": 4586, "properties": { "shape": "ascending_north", "waterlogged": "true" } }, { - "id": 3941, + "id": 4587, "properties": { "shape": "ascending_north", "waterlogged": "false" } }, { - "id": 3942, + "id": 4588, "properties": { "shape": "ascending_south", "waterlogged": "true" } }, { - "id": 3943, + "id": 4589, "properties": { "shape": "ascending_south", "waterlogged": "false" } }, { - "id": 3944, + "id": 4590, "properties": { "shape": "south_east", "waterlogged": "true" } }, { - "id": 3945, + "id": 4591, "properties": { "shape": "south_east", "waterlogged": "false" } }, { - "id": 3946, + "id": 4592, "properties": { "shape": "south_west", "waterlogged": "true" } }, { - "id": 3947, + "id": 4593, "properties": { "shape": "south_west", "waterlogged": "false" } }, { - "id": 3948, + "id": 4594, "properties": { "shape": "north_west", "waterlogged": "true" } }, { - "id": 3949, + "id": 4595, "properties": { "shape": "north_west", "waterlogged": "false" } }, { - "id": 3950, + "id": 4596, "properties": { "shape": "north_east", "waterlogged": "true" } }, { - "id": 3951, + "id": 4597, "properties": { "shape": "north_east", "waterlogged": "false" @@ -157206,7 +172443,7 @@ "states": [ { "default": true, - "id": 21433 + "id": 23217 } ] }, @@ -157214,7 +172451,7 @@ "states": [ { "default": true, - "id": 21434 + "id": 23218 } ] }, @@ -157222,7 +172459,7 @@ "states": [ { "default": true, - "id": 21432 + "id": 23216 } ] }, @@ -157250,97 +172487,97 @@ "states": [ { "default": true, - "id": 8862, + "id": 10506, "properties": { "rotation": "0" } }, { - "id": 8863, + "id": 10507, "properties": { "rotation": "1" } }, { - "id": 8864, + "id": 10508, "properties": { "rotation": "2" } }, { - "id": 8865, + "id": 10509, "properties": { "rotation": "3" } }, { - "id": 8866, + "id": 10510, "properties": { "rotation": "4" } }, { - "id": 8867, + "id": 10511, "properties": { "rotation": "5" } }, { - "id": 8868, + "id": 10512, "properties": { "rotation": "6" } }, { - "id": 8869, + "id": 10513, "properties": { "rotation": "7" } }, { - "id": 8870, + "id": 10514, "properties": { "rotation": "8" } }, { - "id": 8871, + "id": 10515, "properties": { "rotation": "9" } }, { - "id": 8872, + "id": 10516, "properties": { "rotation": "10" } }, { - "id": 8873, + "id": 10517, "properties": { "rotation": "11" } }, { - "id": 8874, + "id": 10518, "properties": { "rotation": "12" } }, { - "id": 8875, + "id": 10519, "properties": { "rotation": "13" } }, { - "id": 8876, + "id": 10520, "properties": { "rotation": "14" } }, { - "id": 8877, + "id": 10521, "properties": { "rotation": "15" } @@ -157366,7 +172603,7 @@ }, "states": [ { - "id": 1503, + "id": 1861, "properties": { "facing": "north", "occupied": "true", @@ -157374,7 +172611,7 @@ } }, { - "id": 1504, + "id": 1862, "properties": { "facing": "north", "occupied": "true", @@ -157382,7 +172619,7 @@ } }, { - "id": 1505, + "id": 1863, "properties": { "facing": "north", "occupied": "false", @@ -157391,7 +172628,7 @@ }, { "default": true, - "id": 1506, + "id": 1864, "properties": { "facing": "north", "occupied": "false", @@ -157399,7 +172636,7 @@ } }, { - "id": 1507, + "id": 1865, "properties": { "facing": "south", "occupied": "true", @@ -157407,7 +172644,7 @@ } }, { - "id": 1508, + "id": 1866, "properties": { "facing": "south", "occupied": "true", @@ -157415,7 +172652,7 @@ } }, { - "id": 1509, + "id": 1867, "properties": { "facing": "south", "occupied": "false", @@ -157423,7 +172660,7 @@ } }, { - "id": 1510, + "id": 1868, "properties": { "facing": "south", "occupied": "false", @@ -157431,7 +172668,7 @@ } }, { - "id": 1511, + "id": 1869, "properties": { "facing": "west", "occupied": "true", @@ -157439,7 +172676,7 @@ } }, { - "id": 1512, + "id": 1870, "properties": { "facing": "west", "occupied": "true", @@ -157447,7 +172684,7 @@ } }, { - "id": 1513, + "id": 1871, "properties": { "facing": "west", "occupied": "false", @@ -157455,7 +172692,7 @@ } }, { - "id": 1514, + "id": 1872, "properties": { "facing": "west", "occupied": "false", @@ -157463,7 +172700,7 @@ } }, { - "id": 1515, + "id": 1873, "properties": { "facing": "east", "occupied": "true", @@ -157471,7 +172708,7 @@ } }, { - "id": 1516, + "id": 1874, "properties": { "facing": "east", "occupied": "true", @@ -157479,7 +172716,7 @@ } }, { - "id": 1517, + "id": 1875, "properties": { "facing": "east", "occupied": "false", @@ -157487,7 +172724,7 @@ } }, { - "id": 1518, + "id": 1876, "properties": { "facing": "east", "occupied": "false", @@ -157515,7 +172752,7 @@ }, "states": [ { - "id": 18553, + "id": 20337, "properties": { "candles": "1", "lit": "true", @@ -157523,7 +172760,7 @@ } }, { - "id": 18554, + "id": 20338, "properties": { "candles": "1", "lit": "true", @@ -157531,7 +172768,7 @@ } }, { - "id": 18555, + "id": 20339, "properties": { "candles": "1", "lit": "false", @@ -157540,7 +172777,7 @@ }, { "default": true, - "id": 18556, + "id": 20340, "properties": { "candles": "1", "lit": "false", @@ -157548,7 +172785,7 @@ } }, { - "id": 18557, + "id": 20341, "properties": { "candles": "2", "lit": "true", @@ -157556,7 +172793,7 @@ } }, { - "id": 18558, + "id": 20342, "properties": { "candles": "2", "lit": "true", @@ -157564,7 +172801,7 @@ } }, { - "id": 18559, + "id": 20343, "properties": { "candles": "2", "lit": "false", @@ -157572,7 +172809,7 @@ } }, { - "id": 18560, + "id": 20344, "properties": { "candles": "2", "lit": "false", @@ -157580,7 +172817,7 @@ } }, { - "id": 18561, + "id": 20345, "properties": { "candles": "3", "lit": "true", @@ -157588,7 +172825,7 @@ } }, { - "id": 18562, + "id": 20346, "properties": { "candles": "3", "lit": "true", @@ -157596,7 +172833,7 @@ } }, { - "id": 18563, + "id": 20347, "properties": { "candles": "3", "lit": "false", @@ -157604,7 +172841,7 @@ } }, { - "id": 18564, + "id": 20348, "properties": { "candles": "3", "lit": "false", @@ -157612,7 +172849,7 @@ } }, { - "id": 18565, + "id": 20349, "properties": { "candles": "4", "lit": "true", @@ -157620,7 +172857,7 @@ } }, { - "id": 18566, + "id": 20350, "properties": { "candles": "4", "lit": "true", @@ -157628,7 +172865,7 @@ } }, { - "id": 18567, + "id": 20351, "properties": { "candles": "4", "lit": "false", @@ -157636,7 +172873,7 @@ } }, { - "id": 18568, + "id": 20352, "properties": { "candles": "4", "lit": "false", @@ -157654,14 +172891,14 @@ }, "states": [ { - "id": 18615, + "id": 20399, "properties": { "lit": "true" } }, { "default": true, - "id": 18616, + "id": 20400, "properties": { "lit": "false" } @@ -157672,7 +172909,7 @@ "states": [ { "default": true, - "id": 8621 + "id": 10265 } ] }, @@ -157680,7 +172917,7 @@ "states": [ { "default": true, - "id": 10333 + "id": 12117 } ] }, @@ -157688,7 +172925,7 @@ "states": [ { "default": true, - "id": 10349 + "id": 12133 } ] }, @@ -157704,25 +172941,25 @@ "states": [ { "default": true, - "id": 10311, + "id": 12095, "properties": { "facing": "north" } }, { - "id": 10312, + "id": 12096, "properties": { "facing": "south" } }, { - "id": 10313, + "id": 12097, "properties": { "facing": "west" } }, { - "id": 10314, + "id": 12098, "properties": { "facing": "east" } @@ -157733,7 +172970,7 @@ "states": [ { "default": true, - "id": 1680 + "id": 2038 } ] }, @@ -157767,7 +173004,7 @@ "states": [ { "default": true, - "id": 4944, + "id": 6384, "properties": { "down": "true", "east": "true", @@ -157778,7 +173015,7 @@ } }, { - "id": 4945, + "id": 6385, "properties": { "down": "true", "east": "true", @@ -157789,7 +173026,7 @@ } }, { - "id": 4946, + "id": 6386, "properties": { "down": "true", "east": "true", @@ -157800,7 +173037,7 @@ } }, { - "id": 4947, + "id": 6387, "properties": { "down": "true", "east": "true", @@ -157811,7 +173048,7 @@ } }, { - "id": 4948, + "id": 6388, "properties": { "down": "true", "east": "true", @@ -157822,7 +173059,7 @@ } }, { - "id": 4949, + "id": 6389, "properties": { "down": "true", "east": "true", @@ -157833,7 +173070,7 @@ } }, { - "id": 4950, + "id": 6390, "properties": { "down": "true", "east": "true", @@ -157844,7 +173081,7 @@ } }, { - "id": 4951, + "id": 6391, "properties": { "down": "true", "east": "true", @@ -157855,7 +173092,7 @@ } }, { - "id": 4952, + "id": 6392, "properties": { "down": "true", "east": "true", @@ -157866,7 +173103,7 @@ } }, { - "id": 4953, + "id": 6393, "properties": { "down": "true", "east": "true", @@ -157877,7 +173114,7 @@ } }, { - "id": 4954, + "id": 6394, "properties": { "down": "true", "east": "true", @@ -157888,7 +173125,7 @@ } }, { - "id": 4955, + "id": 6395, "properties": { "down": "true", "east": "true", @@ -157899,7 +173136,7 @@ } }, { - "id": 4956, + "id": 6396, "properties": { "down": "true", "east": "true", @@ -157910,7 +173147,7 @@ } }, { - "id": 4957, + "id": 6397, "properties": { "down": "true", "east": "true", @@ -157921,7 +173158,7 @@ } }, { - "id": 4958, + "id": 6398, "properties": { "down": "true", "east": "true", @@ -157932,7 +173169,7 @@ } }, { - "id": 4959, + "id": 6399, "properties": { "down": "true", "east": "true", @@ -157943,7 +173180,7 @@ } }, { - "id": 4960, + "id": 6400, "properties": { "down": "true", "east": "false", @@ -157954,7 +173191,7 @@ } }, { - "id": 4961, + "id": 6401, "properties": { "down": "true", "east": "false", @@ -157965,7 +173202,7 @@ } }, { - "id": 4962, + "id": 6402, "properties": { "down": "true", "east": "false", @@ -157976,7 +173213,7 @@ } }, { - "id": 4963, + "id": 6403, "properties": { "down": "true", "east": "false", @@ -157987,7 +173224,7 @@ } }, { - "id": 4964, + "id": 6404, "properties": { "down": "true", "east": "false", @@ -157998,7 +173235,7 @@ } }, { - "id": 4965, + "id": 6405, "properties": { "down": "true", "east": "false", @@ -158009,7 +173246,7 @@ } }, { - "id": 4966, + "id": 6406, "properties": { "down": "true", "east": "false", @@ -158020,7 +173257,7 @@ } }, { - "id": 4967, + "id": 6407, "properties": { "down": "true", "east": "false", @@ -158031,7 +173268,7 @@ } }, { - "id": 4968, + "id": 6408, "properties": { "down": "true", "east": "false", @@ -158042,7 +173279,7 @@ } }, { - "id": 4969, + "id": 6409, "properties": { "down": "true", "east": "false", @@ -158053,7 +173290,7 @@ } }, { - "id": 4970, + "id": 6410, "properties": { "down": "true", "east": "false", @@ -158064,7 +173301,7 @@ } }, { - "id": 4971, + "id": 6411, "properties": { "down": "true", "east": "false", @@ -158075,7 +173312,7 @@ } }, { - "id": 4972, + "id": 6412, "properties": { "down": "true", "east": "false", @@ -158086,7 +173323,7 @@ } }, { - "id": 4973, + "id": 6413, "properties": { "down": "true", "east": "false", @@ -158097,7 +173334,7 @@ } }, { - "id": 4974, + "id": 6414, "properties": { "down": "true", "east": "false", @@ -158108,7 +173345,7 @@ } }, { - "id": 4975, + "id": 6415, "properties": { "down": "true", "east": "false", @@ -158119,7 +173356,7 @@ } }, { - "id": 4976, + "id": 6416, "properties": { "down": "false", "east": "true", @@ -158130,7 +173367,7 @@ } }, { - "id": 4977, + "id": 6417, "properties": { "down": "false", "east": "true", @@ -158141,7 +173378,7 @@ } }, { - "id": 4978, + "id": 6418, "properties": { "down": "false", "east": "true", @@ -158152,7 +173389,7 @@ } }, { - "id": 4979, + "id": 6419, "properties": { "down": "false", "east": "true", @@ -158163,7 +173400,7 @@ } }, { - "id": 4980, + "id": 6420, "properties": { "down": "false", "east": "true", @@ -158174,7 +173411,7 @@ } }, { - "id": 4981, + "id": 6421, "properties": { "down": "false", "east": "true", @@ -158185,7 +173422,7 @@ } }, { - "id": 4982, + "id": 6422, "properties": { "down": "false", "east": "true", @@ -158196,7 +173433,7 @@ } }, { - "id": 4983, + "id": 6423, "properties": { "down": "false", "east": "true", @@ -158207,7 +173444,7 @@ } }, { - "id": 4984, + "id": 6424, "properties": { "down": "false", "east": "true", @@ -158218,7 +173455,7 @@ } }, { - "id": 4985, + "id": 6425, "properties": { "down": "false", "east": "true", @@ -158229,7 +173466,7 @@ } }, { - "id": 4986, + "id": 6426, "properties": { "down": "false", "east": "true", @@ -158240,7 +173477,7 @@ } }, { - "id": 4987, + "id": 6427, "properties": { "down": "false", "east": "true", @@ -158251,7 +173488,7 @@ } }, { - "id": 4988, + "id": 6428, "properties": { "down": "false", "east": "true", @@ -158262,7 +173499,7 @@ } }, { - "id": 4989, + "id": 6429, "properties": { "down": "false", "east": "true", @@ -158273,7 +173510,7 @@ } }, { - "id": 4990, + "id": 6430, "properties": { "down": "false", "east": "true", @@ -158284,7 +173521,7 @@ } }, { - "id": 4991, + "id": 6431, "properties": { "down": "false", "east": "true", @@ -158295,7 +173532,7 @@ } }, { - "id": 4992, + "id": 6432, "properties": { "down": "false", "east": "false", @@ -158306,7 +173543,7 @@ } }, { - "id": 4993, + "id": 6433, "properties": { "down": "false", "east": "false", @@ -158317,7 +173554,7 @@ } }, { - "id": 4994, + "id": 6434, "properties": { "down": "false", "east": "false", @@ -158328,7 +173565,7 @@ } }, { - "id": 4995, + "id": 6435, "properties": { "down": "false", "east": "false", @@ -158339,7 +173576,7 @@ } }, { - "id": 4996, + "id": 6436, "properties": { "down": "false", "east": "false", @@ -158350,7 +173587,7 @@ } }, { - "id": 4997, + "id": 6437, "properties": { "down": "false", "east": "false", @@ -158361,7 +173598,7 @@ } }, { - "id": 4998, + "id": 6438, "properties": { "down": "false", "east": "false", @@ -158372,7 +173609,7 @@ } }, { - "id": 4999, + "id": 6439, "properties": { "down": "false", "east": "false", @@ -158383,7 +173620,7 @@ } }, { - "id": 5000, + "id": 6440, "properties": { "down": "false", "east": "false", @@ -158394,7 +173631,7 @@ } }, { - "id": 5001, + "id": 6441, "properties": { "down": "false", "east": "false", @@ -158405,7 +173642,7 @@ } }, { - "id": 5002, + "id": 6442, "properties": { "down": "false", "east": "false", @@ -158416,7 +173653,7 @@ } }, { - "id": 5003, + "id": 6443, "properties": { "down": "false", "east": "false", @@ -158427,7 +173664,7 @@ } }, { - "id": 5004, + "id": 6444, "properties": { "down": "false", "east": "false", @@ -158438,7 +173675,7 @@ } }, { - "id": 5005, + "id": 6445, "properties": { "down": "false", "east": "false", @@ -158449,7 +173686,7 @@ } }, { - "id": 5006, + "id": 6446, "properties": { "down": "false", "east": "false", @@ -158460,7 +173697,7 @@ } }, { - "id": 5007, + "id": 6447, "properties": { "down": "false", "east": "false", @@ -158486,21 +173723,21 @@ }, "states": [ { - "id": 11730, + "id": 13514, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11731, + "id": 13515, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11732, + "id": 13516, "properties": { "type": "bottom", "waterlogged": "true" @@ -158508,21 +173745,21 @@ }, { "default": true, - "id": 11733, + "id": 13517, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11734, + "id": 13518, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11735, + "id": 13519, "properties": { "type": "double", "waterlogged": "false" @@ -158556,7 +173793,7 @@ }, "states": [ { - "id": 11430, + "id": 13214, "properties": { "facing": "north", "half": "top", @@ -158565,7 +173802,7 @@ } }, { - "id": 11431, + "id": 13215, "properties": { "facing": "north", "half": "top", @@ -158574,7 +173811,7 @@ } }, { - "id": 11432, + "id": 13216, "properties": { "facing": "north", "half": "top", @@ -158583,7 +173820,7 @@ } }, { - "id": 11433, + "id": 13217, "properties": { "facing": "north", "half": "top", @@ -158592,7 +173829,7 @@ } }, { - "id": 11434, + "id": 13218, "properties": { "facing": "north", "half": "top", @@ -158601,7 +173838,7 @@ } }, { - "id": 11435, + "id": 13219, "properties": { "facing": "north", "half": "top", @@ -158610,7 +173847,7 @@ } }, { - "id": 11436, + "id": 13220, "properties": { "facing": "north", "half": "top", @@ -158619,7 +173856,7 @@ } }, { - "id": 11437, + "id": 13221, "properties": { "facing": "north", "half": "top", @@ -158628,7 +173865,7 @@ } }, { - "id": 11438, + "id": 13222, "properties": { "facing": "north", "half": "top", @@ -158637,7 +173874,7 @@ } }, { - "id": 11439, + "id": 13223, "properties": { "facing": "north", "half": "top", @@ -158646,7 +173883,7 @@ } }, { - "id": 11440, + "id": 13224, "properties": { "facing": "north", "half": "bottom", @@ -158656,7 +173893,7 @@ }, { "default": true, - "id": 11441, + "id": 13225, "properties": { "facing": "north", "half": "bottom", @@ -158665,7 +173902,7 @@ } }, { - "id": 11442, + "id": 13226, "properties": { "facing": "north", "half": "bottom", @@ -158674,7 +173911,7 @@ } }, { - "id": 11443, + "id": 13227, "properties": { "facing": "north", "half": "bottom", @@ -158683,7 +173920,7 @@ } }, { - "id": 11444, + "id": 13228, "properties": { "facing": "north", "half": "bottom", @@ -158692,7 +173929,7 @@ } }, { - "id": 11445, + "id": 13229, "properties": { "facing": "north", "half": "bottom", @@ -158701,7 +173938,7 @@ } }, { - "id": 11446, + "id": 13230, "properties": { "facing": "north", "half": "bottom", @@ -158710,7 +173947,7 @@ } }, { - "id": 11447, + "id": 13231, "properties": { "facing": "north", "half": "bottom", @@ -158719,7 +173956,7 @@ } }, { - "id": 11448, + "id": 13232, "properties": { "facing": "north", "half": "bottom", @@ -158728,7 +173965,7 @@ } }, { - "id": 11449, + "id": 13233, "properties": { "facing": "north", "half": "bottom", @@ -158737,7 +173974,7 @@ } }, { - "id": 11450, + "id": 13234, "properties": { "facing": "south", "half": "top", @@ -158746,7 +173983,7 @@ } }, { - "id": 11451, + "id": 13235, "properties": { "facing": "south", "half": "top", @@ -158755,7 +173992,7 @@ } }, { - "id": 11452, + "id": 13236, "properties": { "facing": "south", "half": "top", @@ -158764,7 +174001,7 @@ } }, { - "id": 11453, + "id": 13237, "properties": { "facing": "south", "half": "top", @@ -158773,7 +174010,7 @@ } }, { - "id": 11454, + "id": 13238, "properties": { "facing": "south", "half": "top", @@ -158782,7 +174019,7 @@ } }, { - "id": 11455, + "id": 13239, "properties": { "facing": "south", "half": "top", @@ -158791,7 +174028,7 @@ } }, { - "id": 11456, + "id": 13240, "properties": { "facing": "south", "half": "top", @@ -158800,7 +174037,7 @@ } }, { - "id": 11457, + "id": 13241, "properties": { "facing": "south", "half": "top", @@ -158809,7 +174046,7 @@ } }, { - "id": 11458, + "id": 13242, "properties": { "facing": "south", "half": "top", @@ -158818,7 +174055,7 @@ } }, { - "id": 11459, + "id": 13243, "properties": { "facing": "south", "half": "top", @@ -158827,7 +174064,7 @@ } }, { - "id": 11460, + "id": 13244, "properties": { "facing": "south", "half": "bottom", @@ -158836,7 +174073,7 @@ } }, { - "id": 11461, + "id": 13245, "properties": { "facing": "south", "half": "bottom", @@ -158845,7 +174082,7 @@ } }, { - "id": 11462, + "id": 13246, "properties": { "facing": "south", "half": "bottom", @@ -158854,7 +174091,7 @@ } }, { - "id": 11463, + "id": 13247, "properties": { "facing": "south", "half": "bottom", @@ -158863,7 +174100,7 @@ } }, { - "id": 11464, + "id": 13248, "properties": { "facing": "south", "half": "bottom", @@ -158872,7 +174109,7 @@ } }, { - "id": 11465, + "id": 13249, "properties": { "facing": "south", "half": "bottom", @@ -158881,7 +174118,7 @@ } }, { - "id": 11466, + "id": 13250, "properties": { "facing": "south", "half": "bottom", @@ -158890,7 +174127,7 @@ } }, { - "id": 11467, + "id": 13251, "properties": { "facing": "south", "half": "bottom", @@ -158899,7 +174136,7 @@ } }, { - "id": 11468, + "id": 13252, "properties": { "facing": "south", "half": "bottom", @@ -158908,7 +174145,7 @@ } }, { - "id": 11469, + "id": 13253, "properties": { "facing": "south", "half": "bottom", @@ -158917,7 +174154,7 @@ } }, { - "id": 11470, + "id": 13254, "properties": { "facing": "west", "half": "top", @@ -158926,7 +174163,7 @@ } }, { - "id": 11471, + "id": 13255, "properties": { "facing": "west", "half": "top", @@ -158935,7 +174172,7 @@ } }, { - "id": 11472, + "id": 13256, "properties": { "facing": "west", "half": "top", @@ -158944,7 +174181,7 @@ } }, { - "id": 11473, + "id": 13257, "properties": { "facing": "west", "half": "top", @@ -158953,7 +174190,7 @@ } }, { - "id": 11474, + "id": 13258, "properties": { "facing": "west", "half": "top", @@ -158962,7 +174199,7 @@ } }, { - "id": 11475, + "id": 13259, "properties": { "facing": "west", "half": "top", @@ -158971,7 +174208,7 @@ } }, { - "id": 11476, + "id": 13260, "properties": { "facing": "west", "half": "top", @@ -158980,7 +174217,7 @@ } }, { - "id": 11477, + "id": 13261, "properties": { "facing": "west", "half": "top", @@ -158989,7 +174226,7 @@ } }, { - "id": 11478, + "id": 13262, "properties": { "facing": "west", "half": "top", @@ -158998,7 +174235,7 @@ } }, { - "id": 11479, + "id": 13263, "properties": { "facing": "west", "half": "top", @@ -159007,7 +174244,7 @@ } }, { - "id": 11480, + "id": 13264, "properties": { "facing": "west", "half": "bottom", @@ -159016,7 +174253,7 @@ } }, { - "id": 11481, + "id": 13265, "properties": { "facing": "west", "half": "bottom", @@ -159025,7 +174262,7 @@ } }, { - "id": 11482, + "id": 13266, "properties": { "facing": "west", "half": "bottom", @@ -159034,7 +174271,7 @@ } }, { - "id": 11483, + "id": 13267, "properties": { "facing": "west", "half": "bottom", @@ -159043,7 +174280,7 @@ } }, { - "id": 11484, + "id": 13268, "properties": { "facing": "west", "half": "bottom", @@ -159052,7 +174289,7 @@ } }, { - "id": 11485, + "id": 13269, "properties": { "facing": "west", "half": "bottom", @@ -159061,7 +174298,7 @@ } }, { - "id": 11486, + "id": 13270, "properties": { "facing": "west", "half": "bottom", @@ -159070,7 +174307,7 @@ } }, { - "id": 11487, + "id": 13271, "properties": { "facing": "west", "half": "bottom", @@ -159079,7 +174316,7 @@ } }, { - "id": 11488, + "id": 13272, "properties": { "facing": "west", "half": "bottom", @@ -159088,7 +174325,7 @@ } }, { - "id": 11489, + "id": 13273, "properties": { "facing": "west", "half": "bottom", @@ -159097,7 +174334,7 @@ } }, { - "id": 11490, + "id": 13274, "properties": { "facing": "east", "half": "top", @@ -159106,7 +174343,7 @@ } }, { - "id": 11491, + "id": 13275, "properties": { "facing": "east", "half": "top", @@ -159115,7 +174352,7 @@ } }, { - "id": 11492, + "id": 13276, "properties": { "facing": "east", "half": "top", @@ -159124,7 +174361,7 @@ } }, { - "id": 11493, + "id": 13277, "properties": { "facing": "east", "half": "top", @@ -159133,7 +174370,7 @@ } }, { - "id": 11494, + "id": 13278, "properties": { "facing": "east", "half": "top", @@ -159142,7 +174379,7 @@ } }, { - "id": 11495, + "id": 13279, "properties": { "facing": "east", "half": "top", @@ -159151,7 +174388,7 @@ } }, { - "id": 11496, + "id": 13280, "properties": { "facing": "east", "half": "top", @@ -159160,7 +174397,7 @@ } }, { - "id": 11497, + "id": 13281, "properties": { "facing": "east", "half": "top", @@ -159169,7 +174406,7 @@ } }, { - "id": 11498, + "id": 13282, "properties": { "facing": "east", "half": "top", @@ -159178,7 +174415,7 @@ } }, { - "id": 11499, + "id": 13283, "properties": { "facing": "east", "half": "top", @@ -159187,7 +174424,7 @@ } }, { - "id": 11500, + "id": 13284, "properties": { "facing": "east", "half": "bottom", @@ -159196,7 +174433,7 @@ } }, { - "id": 11501, + "id": 13285, "properties": { "facing": "east", "half": "bottom", @@ -159205,7 +174442,7 @@ } }, { - "id": 11502, + "id": 13286, "properties": { "facing": "east", "half": "bottom", @@ -159214,7 +174451,7 @@ } }, { - "id": 11503, + "id": 13287, "properties": { "facing": "east", "half": "bottom", @@ -159223,7 +174460,7 @@ } }, { - "id": 11504, + "id": 13288, "properties": { "facing": "east", "half": "bottom", @@ -159232,7 +174469,7 @@ } }, { - "id": 11505, + "id": 13289, "properties": { "facing": "east", "half": "bottom", @@ -159241,7 +174478,7 @@ } }, { - "id": 11506, + "id": 13290, "properties": { "facing": "east", "half": "bottom", @@ -159250,7 +174487,7 @@ } }, { - "id": 11507, + "id": 13291, "properties": { "facing": "east", "half": "bottom", @@ -159259,7 +174496,7 @@ } }, { - "id": 11508, + "id": 13292, "properties": { "facing": "east", "half": "bottom", @@ -159268,7 +174505,7 @@ } }, { - "id": 11509, + "id": 13293, "properties": { "facing": "east", "half": "bottom", @@ -159311,7 +174548,7 @@ }, "states": [ { - "id": 14664, + "id": 16448, "properties": { "east": "none", "north": "none", @@ -159322,7 +174559,7 @@ } }, { - "id": 14665, + "id": 16449, "properties": { "east": "none", "north": "none", @@ -159333,7 +174570,7 @@ } }, { - "id": 14666, + "id": 16450, "properties": { "east": "none", "north": "none", @@ -159345,7 +174582,7 @@ }, { "default": true, - "id": 14667, + "id": 16451, "properties": { "east": "none", "north": "none", @@ -159356,7 +174593,7 @@ } }, { - "id": 14668, + "id": 16452, "properties": { "east": "none", "north": "none", @@ -159367,7 +174604,7 @@ } }, { - "id": 14669, + "id": 16453, "properties": { "east": "none", "north": "none", @@ -159378,7 +174615,7 @@ } }, { - "id": 14670, + "id": 16454, "properties": { "east": "none", "north": "none", @@ -159389,7 +174626,7 @@ } }, { - "id": 14671, + "id": 16455, "properties": { "east": "none", "north": "none", @@ -159400,7 +174637,7 @@ } }, { - "id": 14672, + "id": 16456, "properties": { "east": "none", "north": "none", @@ -159411,7 +174648,7 @@ } }, { - "id": 14673, + "id": 16457, "properties": { "east": "none", "north": "none", @@ -159422,7 +174659,7 @@ } }, { - "id": 14674, + "id": 16458, "properties": { "east": "none", "north": "none", @@ -159433,7 +174670,7 @@ } }, { - "id": 14675, + "id": 16459, "properties": { "east": "none", "north": "none", @@ -159444,7 +174681,7 @@ } }, { - "id": 14676, + "id": 16460, "properties": { "east": "none", "north": "none", @@ -159455,7 +174692,7 @@ } }, { - "id": 14677, + "id": 16461, "properties": { "east": "none", "north": "none", @@ -159466,7 +174703,7 @@ } }, { - "id": 14678, + "id": 16462, "properties": { "east": "none", "north": "none", @@ -159477,7 +174714,7 @@ } }, { - "id": 14679, + "id": 16463, "properties": { "east": "none", "north": "none", @@ -159488,7 +174725,7 @@ } }, { - "id": 14680, + "id": 16464, "properties": { "east": "none", "north": "none", @@ -159499,7 +174736,7 @@ } }, { - "id": 14681, + "id": 16465, "properties": { "east": "none", "north": "none", @@ -159510,7 +174747,7 @@ } }, { - "id": 14682, + "id": 16466, "properties": { "east": "none", "north": "none", @@ -159521,7 +174758,7 @@ } }, { - "id": 14683, + "id": 16467, "properties": { "east": "none", "north": "none", @@ -159532,7 +174769,7 @@ } }, { - "id": 14684, + "id": 16468, "properties": { "east": "none", "north": "none", @@ -159543,7 +174780,7 @@ } }, { - "id": 14685, + "id": 16469, "properties": { "east": "none", "north": "none", @@ -159554,7 +174791,7 @@ } }, { - "id": 14686, + "id": 16470, "properties": { "east": "none", "north": "none", @@ -159565,7 +174802,7 @@ } }, { - "id": 14687, + "id": 16471, "properties": { "east": "none", "north": "none", @@ -159576,7 +174813,7 @@ } }, { - "id": 14688, + "id": 16472, "properties": { "east": "none", "north": "none", @@ -159587,7 +174824,7 @@ } }, { - "id": 14689, + "id": 16473, "properties": { "east": "none", "north": "none", @@ -159598,7 +174835,7 @@ } }, { - "id": 14690, + "id": 16474, "properties": { "east": "none", "north": "none", @@ -159609,7 +174846,7 @@ } }, { - "id": 14691, + "id": 16475, "properties": { "east": "none", "north": "none", @@ -159620,7 +174857,7 @@ } }, { - "id": 14692, + "id": 16476, "properties": { "east": "none", "north": "none", @@ -159631,7 +174868,7 @@ } }, { - "id": 14693, + "id": 16477, "properties": { "east": "none", "north": "none", @@ -159642,7 +174879,7 @@ } }, { - "id": 14694, + "id": 16478, "properties": { "east": "none", "north": "none", @@ -159653,7 +174890,7 @@ } }, { - "id": 14695, + "id": 16479, "properties": { "east": "none", "north": "none", @@ -159664,7 +174901,7 @@ } }, { - "id": 14696, + "id": 16480, "properties": { "east": "none", "north": "none", @@ -159675,7 +174912,7 @@ } }, { - "id": 14697, + "id": 16481, "properties": { "east": "none", "north": "none", @@ -159686,7 +174923,7 @@ } }, { - "id": 14698, + "id": 16482, "properties": { "east": "none", "north": "none", @@ -159697,7 +174934,7 @@ } }, { - "id": 14699, + "id": 16483, "properties": { "east": "none", "north": "none", @@ -159708,7 +174945,7 @@ } }, { - "id": 14700, + "id": 16484, "properties": { "east": "none", "north": "low", @@ -159719,7 +174956,7 @@ } }, { - "id": 14701, + "id": 16485, "properties": { "east": "none", "north": "low", @@ -159730,7 +174967,7 @@ } }, { - "id": 14702, + "id": 16486, "properties": { "east": "none", "north": "low", @@ -159741,7 +174978,7 @@ } }, { - "id": 14703, + "id": 16487, "properties": { "east": "none", "north": "low", @@ -159752,7 +174989,7 @@ } }, { - "id": 14704, + "id": 16488, "properties": { "east": "none", "north": "low", @@ -159763,7 +175000,7 @@ } }, { - "id": 14705, + "id": 16489, "properties": { "east": "none", "north": "low", @@ -159774,7 +175011,7 @@ } }, { - "id": 14706, + "id": 16490, "properties": { "east": "none", "north": "low", @@ -159785,7 +175022,7 @@ } }, { - "id": 14707, + "id": 16491, "properties": { "east": "none", "north": "low", @@ -159796,7 +175033,7 @@ } }, { - "id": 14708, + "id": 16492, "properties": { "east": "none", "north": "low", @@ -159807,7 +175044,7 @@ } }, { - "id": 14709, + "id": 16493, "properties": { "east": "none", "north": "low", @@ -159818,7 +175055,7 @@ } }, { - "id": 14710, + "id": 16494, "properties": { "east": "none", "north": "low", @@ -159829,7 +175066,7 @@ } }, { - "id": 14711, + "id": 16495, "properties": { "east": "none", "north": "low", @@ -159840,7 +175077,7 @@ } }, { - "id": 14712, + "id": 16496, "properties": { "east": "none", "north": "low", @@ -159851,7 +175088,7 @@ } }, { - "id": 14713, + "id": 16497, "properties": { "east": "none", "north": "low", @@ -159862,7 +175099,7 @@ } }, { - "id": 14714, + "id": 16498, "properties": { "east": "none", "north": "low", @@ -159873,7 +175110,7 @@ } }, { - "id": 14715, + "id": 16499, "properties": { "east": "none", "north": "low", @@ -159884,7 +175121,7 @@ } }, { - "id": 14716, + "id": 16500, "properties": { "east": "none", "north": "low", @@ -159895,7 +175132,7 @@ } }, { - "id": 14717, + "id": 16501, "properties": { "east": "none", "north": "low", @@ -159906,7 +175143,7 @@ } }, { - "id": 14718, + "id": 16502, "properties": { "east": "none", "north": "low", @@ -159917,7 +175154,7 @@ } }, { - "id": 14719, + "id": 16503, "properties": { "east": "none", "north": "low", @@ -159928,7 +175165,7 @@ } }, { - "id": 14720, + "id": 16504, "properties": { "east": "none", "north": "low", @@ -159939,7 +175176,7 @@ } }, { - "id": 14721, + "id": 16505, "properties": { "east": "none", "north": "low", @@ -159950,7 +175187,7 @@ } }, { - "id": 14722, + "id": 16506, "properties": { "east": "none", "north": "low", @@ -159961,7 +175198,7 @@ } }, { - "id": 14723, + "id": 16507, "properties": { "east": "none", "north": "low", @@ -159972,7 +175209,7 @@ } }, { - "id": 14724, + "id": 16508, "properties": { "east": "none", "north": "low", @@ -159983,7 +175220,7 @@ } }, { - "id": 14725, + "id": 16509, "properties": { "east": "none", "north": "low", @@ -159994,7 +175231,7 @@ } }, { - "id": 14726, + "id": 16510, "properties": { "east": "none", "north": "low", @@ -160005,7 +175242,7 @@ } }, { - "id": 14727, + "id": 16511, "properties": { "east": "none", "north": "low", @@ -160016,7 +175253,7 @@ } }, { - "id": 14728, + "id": 16512, "properties": { "east": "none", "north": "low", @@ -160027,7 +175264,7 @@ } }, { - "id": 14729, + "id": 16513, "properties": { "east": "none", "north": "low", @@ -160038,7 +175275,7 @@ } }, { - "id": 14730, + "id": 16514, "properties": { "east": "none", "north": "low", @@ -160049,7 +175286,7 @@ } }, { - "id": 14731, + "id": 16515, "properties": { "east": "none", "north": "low", @@ -160060,7 +175297,7 @@ } }, { - "id": 14732, + "id": 16516, "properties": { "east": "none", "north": "low", @@ -160071,7 +175308,7 @@ } }, { - "id": 14733, + "id": 16517, "properties": { "east": "none", "north": "low", @@ -160082,7 +175319,7 @@ } }, { - "id": 14734, + "id": 16518, "properties": { "east": "none", "north": "low", @@ -160093,7 +175330,7 @@ } }, { - "id": 14735, + "id": 16519, "properties": { "east": "none", "north": "low", @@ -160104,7 +175341,7 @@ } }, { - "id": 14736, + "id": 16520, "properties": { "east": "none", "north": "tall", @@ -160115,7 +175352,7 @@ } }, { - "id": 14737, + "id": 16521, "properties": { "east": "none", "north": "tall", @@ -160126,7 +175363,7 @@ } }, { - "id": 14738, + "id": 16522, "properties": { "east": "none", "north": "tall", @@ -160137,7 +175374,7 @@ } }, { - "id": 14739, + "id": 16523, "properties": { "east": "none", "north": "tall", @@ -160148,7 +175385,7 @@ } }, { - "id": 14740, + "id": 16524, "properties": { "east": "none", "north": "tall", @@ -160159,7 +175396,7 @@ } }, { - "id": 14741, + "id": 16525, "properties": { "east": "none", "north": "tall", @@ -160170,7 +175407,7 @@ } }, { - "id": 14742, + "id": 16526, "properties": { "east": "none", "north": "tall", @@ -160181,7 +175418,7 @@ } }, { - "id": 14743, + "id": 16527, "properties": { "east": "none", "north": "tall", @@ -160192,7 +175429,7 @@ } }, { - "id": 14744, + "id": 16528, "properties": { "east": "none", "north": "tall", @@ -160203,7 +175440,7 @@ } }, { - "id": 14745, + "id": 16529, "properties": { "east": "none", "north": "tall", @@ -160214,7 +175451,7 @@ } }, { - "id": 14746, + "id": 16530, "properties": { "east": "none", "north": "tall", @@ -160225,7 +175462,7 @@ } }, { - "id": 14747, + "id": 16531, "properties": { "east": "none", "north": "tall", @@ -160236,7 +175473,7 @@ } }, { - "id": 14748, + "id": 16532, "properties": { "east": "none", "north": "tall", @@ -160247,7 +175484,7 @@ } }, { - "id": 14749, + "id": 16533, "properties": { "east": "none", "north": "tall", @@ -160258,7 +175495,7 @@ } }, { - "id": 14750, + "id": 16534, "properties": { "east": "none", "north": "tall", @@ -160269,7 +175506,7 @@ } }, { - "id": 14751, + "id": 16535, "properties": { "east": "none", "north": "tall", @@ -160280,7 +175517,7 @@ } }, { - "id": 14752, + "id": 16536, "properties": { "east": "none", "north": "tall", @@ -160291,7 +175528,7 @@ } }, { - "id": 14753, + "id": 16537, "properties": { "east": "none", "north": "tall", @@ -160302,7 +175539,7 @@ } }, { - "id": 14754, + "id": 16538, "properties": { "east": "none", "north": "tall", @@ -160313,7 +175550,7 @@ } }, { - "id": 14755, + "id": 16539, "properties": { "east": "none", "north": "tall", @@ -160324,7 +175561,7 @@ } }, { - "id": 14756, + "id": 16540, "properties": { "east": "none", "north": "tall", @@ -160335,7 +175572,7 @@ } }, { - "id": 14757, + "id": 16541, "properties": { "east": "none", "north": "tall", @@ -160346,7 +175583,7 @@ } }, { - "id": 14758, + "id": 16542, "properties": { "east": "none", "north": "tall", @@ -160357,7 +175594,7 @@ } }, { - "id": 14759, + "id": 16543, "properties": { "east": "none", "north": "tall", @@ -160368,7 +175605,7 @@ } }, { - "id": 14760, + "id": 16544, "properties": { "east": "none", "north": "tall", @@ -160379,7 +175616,7 @@ } }, { - "id": 14761, + "id": 16545, "properties": { "east": "none", "north": "tall", @@ -160390,7 +175627,7 @@ } }, { - "id": 14762, + "id": 16546, "properties": { "east": "none", "north": "tall", @@ -160401,7 +175638,7 @@ } }, { - "id": 14763, + "id": 16547, "properties": { "east": "none", "north": "tall", @@ -160412,7 +175649,7 @@ } }, { - "id": 14764, + "id": 16548, "properties": { "east": "none", "north": "tall", @@ -160423,7 +175660,7 @@ } }, { - "id": 14765, + "id": 16549, "properties": { "east": "none", "north": "tall", @@ -160434,7 +175671,7 @@ } }, { - "id": 14766, + "id": 16550, "properties": { "east": "none", "north": "tall", @@ -160445,7 +175682,7 @@ } }, { - "id": 14767, + "id": 16551, "properties": { "east": "none", "north": "tall", @@ -160456,7 +175693,7 @@ } }, { - "id": 14768, + "id": 16552, "properties": { "east": "none", "north": "tall", @@ -160467,7 +175704,7 @@ } }, { - "id": 14769, + "id": 16553, "properties": { "east": "none", "north": "tall", @@ -160478,7 +175715,7 @@ } }, { - "id": 14770, + "id": 16554, "properties": { "east": "none", "north": "tall", @@ -160489,7 +175726,7 @@ } }, { - "id": 14771, + "id": 16555, "properties": { "east": "none", "north": "tall", @@ -160500,7 +175737,7 @@ } }, { - "id": 14772, + "id": 16556, "properties": { "east": "low", "north": "none", @@ -160511,7 +175748,7 @@ } }, { - "id": 14773, + "id": 16557, "properties": { "east": "low", "north": "none", @@ -160522,7 +175759,7 @@ } }, { - "id": 14774, + "id": 16558, "properties": { "east": "low", "north": "none", @@ -160533,7 +175770,7 @@ } }, { - "id": 14775, + "id": 16559, "properties": { "east": "low", "north": "none", @@ -160544,7 +175781,7 @@ } }, { - "id": 14776, + "id": 16560, "properties": { "east": "low", "north": "none", @@ -160555,7 +175792,7 @@ } }, { - "id": 14777, + "id": 16561, "properties": { "east": "low", "north": "none", @@ -160566,7 +175803,7 @@ } }, { - "id": 14778, + "id": 16562, "properties": { "east": "low", "north": "none", @@ -160577,7 +175814,7 @@ } }, { - "id": 14779, + "id": 16563, "properties": { "east": "low", "north": "none", @@ -160588,7 +175825,7 @@ } }, { - "id": 14780, + "id": 16564, "properties": { "east": "low", "north": "none", @@ -160599,7 +175836,7 @@ } }, { - "id": 14781, + "id": 16565, "properties": { "east": "low", "north": "none", @@ -160610,7 +175847,7 @@ } }, { - "id": 14782, + "id": 16566, "properties": { "east": "low", "north": "none", @@ -160621,7 +175858,7 @@ } }, { - "id": 14783, + "id": 16567, "properties": { "east": "low", "north": "none", @@ -160632,7 +175869,7 @@ } }, { - "id": 14784, + "id": 16568, "properties": { "east": "low", "north": "none", @@ -160643,7 +175880,7 @@ } }, { - "id": 14785, + "id": 16569, "properties": { "east": "low", "north": "none", @@ -160654,7 +175891,7 @@ } }, { - "id": 14786, + "id": 16570, "properties": { "east": "low", "north": "none", @@ -160665,7 +175902,7 @@ } }, { - "id": 14787, + "id": 16571, "properties": { "east": "low", "north": "none", @@ -160676,7 +175913,7 @@ } }, { - "id": 14788, + "id": 16572, "properties": { "east": "low", "north": "none", @@ -160687,7 +175924,7 @@ } }, { - "id": 14789, + "id": 16573, "properties": { "east": "low", "north": "none", @@ -160698,7 +175935,7 @@ } }, { - "id": 14790, + "id": 16574, "properties": { "east": "low", "north": "none", @@ -160709,7 +175946,7 @@ } }, { - "id": 14791, + "id": 16575, "properties": { "east": "low", "north": "none", @@ -160720,7 +175957,7 @@ } }, { - "id": 14792, + "id": 16576, "properties": { "east": "low", "north": "none", @@ -160731,7 +175968,7 @@ } }, { - "id": 14793, + "id": 16577, "properties": { "east": "low", "north": "none", @@ -160742,7 +175979,7 @@ } }, { - "id": 14794, + "id": 16578, "properties": { "east": "low", "north": "none", @@ -160753,7 +175990,7 @@ } }, { - "id": 14795, + "id": 16579, "properties": { "east": "low", "north": "none", @@ -160764,7 +176001,7 @@ } }, { - "id": 14796, + "id": 16580, "properties": { "east": "low", "north": "none", @@ -160775,7 +176012,7 @@ } }, { - "id": 14797, + "id": 16581, "properties": { "east": "low", "north": "none", @@ -160786,7 +176023,7 @@ } }, { - "id": 14798, + "id": 16582, "properties": { "east": "low", "north": "none", @@ -160797,7 +176034,7 @@ } }, { - "id": 14799, + "id": 16583, "properties": { "east": "low", "north": "none", @@ -160808,7 +176045,7 @@ } }, { - "id": 14800, + "id": 16584, "properties": { "east": "low", "north": "none", @@ -160819,7 +176056,7 @@ } }, { - "id": 14801, + "id": 16585, "properties": { "east": "low", "north": "none", @@ -160830,7 +176067,7 @@ } }, { - "id": 14802, + "id": 16586, "properties": { "east": "low", "north": "none", @@ -160841,7 +176078,7 @@ } }, { - "id": 14803, + "id": 16587, "properties": { "east": "low", "north": "none", @@ -160852,7 +176089,7 @@ } }, { - "id": 14804, + "id": 16588, "properties": { "east": "low", "north": "none", @@ -160863,7 +176100,7 @@ } }, { - "id": 14805, + "id": 16589, "properties": { "east": "low", "north": "none", @@ -160874,7 +176111,7 @@ } }, { - "id": 14806, + "id": 16590, "properties": { "east": "low", "north": "none", @@ -160885,7 +176122,7 @@ } }, { - "id": 14807, + "id": 16591, "properties": { "east": "low", "north": "none", @@ -160896,7 +176133,7 @@ } }, { - "id": 14808, + "id": 16592, "properties": { "east": "low", "north": "low", @@ -160907,7 +176144,7 @@ } }, { - "id": 14809, + "id": 16593, "properties": { "east": "low", "north": "low", @@ -160918,7 +176155,7 @@ } }, { - "id": 14810, + "id": 16594, "properties": { "east": "low", "north": "low", @@ -160929,7 +176166,7 @@ } }, { - "id": 14811, + "id": 16595, "properties": { "east": "low", "north": "low", @@ -160940,7 +176177,7 @@ } }, { - "id": 14812, + "id": 16596, "properties": { "east": "low", "north": "low", @@ -160951,7 +176188,7 @@ } }, { - "id": 14813, + "id": 16597, "properties": { "east": "low", "north": "low", @@ -160962,7 +176199,7 @@ } }, { - "id": 14814, + "id": 16598, "properties": { "east": "low", "north": "low", @@ -160973,7 +176210,7 @@ } }, { - "id": 14815, + "id": 16599, "properties": { "east": "low", "north": "low", @@ -160984,7 +176221,7 @@ } }, { - "id": 14816, + "id": 16600, "properties": { "east": "low", "north": "low", @@ -160995,7 +176232,7 @@ } }, { - "id": 14817, + "id": 16601, "properties": { "east": "low", "north": "low", @@ -161006,7 +176243,7 @@ } }, { - "id": 14818, + "id": 16602, "properties": { "east": "low", "north": "low", @@ -161017,7 +176254,7 @@ } }, { - "id": 14819, + "id": 16603, "properties": { "east": "low", "north": "low", @@ -161028,7 +176265,7 @@ } }, { - "id": 14820, + "id": 16604, "properties": { "east": "low", "north": "low", @@ -161039,7 +176276,7 @@ } }, { - "id": 14821, + "id": 16605, "properties": { "east": "low", "north": "low", @@ -161050,7 +176287,7 @@ } }, { - "id": 14822, + "id": 16606, "properties": { "east": "low", "north": "low", @@ -161061,7 +176298,7 @@ } }, { - "id": 14823, + "id": 16607, "properties": { "east": "low", "north": "low", @@ -161072,7 +176309,7 @@ } }, { - "id": 14824, + "id": 16608, "properties": { "east": "low", "north": "low", @@ -161083,7 +176320,7 @@ } }, { - "id": 14825, + "id": 16609, "properties": { "east": "low", "north": "low", @@ -161094,7 +176331,7 @@ } }, { - "id": 14826, + "id": 16610, "properties": { "east": "low", "north": "low", @@ -161105,7 +176342,7 @@ } }, { - "id": 14827, + "id": 16611, "properties": { "east": "low", "north": "low", @@ -161116,7 +176353,7 @@ } }, { - "id": 14828, + "id": 16612, "properties": { "east": "low", "north": "low", @@ -161127,7 +176364,7 @@ } }, { - "id": 14829, + "id": 16613, "properties": { "east": "low", "north": "low", @@ -161138,7 +176375,7 @@ } }, { - "id": 14830, + "id": 16614, "properties": { "east": "low", "north": "low", @@ -161149,7 +176386,7 @@ } }, { - "id": 14831, + "id": 16615, "properties": { "east": "low", "north": "low", @@ -161160,7 +176397,7 @@ } }, { - "id": 14832, + "id": 16616, "properties": { "east": "low", "north": "low", @@ -161171,7 +176408,7 @@ } }, { - "id": 14833, + "id": 16617, "properties": { "east": "low", "north": "low", @@ -161182,7 +176419,7 @@ } }, { - "id": 14834, + "id": 16618, "properties": { "east": "low", "north": "low", @@ -161193,7 +176430,7 @@ } }, { - "id": 14835, + "id": 16619, "properties": { "east": "low", "north": "low", @@ -161204,7 +176441,7 @@ } }, { - "id": 14836, + "id": 16620, "properties": { "east": "low", "north": "low", @@ -161215,7 +176452,7 @@ } }, { - "id": 14837, + "id": 16621, "properties": { "east": "low", "north": "low", @@ -161226,7 +176463,7 @@ } }, { - "id": 14838, + "id": 16622, "properties": { "east": "low", "north": "low", @@ -161237,7 +176474,7 @@ } }, { - "id": 14839, + "id": 16623, "properties": { "east": "low", "north": "low", @@ -161248,7 +176485,7 @@ } }, { - "id": 14840, + "id": 16624, "properties": { "east": "low", "north": "low", @@ -161259,7 +176496,7 @@ } }, { - "id": 14841, + "id": 16625, "properties": { "east": "low", "north": "low", @@ -161270,7 +176507,7 @@ } }, { - "id": 14842, + "id": 16626, "properties": { "east": "low", "north": "low", @@ -161281,7 +176518,7 @@ } }, { - "id": 14843, + "id": 16627, "properties": { "east": "low", "north": "low", @@ -161292,7 +176529,7 @@ } }, { - "id": 14844, + "id": 16628, "properties": { "east": "low", "north": "tall", @@ -161303,7 +176540,7 @@ } }, { - "id": 14845, + "id": 16629, "properties": { "east": "low", "north": "tall", @@ -161314,7 +176551,7 @@ } }, { - "id": 14846, + "id": 16630, "properties": { "east": "low", "north": "tall", @@ -161325,7 +176562,7 @@ } }, { - "id": 14847, + "id": 16631, "properties": { "east": "low", "north": "tall", @@ -161336,7 +176573,7 @@ } }, { - "id": 14848, + "id": 16632, "properties": { "east": "low", "north": "tall", @@ -161347,7 +176584,7 @@ } }, { - "id": 14849, + "id": 16633, "properties": { "east": "low", "north": "tall", @@ -161358,7 +176595,7 @@ } }, { - "id": 14850, + "id": 16634, "properties": { "east": "low", "north": "tall", @@ -161369,7 +176606,7 @@ } }, { - "id": 14851, + "id": 16635, "properties": { "east": "low", "north": "tall", @@ -161380,7 +176617,7 @@ } }, { - "id": 14852, + "id": 16636, "properties": { "east": "low", "north": "tall", @@ -161391,7 +176628,7 @@ } }, { - "id": 14853, + "id": 16637, "properties": { "east": "low", "north": "tall", @@ -161402,7 +176639,7 @@ } }, { - "id": 14854, + "id": 16638, "properties": { "east": "low", "north": "tall", @@ -161413,7 +176650,7 @@ } }, { - "id": 14855, + "id": 16639, "properties": { "east": "low", "north": "tall", @@ -161424,7 +176661,7 @@ } }, { - "id": 14856, + "id": 16640, "properties": { "east": "low", "north": "tall", @@ -161435,7 +176672,7 @@ } }, { - "id": 14857, + "id": 16641, "properties": { "east": "low", "north": "tall", @@ -161446,7 +176683,7 @@ } }, { - "id": 14858, + "id": 16642, "properties": { "east": "low", "north": "tall", @@ -161457,7 +176694,7 @@ } }, { - "id": 14859, + "id": 16643, "properties": { "east": "low", "north": "tall", @@ -161468,7 +176705,7 @@ } }, { - "id": 14860, + "id": 16644, "properties": { "east": "low", "north": "tall", @@ -161479,7 +176716,7 @@ } }, { - "id": 14861, + "id": 16645, "properties": { "east": "low", "north": "tall", @@ -161490,7 +176727,7 @@ } }, { - "id": 14862, + "id": 16646, "properties": { "east": "low", "north": "tall", @@ -161501,7 +176738,7 @@ } }, { - "id": 14863, + "id": 16647, "properties": { "east": "low", "north": "tall", @@ -161512,7 +176749,7 @@ } }, { - "id": 14864, + "id": 16648, "properties": { "east": "low", "north": "tall", @@ -161523,7 +176760,7 @@ } }, { - "id": 14865, + "id": 16649, "properties": { "east": "low", "north": "tall", @@ -161534,7 +176771,7 @@ } }, { - "id": 14866, + "id": 16650, "properties": { "east": "low", "north": "tall", @@ -161545,7 +176782,7 @@ } }, { - "id": 14867, + "id": 16651, "properties": { "east": "low", "north": "tall", @@ -161556,7 +176793,7 @@ } }, { - "id": 14868, + "id": 16652, "properties": { "east": "low", "north": "tall", @@ -161567,7 +176804,7 @@ } }, { - "id": 14869, + "id": 16653, "properties": { "east": "low", "north": "tall", @@ -161578,7 +176815,7 @@ } }, { - "id": 14870, + "id": 16654, "properties": { "east": "low", "north": "tall", @@ -161589,7 +176826,7 @@ } }, { - "id": 14871, + "id": 16655, "properties": { "east": "low", "north": "tall", @@ -161600,7 +176837,7 @@ } }, { - "id": 14872, + "id": 16656, "properties": { "east": "low", "north": "tall", @@ -161611,7 +176848,7 @@ } }, { - "id": 14873, + "id": 16657, "properties": { "east": "low", "north": "tall", @@ -161622,7 +176859,7 @@ } }, { - "id": 14874, + "id": 16658, "properties": { "east": "low", "north": "tall", @@ -161633,7 +176870,7 @@ } }, { - "id": 14875, + "id": 16659, "properties": { "east": "low", "north": "tall", @@ -161644,7 +176881,7 @@ } }, { - "id": 14876, + "id": 16660, "properties": { "east": "low", "north": "tall", @@ -161655,7 +176892,7 @@ } }, { - "id": 14877, + "id": 16661, "properties": { "east": "low", "north": "tall", @@ -161666,7 +176903,7 @@ } }, { - "id": 14878, + "id": 16662, "properties": { "east": "low", "north": "tall", @@ -161677,7 +176914,7 @@ } }, { - "id": 14879, + "id": 16663, "properties": { "east": "low", "north": "tall", @@ -161688,7 +176925,7 @@ } }, { - "id": 14880, + "id": 16664, "properties": { "east": "tall", "north": "none", @@ -161699,7 +176936,7 @@ } }, { - "id": 14881, + "id": 16665, "properties": { "east": "tall", "north": "none", @@ -161710,7 +176947,7 @@ } }, { - "id": 14882, + "id": 16666, "properties": { "east": "tall", "north": "none", @@ -161721,7 +176958,7 @@ } }, { - "id": 14883, + "id": 16667, "properties": { "east": "tall", "north": "none", @@ -161732,7 +176969,7 @@ } }, { - "id": 14884, + "id": 16668, "properties": { "east": "tall", "north": "none", @@ -161743,7 +176980,7 @@ } }, { - "id": 14885, + "id": 16669, "properties": { "east": "tall", "north": "none", @@ -161754,7 +176991,7 @@ } }, { - "id": 14886, + "id": 16670, "properties": { "east": "tall", "north": "none", @@ -161765,7 +177002,7 @@ } }, { - "id": 14887, + "id": 16671, "properties": { "east": "tall", "north": "none", @@ -161776,7 +177013,7 @@ } }, { - "id": 14888, + "id": 16672, "properties": { "east": "tall", "north": "none", @@ -161787,7 +177024,7 @@ } }, { - "id": 14889, + "id": 16673, "properties": { "east": "tall", "north": "none", @@ -161798,7 +177035,7 @@ } }, { - "id": 14890, + "id": 16674, "properties": { "east": "tall", "north": "none", @@ -161809,7 +177046,7 @@ } }, { - "id": 14891, + "id": 16675, "properties": { "east": "tall", "north": "none", @@ -161820,7 +177057,7 @@ } }, { - "id": 14892, + "id": 16676, "properties": { "east": "tall", "north": "none", @@ -161831,7 +177068,7 @@ } }, { - "id": 14893, + "id": 16677, "properties": { "east": "tall", "north": "none", @@ -161842,7 +177079,7 @@ } }, { - "id": 14894, + "id": 16678, "properties": { "east": "tall", "north": "none", @@ -161853,7 +177090,7 @@ } }, { - "id": 14895, + "id": 16679, "properties": { "east": "tall", "north": "none", @@ -161864,7 +177101,7 @@ } }, { - "id": 14896, + "id": 16680, "properties": { "east": "tall", "north": "none", @@ -161875,7 +177112,7 @@ } }, { - "id": 14897, + "id": 16681, "properties": { "east": "tall", "north": "none", @@ -161886,7 +177123,7 @@ } }, { - "id": 14898, + "id": 16682, "properties": { "east": "tall", "north": "none", @@ -161897,7 +177134,7 @@ } }, { - "id": 14899, + "id": 16683, "properties": { "east": "tall", "north": "none", @@ -161908,7 +177145,7 @@ } }, { - "id": 14900, + "id": 16684, "properties": { "east": "tall", "north": "none", @@ -161919,7 +177156,7 @@ } }, { - "id": 14901, + "id": 16685, "properties": { "east": "tall", "north": "none", @@ -161930,7 +177167,7 @@ } }, { - "id": 14902, + "id": 16686, "properties": { "east": "tall", "north": "none", @@ -161941,7 +177178,7 @@ } }, { - "id": 14903, + "id": 16687, "properties": { "east": "tall", "north": "none", @@ -161952,7 +177189,7 @@ } }, { - "id": 14904, + "id": 16688, "properties": { "east": "tall", "north": "none", @@ -161963,7 +177200,7 @@ } }, { - "id": 14905, + "id": 16689, "properties": { "east": "tall", "north": "none", @@ -161974,7 +177211,7 @@ } }, { - "id": 14906, + "id": 16690, "properties": { "east": "tall", "north": "none", @@ -161985,7 +177222,7 @@ } }, { - "id": 14907, + "id": 16691, "properties": { "east": "tall", "north": "none", @@ -161996,7 +177233,7 @@ } }, { - "id": 14908, + "id": 16692, "properties": { "east": "tall", "north": "none", @@ -162007,7 +177244,7 @@ } }, { - "id": 14909, + "id": 16693, "properties": { "east": "tall", "north": "none", @@ -162018,7 +177255,7 @@ } }, { - "id": 14910, + "id": 16694, "properties": { "east": "tall", "north": "none", @@ -162029,7 +177266,7 @@ } }, { - "id": 14911, + "id": 16695, "properties": { "east": "tall", "north": "none", @@ -162040,7 +177277,7 @@ } }, { - "id": 14912, + "id": 16696, "properties": { "east": "tall", "north": "none", @@ -162051,7 +177288,7 @@ } }, { - "id": 14913, + "id": 16697, "properties": { "east": "tall", "north": "none", @@ -162062,7 +177299,7 @@ } }, { - "id": 14914, + "id": 16698, "properties": { "east": "tall", "north": "none", @@ -162073,7 +177310,7 @@ } }, { - "id": 14915, + "id": 16699, "properties": { "east": "tall", "north": "none", @@ -162084,7 +177321,7 @@ } }, { - "id": 14916, + "id": 16700, "properties": { "east": "tall", "north": "low", @@ -162095,7 +177332,7 @@ } }, { - "id": 14917, + "id": 16701, "properties": { "east": "tall", "north": "low", @@ -162106,7 +177343,7 @@ } }, { - "id": 14918, + "id": 16702, "properties": { "east": "tall", "north": "low", @@ -162117,7 +177354,7 @@ } }, { - "id": 14919, + "id": 16703, "properties": { "east": "tall", "north": "low", @@ -162128,7 +177365,7 @@ } }, { - "id": 14920, + "id": 16704, "properties": { "east": "tall", "north": "low", @@ -162139,7 +177376,7 @@ } }, { - "id": 14921, + "id": 16705, "properties": { "east": "tall", "north": "low", @@ -162150,7 +177387,7 @@ } }, { - "id": 14922, + "id": 16706, "properties": { "east": "tall", "north": "low", @@ -162161,7 +177398,7 @@ } }, { - "id": 14923, + "id": 16707, "properties": { "east": "tall", "north": "low", @@ -162172,7 +177409,7 @@ } }, { - "id": 14924, + "id": 16708, "properties": { "east": "tall", "north": "low", @@ -162183,7 +177420,7 @@ } }, { - "id": 14925, + "id": 16709, "properties": { "east": "tall", "north": "low", @@ -162194,7 +177431,7 @@ } }, { - "id": 14926, + "id": 16710, "properties": { "east": "tall", "north": "low", @@ -162205,7 +177442,7 @@ } }, { - "id": 14927, + "id": 16711, "properties": { "east": "tall", "north": "low", @@ -162216,7 +177453,7 @@ } }, { - "id": 14928, + "id": 16712, "properties": { "east": "tall", "north": "low", @@ -162227,7 +177464,7 @@ } }, { - "id": 14929, + "id": 16713, "properties": { "east": "tall", "north": "low", @@ -162238,7 +177475,7 @@ } }, { - "id": 14930, + "id": 16714, "properties": { "east": "tall", "north": "low", @@ -162249,7 +177486,7 @@ } }, { - "id": 14931, + "id": 16715, "properties": { "east": "tall", "north": "low", @@ -162260,7 +177497,7 @@ } }, { - "id": 14932, + "id": 16716, "properties": { "east": "tall", "north": "low", @@ -162271,7 +177508,7 @@ } }, { - "id": 14933, + "id": 16717, "properties": { "east": "tall", "north": "low", @@ -162282,7 +177519,7 @@ } }, { - "id": 14934, + "id": 16718, "properties": { "east": "tall", "north": "low", @@ -162293,7 +177530,7 @@ } }, { - "id": 14935, + "id": 16719, "properties": { "east": "tall", "north": "low", @@ -162304,7 +177541,7 @@ } }, { - "id": 14936, + "id": 16720, "properties": { "east": "tall", "north": "low", @@ -162315,7 +177552,7 @@ } }, { - "id": 14937, + "id": 16721, "properties": { "east": "tall", "north": "low", @@ -162326,7 +177563,7 @@ } }, { - "id": 14938, + "id": 16722, "properties": { "east": "tall", "north": "low", @@ -162337,7 +177574,7 @@ } }, { - "id": 14939, + "id": 16723, "properties": { "east": "tall", "north": "low", @@ -162348,7 +177585,7 @@ } }, { - "id": 14940, + "id": 16724, "properties": { "east": "tall", "north": "low", @@ -162359,7 +177596,7 @@ } }, { - "id": 14941, + "id": 16725, "properties": { "east": "tall", "north": "low", @@ -162370,7 +177607,7 @@ } }, { - "id": 14942, + "id": 16726, "properties": { "east": "tall", "north": "low", @@ -162381,7 +177618,7 @@ } }, { - "id": 14943, + "id": 16727, "properties": { "east": "tall", "north": "low", @@ -162392,7 +177629,7 @@ } }, { - "id": 14944, + "id": 16728, "properties": { "east": "tall", "north": "low", @@ -162403,7 +177640,7 @@ } }, { - "id": 14945, + "id": 16729, "properties": { "east": "tall", "north": "low", @@ -162414,7 +177651,7 @@ } }, { - "id": 14946, + "id": 16730, "properties": { "east": "tall", "north": "low", @@ -162425,7 +177662,7 @@ } }, { - "id": 14947, + "id": 16731, "properties": { "east": "tall", "north": "low", @@ -162436,7 +177673,7 @@ } }, { - "id": 14948, + "id": 16732, "properties": { "east": "tall", "north": "low", @@ -162447,7 +177684,7 @@ } }, { - "id": 14949, + "id": 16733, "properties": { "east": "tall", "north": "low", @@ -162458,7 +177695,7 @@ } }, { - "id": 14950, + "id": 16734, "properties": { "east": "tall", "north": "low", @@ -162469,7 +177706,7 @@ } }, { - "id": 14951, + "id": 16735, "properties": { "east": "tall", "north": "low", @@ -162480,7 +177717,7 @@ } }, { - "id": 14952, + "id": 16736, "properties": { "east": "tall", "north": "tall", @@ -162491,7 +177728,7 @@ } }, { - "id": 14953, + "id": 16737, "properties": { "east": "tall", "north": "tall", @@ -162502,7 +177739,7 @@ } }, { - "id": 14954, + "id": 16738, "properties": { "east": "tall", "north": "tall", @@ -162513,7 +177750,7 @@ } }, { - "id": 14955, + "id": 16739, "properties": { "east": "tall", "north": "tall", @@ -162524,7 +177761,7 @@ } }, { - "id": 14956, + "id": 16740, "properties": { "east": "tall", "north": "tall", @@ -162535,7 +177772,7 @@ } }, { - "id": 14957, + "id": 16741, "properties": { "east": "tall", "north": "tall", @@ -162546,7 +177783,7 @@ } }, { - "id": 14958, + "id": 16742, "properties": { "east": "tall", "north": "tall", @@ -162557,7 +177794,7 @@ } }, { - "id": 14959, + "id": 16743, "properties": { "east": "tall", "north": "tall", @@ -162568,7 +177805,7 @@ } }, { - "id": 14960, + "id": 16744, "properties": { "east": "tall", "north": "tall", @@ -162579,7 +177816,7 @@ } }, { - "id": 14961, + "id": 16745, "properties": { "east": "tall", "north": "tall", @@ -162590,7 +177827,7 @@ } }, { - "id": 14962, + "id": 16746, "properties": { "east": "tall", "north": "tall", @@ -162601,7 +177838,7 @@ } }, { - "id": 14963, + "id": 16747, "properties": { "east": "tall", "north": "tall", @@ -162612,7 +177849,7 @@ } }, { - "id": 14964, + "id": 16748, "properties": { "east": "tall", "north": "tall", @@ -162623,7 +177860,7 @@ } }, { - "id": 14965, + "id": 16749, "properties": { "east": "tall", "north": "tall", @@ -162634,7 +177871,7 @@ } }, { - "id": 14966, + "id": 16750, "properties": { "east": "tall", "north": "tall", @@ -162645,7 +177882,7 @@ } }, { - "id": 14967, + "id": 16751, "properties": { "east": "tall", "north": "tall", @@ -162656,7 +177893,7 @@ } }, { - "id": 14968, + "id": 16752, "properties": { "east": "tall", "north": "tall", @@ -162667,7 +177904,7 @@ } }, { - "id": 14969, + "id": 16753, "properties": { "east": "tall", "north": "tall", @@ -162678,7 +177915,7 @@ } }, { - "id": 14970, + "id": 16754, "properties": { "east": "tall", "north": "tall", @@ -162689,7 +177926,7 @@ } }, { - "id": 14971, + "id": 16755, "properties": { "east": "tall", "north": "tall", @@ -162700,7 +177937,7 @@ } }, { - "id": 14972, + "id": 16756, "properties": { "east": "tall", "north": "tall", @@ -162711,7 +177948,7 @@ } }, { - "id": 14973, + "id": 16757, "properties": { "east": "tall", "north": "tall", @@ -162722,7 +177959,7 @@ } }, { - "id": 14974, + "id": 16758, "properties": { "east": "tall", "north": "tall", @@ -162733,7 +177970,7 @@ } }, { - "id": 14975, + "id": 16759, "properties": { "east": "tall", "north": "tall", @@ -162744,7 +177981,7 @@ } }, { - "id": 14976, + "id": 16760, "properties": { "east": "tall", "north": "tall", @@ -162755,7 +177992,7 @@ } }, { - "id": 14977, + "id": 16761, "properties": { "east": "tall", "north": "tall", @@ -162766,7 +178003,7 @@ } }, { - "id": 14978, + "id": 16762, "properties": { "east": "tall", "north": "tall", @@ -162777,7 +178014,7 @@ } }, { - "id": 14979, + "id": 16763, "properties": { "east": "tall", "north": "tall", @@ -162788,7 +178025,7 @@ } }, { - "id": 14980, + "id": 16764, "properties": { "east": "tall", "north": "tall", @@ -162799,7 +178036,7 @@ } }, { - "id": 14981, + "id": 16765, "properties": { "east": "tall", "north": "tall", @@ -162810,7 +178047,7 @@ } }, { - "id": 14982, + "id": 16766, "properties": { "east": "tall", "north": "tall", @@ -162821,7 +178058,7 @@ } }, { - "id": 14983, + "id": 16767, "properties": { "east": "tall", "north": "tall", @@ -162832,7 +178069,7 @@ } }, { - "id": 14984, + "id": 16768, "properties": { "east": "tall", "north": "tall", @@ -162843,7 +178080,7 @@ } }, { - "id": 14985, + "id": 16769, "properties": { "east": "tall", "north": "tall", @@ -162854,7 +178091,7 @@ } }, { - "id": 14986, + "id": 16770, "properties": { "east": "tall", "north": "tall", @@ -162865,7 +178102,7 @@ } }, { - "id": 14987, + "id": 16771, "properties": { "east": "tall", "north": "tall", @@ -162881,7 +178118,7 @@ "states": [ { "default": true, - "id": 10136 + "id": 11920 } ] }, @@ -162889,7 +178126,7 @@ "states": [ { "default": true, - "id": 108 + "id": 110 } ] }, @@ -162897,7 +178134,7 @@ "states": [ { "default": true, - "id": 8958 + "id": 10602 } ] }, @@ -162915,21 +178152,21 @@ }, "states": [ { - "id": 9149, + "id": 10805, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 9150, + "id": 10806, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 9151, + "id": 10807, "properties": { "type": "bottom", "waterlogged": "true" @@ -162937,21 +178174,21 @@ }, { "default": true, - "id": 9152, + "id": 10808, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 9153, + "id": 10809, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 9154, + "id": 10810, "properties": { "type": "double", "waterlogged": "false" @@ -162985,7 +178222,7 @@ }, "states": [ { - "id": 8961, + "id": 10605, "properties": { "facing": "north", "half": "top", @@ -162994,7 +178231,7 @@ } }, { - "id": 8962, + "id": 10606, "properties": { "facing": "north", "half": "top", @@ -163003,7 +178240,7 @@ } }, { - "id": 8963, + "id": 10607, "properties": { "facing": "north", "half": "top", @@ -163012,7 +178249,7 @@ } }, { - "id": 8964, + "id": 10608, "properties": { "facing": "north", "half": "top", @@ -163021,7 +178258,7 @@ } }, { - "id": 8965, + "id": 10609, "properties": { "facing": "north", "half": "top", @@ -163030,7 +178267,7 @@ } }, { - "id": 8966, + "id": 10610, "properties": { "facing": "north", "half": "top", @@ -163039,7 +178276,7 @@ } }, { - "id": 8967, + "id": 10611, "properties": { "facing": "north", "half": "top", @@ -163048,7 +178285,7 @@ } }, { - "id": 8968, + "id": 10612, "properties": { "facing": "north", "half": "top", @@ -163057,7 +178294,7 @@ } }, { - "id": 8969, + "id": 10613, "properties": { "facing": "north", "half": "top", @@ -163066,7 +178303,7 @@ } }, { - "id": 8970, + "id": 10614, "properties": { "facing": "north", "half": "top", @@ -163075,7 +178312,7 @@ } }, { - "id": 8971, + "id": 10615, "properties": { "facing": "north", "half": "bottom", @@ -163085,7 +178322,7 @@ }, { "default": true, - "id": 8972, + "id": 10616, "properties": { "facing": "north", "half": "bottom", @@ -163094,7 +178331,7 @@ } }, { - "id": 8973, + "id": 10617, "properties": { "facing": "north", "half": "bottom", @@ -163103,7 +178340,7 @@ } }, { - "id": 8974, + "id": 10618, "properties": { "facing": "north", "half": "bottom", @@ -163112,7 +178349,7 @@ } }, { - "id": 8975, + "id": 10619, "properties": { "facing": "north", "half": "bottom", @@ -163121,7 +178358,7 @@ } }, { - "id": 8976, + "id": 10620, "properties": { "facing": "north", "half": "bottom", @@ -163130,7 +178367,7 @@ } }, { - "id": 8977, + "id": 10621, "properties": { "facing": "north", "half": "bottom", @@ -163139,7 +178376,7 @@ } }, { - "id": 8978, + "id": 10622, "properties": { "facing": "north", "half": "bottom", @@ -163148,7 +178385,7 @@ } }, { - "id": 8979, + "id": 10623, "properties": { "facing": "north", "half": "bottom", @@ -163157,7 +178394,7 @@ } }, { - "id": 8980, + "id": 10624, "properties": { "facing": "north", "half": "bottom", @@ -163166,7 +178403,7 @@ } }, { - "id": 8981, + "id": 10625, "properties": { "facing": "south", "half": "top", @@ -163175,7 +178412,7 @@ } }, { - "id": 8982, + "id": 10626, "properties": { "facing": "south", "half": "top", @@ -163184,7 +178421,7 @@ } }, { - "id": 8983, + "id": 10627, "properties": { "facing": "south", "half": "top", @@ -163193,7 +178430,7 @@ } }, { - "id": 8984, + "id": 10628, "properties": { "facing": "south", "half": "top", @@ -163202,7 +178439,7 @@ } }, { - "id": 8985, + "id": 10629, "properties": { "facing": "south", "half": "top", @@ -163211,7 +178448,7 @@ } }, { - "id": 8986, + "id": 10630, "properties": { "facing": "south", "half": "top", @@ -163220,7 +178457,7 @@ } }, { - "id": 8987, + "id": 10631, "properties": { "facing": "south", "half": "top", @@ -163229,7 +178466,7 @@ } }, { - "id": 8988, + "id": 10632, "properties": { "facing": "south", "half": "top", @@ -163238,7 +178475,7 @@ } }, { - "id": 8989, + "id": 10633, "properties": { "facing": "south", "half": "top", @@ -163247,7 +178484,7 @@ } }, { - "id": 8990, + "id": 10634, "properties": { "facing": "south", "half": "top", @@ -163256,7 +178493,7 @@ } }, { - "id": 8991, + "id": 10635, "properties": { "facing": "south", "half": "bottom", @@ -163265,7 +178502,7 @@ } }, { - "id": 8992, + "id": 10636, "properties": { "facing": "south", "half": "bottom", @@ -163274,7 +178511,7 @@ } }, { - "id": 8993, + "id": 10637, "properties": { "facing": "south", "half": "bottom", @@ -163283,7 +178520,7 @@ } }, { - "id": 8994, + "id": 10638, "properties": { "facing": "south", "half": "bottom", @@ -163292,7 +178529,7 @@ } }, { - "id": 8995, + "id": 10639, "properties": { "facing": "south", "half": "bottom", @@ -163301,7 +178538,7 @@ } }, { - "id": 8996, + "id": 10640, "properties": { "facing": "south", "half": "bottom", @@ -163310,7 +178547,7 @@ } }, { - "id": 8997, + "id": 10641, "properties": { "facing": "south", "half": "bottom", @@ -163319,7 +178556,7 @@ } }, { - "id": 8998, + "id": 10642, "properties": { "facing": "south", "half": "bottom", @@ -163328,7 +178565,7 @@ } }, { - "id": 8999, + "id": 10643, "properties": { "facing": "south", "half": "bottom", @@ -163337,7 +178574,7 @@ } }, { - "id": 9000, + "id": 10644, "properties": { "facing": "south", "half": "bottom", @@ -163346,7 +178583,7 @@ } }, { - "id": 9001, + "id": 10645, "properties": { "facing": "west", "half": "top", @@ -163355,7 +178592,7 @@ } }, { - "id": 9002, + "id": 10646, "properties": { "facing": "west", "half": "top", @@ -163364,7 +178601,7 @@ } }, { - "id": 9003, + "id": 10647, "properties": { "facing": "west", "half": "top", @@ -163373,7 +178610,7 @@ } }, { - "id": 9004, + "id": 10648, "properties": { "facing": "west", "half": "top", @@ -163382,7 +178619,7 @@ } }, { - "id": 9005, + "id": 10649, "properties": { "facing": "west", "half": "top", @@ -163391,7 +178628,7 @@ } }, { - "id": 9006, + "id": 10650, "properties": { "facing": "west", "half": "top", @@ -163400,7 +178637,7 @@ } }, { - "id": 9007, + "id": 10651, "properties": { "facing": "west", "half": "top", @@ -163409,7 +178646,7 @@ } }, { - "id": 9008, + "id": 10652, "properties": { "facing": "west", "half": "top", @@ -163418,7 +178655,7 @@ } }, { - "id": 9009, + "id": 10653, "properties": { "facing": "west", "half": "top", @@ -163427,7 +178664,7 @@ } }, { - "id": 9010, + "id": 10654, "properties": { "facing": "west", "half": "top", @@ -163436,7 +178673,7 @@ } }, { - "id": 9011, + "id": 10655, "properties": { "facing": "west", "half": "bottom", @@ -163445,7 +178682,7 @@ } }, { - "id": 9012, + "id": 10656, "properties": { "facing": "west", "half": "bottom", @@ -163454,7 +178691,7 @@ } }, { - "id": 9013, + "id": 10657, "properties": { "facing": "west", "half": "bottom", @@ -163463,7 +178700,7 @@ } }, { - "id": 9014, + "id": 10658, "properties": { "facing": "west", "half": "bottom", @@ -163472,7 +178709,7 @@ } }, { - "id": 9015, + "id": 10659, "properties": { "facing": "west", "half": "bottom", @@ -163481,7 +178718,7 @@ } }, { - "id": 9016, + "id": 10660, "properties": { "facing": "west", "half": "bottom", @@ -163490,7 +178727,7 @@ } }, { - "id": 9017, + "id": 10661, "properties": { "facing": "west", "half": "bottom", @@ -163499,7 +178736,7 @@ } }, { - "id": 9018, + "id": 10662, "properties": { "facing": "west", "half": "bottom", @@ -163508,7 +178745,7 @@ } }, { - "id": 9019, + "id": 10663, "properties": { "facing": "west", "half": "bottom", @@ -163517,7 +178754,7 @@ } }, { - "id": 9020, + "id": 10664, "properties": { "facing": "west", "half": "bottom", @@ -163526,7 +178763,7 @@ } }, { - "id": 9021, + "id": 10665, "properties": { "facing": "east", "half": "top", @@ -163535,7 +178772,7 @@ } }, { - "id": 9022, + "id": 10666, "properties": { "facing": "east", "half": "top", @@ -163544,7 +178781,7 @@ } }, { - "id": 9023, + "id": 10667, "properties": { "facing": "east", "half": "top", @@ -163553,7 +178790,7 @@ } }, { - "id": 9024, + "id": 10668, "properties": { "facing": "east", "half": "top", @@ -163562,7 +178799,7 @@ } }, { - "id": 9025, + "id": 10669, "properties": { "facing": "east", "half": "top", @@ -163571,7 +178808,7 @@ } }, { - "id": 9026, + "id": 10670, "properties": { "facing": "east", "half": "top", @@ -163580,7 +178817,7 @@ } }, { - "id": 9027, + "id": 10671, "properties": { "facing": "east", "half": "top", @@ -163589,7 +178826,7 @@ } }, { - "id": 9028, + "id": 10672, "properties": { "facing": "east", "half": "top", @@ -163598,7 +178835,7 @@ } }, { - "id": 9029, + "id": 10673, "properties": { "facing": "east", "half": "top", @@ -163607,7 +178844,7 @@ } }, { - "id": 9030, + "id": 10674, "properties": { "facing": "east", "half": "top", @@ -163616,7 +178853,7 @@ } }, { - "id": 9031, + "id": 10675, "properties": { "facing": "east", "half": "bottom", @@ -163625,7 +178862,7 @@ } }, { - "id": 9032, + "id": 10676, "properties": { "facing": "east", "half": "bottom", @@ -163634,7 +178871,7 @@ } }, { - "id": 9033, + "id": 10677, "properties": { "facing": "east", "half": "bottom", @@ -163643,7 +178880,7 @@ } }, { - "id": 9034, + "id": 10678, "properties": { "facing": "east", "half": "bottom", @@ -163652,7 +178889,7 @@ } }, { - "id": 9035, + "id": 10679, "properties": { "facing": "east", "half": "bottom", @@ -163661,7 +178898,7 @@ } }, { - "id": 9036, + "id": 10680, "properties": { "facing": "east", "half": "bottom", @@ -163670,7 +178907,7 @@ } }, { - "id": 9037, + "id": 10681, "properties": { "facing": "east", "half": "bottom", @@ -163679,7 +178916,7 @@ } }, { - "id": 9038, + "id": 10682, "properties": { "facing": "east", "half": "bottom", @@ -163688,7 +178925,7 @@ } }, { - "id": 9039, + "id": 10683, "properties": { "facing": "east", "half": "bottom", @@ -163697,7 +178934,7 @@ } }, { - "id": 9040, + "id": 10684, "properties": { "facing": "east", "half": "bottom", @@ -163740,7 +178977,7 @@ }, "states": [ { - "id": 12396, + "id": 14180, "properties": { "east": "none", "north": "none", @@ -163751,7 +178988,7 @@ } }, { - "id": 12397, + "id": 14181, "properties": { "east": "none", "north": "none", @@ -163762,7 +178999,7 @@ } }, { - "id": 12398, + "id": 14182, "properties": { "east": "none", "north": "none", @@ -163774,7 +179011,7 @@ }, { "default": true, - "id": 12399, + "id": 14183, "properties": { "east": "none", "north": "none", @@ -163785,7 +179022,7 @@ } }, { - "id": 12400, + "id": 14184, "properties": { "east": "none", "north": "none", @@ -163796,7 +179033,7 @@ } }, { - "id": 12401, + "id": 14185, "properties": { "east": "none", "north": "none", @@ -163807,7 +179044,7 @@ } }, { - "id": 12402, + "id": 14186, "properties": { "east": "none", "north": "none", @@ -163818,7 +179055,7 @@ } }, { - "id": 12403, + "id": 14187, "properties": { "east": "none", "north": "none", @@ -163829,7 +179066,7 @@ } }, { - "id": 12404, + "id": 14188, "properties": { "east": "none", "north": "none", @@ -163840,7 +179077,7 @@ } }, { - "id": 12405, + "id": 14189, "properties": { "east": "none", "north": "none", @@ -163851,7 +179088,7 @@ } }, { - "id": 12406, + "id": 14190, "properties": { "east": "none", "north": "none", @@ -163862,7 +179099,7 @@ } }, { - "id": 12407, + "id": 14191, "properties": { "east": "none", "north": "none", @@ -163873,7 +179110,7 @@ } }, { - "id": 12408, + "id": 14192, "properties": { "east": "none", "north": "none", @@ -163884,7 +179121,7 @@ } }, { - "id": 12409, + "id": 14193, "properties": { "east": "none", "north": "none", @@ -163895,7 +179132,7 @@ } }, { - "id": 12410, + "id": 14194, "properties": { "east": "none", "north": "none", @@ -163906,7 +179143,7 @@ } }, { - "id": 12411, + "id": 14195, "properties": { "east": "none", "north": "none", @@ -163917,7 +179154,7 @@ } }, { - "id": 12412, + "id": 14196, "properties": { "east": "none", "north": "none", @@ -163928,7 +179165,7 @@ } }, { - "id": 12413, + "id": 14197, "properties": { "east": "none", "north": "none", @@ -163939,7 +179176,7 @@ } }, { - "id": 12414, + "id": 14198, "properties": { "east": "none", "north": "none", @@ -163950,7 +179187,7 @@ } }, { - "id": 12415, + "id": 14199, "properties": { "east": "none", "north": "none", @@ -163961,7 +179198,7 @@ } }, { - "id": 12416, + "id": 14200, "properties": { "east": "none", "north": "none", @@ -163972,7 +179209,7 @@ } }, { - "id": 12417, + "id": 14201, "properties": { "east": "none", "north": "none", @@ -163983,7 +179220,7 @@ } }, { - "id": 12418, + "id": 14202, "properties": { "east": "none", "north": "none", @@ -163994,7 +179231,7 @@ } }, { - "id": 12419, + "id": 14203, "properties": { "east": "none", "north": "none", @@ -164005,7 +179242,7 @@ } }, { - "id": 12420, + "id": 14204, "properties": { "east": "none", "north": "none", @@ -164016,7 +179253,7 @@ } }, { - "id": 12421, + "id": 14205, "properties": { "east": "none", "north": "none", @@ -164027,7 +179264,7 @@ } }, { - "id": 12422, + "id": 14206, "properties": { "east": "none", "north": "none", @@ -164038,7 +179275,7 @@ } }, { - "id": 12423, + "id": 14207, "properties": { "east": "none", "north": "none", @@ -164049,7 +179286,7 @@ } }, { - "id": 12424, + "id": 14208, "properties": { "east": "none", "north": "none", @@ -164060,7 +179297,7 @@ } }, { - "id": 12425, + "id": 14209, "properties": { "east": "none", "north": "none", @@ -164071,7 +179308,7 @@ } }, { - "id": 12426, + "id": 14210, "properties": { "east": "none", "north": "none", @@ -164082,7 +179319,7 @@ } }, { - "id": 12427, + "id": 14211, "properties": { "east": "none", "north": "none", @@ -164093,7 +179330,7 @@ } }, { - "id": 12428, + "id": 14212, "properties": { "east": "none", "north": "none", @@ -164104,7 +179341,7 @@ } }, { - "id": 12429, + "id": 14213, "properties": { "east": "none", "north": "none", @@ -164115,7 +179352,7 @@ } }, { - "id": 12430, + "id": 14214, "properties": { "east": "none", "north": "none", @@ -164126,7 +179363,7 @@ } }, { - "id": 12431, + "id": 14215, "properties": { "east": "none", "north": "none", @@ -164137,7 +179374,7 @@ } }, { - "id": 12432, + "id": 14216, "properties": { "east": "none", "north": "low", @@ -164148,7 +179385,7 @@ } }, { - "id": 12433, + "id": 14217, "properties": { "east": "none", "north": "low", @@ -164159,7 +179396,7 @@ } }, { - "id": 12434, + "id": 14218, "properties": { "east": "none", "north": "low", @@ -164170,7 +179407,7 @@ } }, { - "id": 12435, + "id": 14219, "properties": { "east": "none", "north": "low", @@ -164181,7 +179418,7 @@ } }, { - "id": 12436, + "id": 14220, "properties": { "east": "none", "north": "low", @@ -164192,7 +179429,7 @@ } }, { - "id": 12437, + "id": 14221, "properties": { "east": "none", "north": "low", @@ -164203,7 +179440,7 @@ } }, { - "id": 12438, + "id": 14222, "properties": { "east": "none", "north": "low", @@ -164214,7 +179451,7 @@ } }, { - "id": 12439, + "id": 14223, "properties": { "east": "none", "north": "low", @@ -164225,7 +179462,7 @@ } }, { - "id": 12440, + "id": 14224, "properties": { "east": "none", "north": "low", @@ -164236,7 +179473,7 @@ } }, { - "id": 12441, + "id": 14225, "properties": { "east": "none", "north": "low", @@ -164247,7 +179484,7 @@ } }, { - "id": 12442, + "id": 14226, "properties": { "east": "none", "north": "low", @@ -164258,7 +179495,7 @@ } }, { - "id": 12443, + "id": 14227, "properties": { "east": "none", "north": "low", @@ -164269,7 +179506,7 @@ } }, { - "id": 12444, + "id": 14228, "properties": { "east": "none", "north": "low", @@ -164280,7 +179517,7 @@ } }, { - "id": 12445, + "id": 14229, "properties": { "east": "none", "north": "low", @@ -164291,7 +179528,7 @@ } }, { - "id": 12446, + "id": 14230, "properties": { "east": "none", "north": "low", @@ -164302,7 +179539,7 @@ } }, { - "id": 12447, + "id": 14231, "properties": { "east": "none", "north": "low", @@ -164313,7 +179550,7 @@ } }, { - "id": 12448, + "id": 14232, "properties": { "east": "none", "north": "low", @@ -164324,7 +179561,7 @@ } }, { - "id": 12449, + "id": 14233, "properties": { "east": "none", "north": "low", @@ -164335,7 +179572,7 @@ } }, { - "id": 12450, + "id": 14234, "properties": { "east": "none", "north": "low", @@ -164346,7 +179583,7 @@ } }, { - "id": 12451, + "id": 14235, "properties": { "east": "none", "north": "low", @@ -164357,7 +179594,7 @@ } }, { - "id": 12452, + "id": 14236, "properties": { "east": "none", "north": "low", @@ -164368,7 +179605,7 @@ } }, { - "id": 12453, + "id": 14237, "properties": { "east": "none", "north": "low", @@ -164379,7 +179616,7 @@ } }, { - "id": 12454, + "id": 14238, "properties": { "east": "none", "north": "low", @@ -164390,7 +179627,7 @@ } }, { - "id": 12455, + "id": 14239, "properties": { "east": "none", "north": "low", @@ -164401,7 +179638,7 @@ } }, { - "id": 12456, + "id": 14240, "properties": { "east": "none", "north": "low", @@ -164412,7 +179649,7 @@ } }, { - "id": 12457, + "id": 14241, "properties": { "east": "none", "north": "low", @@ -164423,7 +179660,7 @@ } }, { - "id": 12458, + "id": 14242, "properties": { "east": "none", "north": "low", @@ -164434,7 +179671,7 @@ } }, { - "id": 12459, + "id": 14243, "properties": { "east": "none", "north": "low", @@ -164445,7 +179682,7 @@ } }, { - "id": 12460, + "id": 14244, "properties": { "east": "none", "north": "low", @@ -164456,7 +179693,7 @@ } }, { - "id": 12461, + "id": 14245, "properties": { "east": "none", "north": "low", @@ -164467,7 +179704,7 @@ } }, { - "id": 12462, + "id": 14246, "properties": { "east": "none", "north": "low", @@ -164478,7 +179715,7 @@ } }, { - "id": 12463, + "id": 14247, "properties": { "east": "none", "north": "low", @@ -164489,7 +179726,7 @@ } }, { - "id": 12464, + "id": 14248, "properties": { "east": "none", "north": "low", @@ -164500,7 +179737,7 @@ } }, { - "id": 12465, + "id": 14249, "properties": { "east": "none", "north": "low", @@ -164511,7 +179748,7 @@ } }, { - "id": 12466, + "id": 14250, "properties": { "east": "none", "north": "low", @@ -164522,7 +179759,7 @@ } }, { - "id": 12467, + "id": 14251, "properties": { "east": "none", "north": "low", @@ -164533,7 +179770,7 @@ } }, { - "id": 12468, + "id": 14252, "properties": { "east": "none", "north": "tall", @@ -164544,7 +179781,7 @@ } }, { - "id": 12469, + "id": 14253, "properties": { "east": "none", "north": "tall", @@ -164555,7 +179792,7 @@ } }, { - "id": 12470, + "id": 14254, "properties": { "east": "none", "north": "tall", @@ -164566,7 +179803,7 @@ } }, { - "id": 12471, + "id": 14255, "properties": { "east": "none", "north": "tall", @@ -164577,7 +179814,7 @@ } }, { - "id": 12472, + "id": 14256, "properties": { "east": "none", "north": "tall", @@ -164588,7 +179825,7 @@ } }, { - "id": 12473, + "id": 14257, "properties": { "east": "none", "north": "tall", @@ -164599,7 +179836,7 @@ } }, { - "id": 12474, + "id": 14258, "properties": { "east": "none", "north": "tall", @@ -164610,7 +179847,7 @@ } }, { - "id": 12475, + "id": 14259, "properties": { "east": "none", "north": "tall", @@ -164621,7 +179858,7 @@ } }, { - "id": 12476, + "id": 14260, "properties": { "east": "none", "north": "tall", @@ -164632,7 +179869,7 @@ } }, { - "id": 12477, + "id": 14261, "properties": { "east": "none", "north": "tall", @@ -164643,7 +179880,7 @@ } }, { - "id": 12478, + "id": 14262, "properties": { "east": "none", "north": "tall", @@ -164654,7 +179891,7 @@ } }, { - "id": 12479, + "id": 14263, "properties": { "east": "none", "north": "tall", @@ -164665,7 +179902,7 @@ } }, { - "id": 12480, + "id": 14264, "properties": { "east": "none", "north": "tall", @@ -164676,7 +179913,7 @@ } }, { - "id": 12481, + "id": 14265, "properties": { "east": "none", "north": "tall", @@ -164687,7 +179924,7 @@ } }, { - "id": 12482, + "id": 14266, "properties": { "east": "none", "north": "tall", @@ -164698,7 +179935,7 @@ } }, { - "id": 12483, + "id": 14267, "properties": { "east": "none", "north": "tall", @@ -164709,7 +179946,7 @@ } }, { - "id": 12484, + "id": 14268, "properties": { "east": "none", "north": "tall", @@ -164720,7 +179957,7 @@ } }, { - "id": 12485, + "id": 14269, "properties": { "east": "none", "north": "tall", @@ -164731,7 +179968,7 @@ } }, { - "id": 12486, + "id": 14270, "properties": { "east": "none", "north": "tall", @@ -164742,7 +179979,7 @@ } }, { - "id": 12487, + "id": 14271, "properties": { "east": "none", "north": "tall", @@ -164753,7 +179990,7 @@ } }, { - "id": 12488, + "id": 14272, "properties": { "east": "none", "north": "tall", @@ -164764,7 +180001,7 @@ } }, { - "id": 12489, + "id": 14273, "properties": { "east": "none", "north": "tall", @@ -164775,7 +180012,7 @@ } }, { - "id": 12490, + "id": 14274, "properties": { "east": "none", "north": "tall", @@ -164786,7 +180023,7 @@ } }, { - "id": 12491, + "id": 14275, "properties": { "east": "none", "north": "tall", @@ -164797,7 +180034,7 @@ } }, { - "id": 12492, + "id": 14276, "properties": { "east": "none", "north": "tall", @@ -164808,7 +180045,7 @@ } }, { - "id": 12493, + "id": 14277, "properties": { "east": "none", "north": "tall", @@ -164819,7 +180056,7 @@ } }, { - "id": 12494, + "id": 14278, "properties": { "east": "none", "north": "tall", @@ -164830,7 +180067,7 @@ } }, { - "id": 12495, + "id": 14279, "properties": { "east": "none", "north": "tall", @@ -164841,7 +180078,7 @@ } }, { - "id": 12496, + "id": 14280, "properties": { "east": "none", "north": "tall", @@ -164852,7 +180089,7 @@ } }, { - "id": 12497, + "id": 14281, "properties": { "east": "none", "north": "tall", @@ -164863,7 +180100,7 @@ } }, { - "id": 12498, + "id": 14282, "properties": { "east": "none", "north": "tall", @@ -164874,7 +180111,7 @@ } }, { - "id": 12499, + "id": 14283, "properties": { "east": "none", "north": "tall", @@ -164885,7 +180122,7 @@ } }, { - "id": 12500, + "id": 14284, "properties": { "east": "none", "north": "tall", @@ -164896,7 +180133,7 @@ } }, { - "id": 12501, + "id": 14285, "properties": { "east": "none", "north": "tall", @@ -164907,7 +180144,7 @@ } }, { - "id": 12502, + "id": 14286, "properties": { "east": "none", "north": "tall", @@ -164918,7 +180155,7 @@ } }, { - "id": 12503, + "id": 14287, "properties": { "east": "none", "north": "tall", @@ -164929,7 +180166,7 @@ } }, { - "id": 12504, + "id": 14288, "properties": { "east": "low", "north": "none", @@ -164940,7 +180177,7 @@ } }, { - "id": 12505, + "id": 14289, "properties": { "east": "low", "north": "none", @@ -164951,7 +180188,7 @@ } }, { - "id": 12506, + "id": 14290, "properties": { "east": "low", "north": "none", @@ -164962,7 +180199,7 @@ } }, { - "id": 12507, + "id": 14291, "properties": { "east": "low", "north": "none", @@ -164973,7 +180210,7 @@ } }, { - "id": 12508, + "id": 14292, "properties": { "east": "low", "north": "none", @@ -164984,7 +180221,7 @@ } }, { - "id": 12509, + "id": 14293, "properties": { "east": "low", "north": "none", @@ -164995,7 +180232,7 @@ } }, { - "id": 12510, + "id": 14294, "properties": { "east": "low", "north": "none", @@ -165006,7 +180243,7 @@ } }, { - "id": 12511, + "id": 14295, "properties": { "east": "low", "north": "none", @@ -165017,7 +180254,7 @@ } }, { - "id": 12512, + "id": 14296, "properties": { "east": "low", "north": "none", @@ -165028,7 +180265,7 @@ } }, { - "id": 12513, + "id": 14297, "properties": { "east": "low", "north": "none", @@ -165039,7 +180276,7 @@ } }, { - "id": 12514, + "id": 14298, "properties": { "east": "low", "north": "none", @@ -165050,7 +180287,7 @@ } }, { - "id": 12515, + "id": 14299, "properties": { "east": "low", "north": "none", @@ -165061,7 +180298,7 @@ } }, { - "id": 12516, + "id": 14300, "properties": { "east": "low", "north": "none", @@ -165072,7 +180309,7 @@ } }, { - "id": 12517, + "id": 14301, "properties": { "east": "low", "north": "none", @@ -165083,7 +180320,7 @@ } }, { - "id": 12518, + "id": 14302, "properties": { "east": "low", "north": "none", @@ -165094,7 +180331,7 @@ } }, { - "id": 12519, + "id": 14303, "properties": { "east": "low", "north": "none", @@ -165105,7 +180342,7 @@ } }, { - "id": 12520, + "id": 14304, "properties": { "east": "low", "north": "none", @@ -165116,7 +180353,7 @@ } }, { - "id": 12521, + "id": 14305, "properties": { "east": "low", "north": "none", @@ -165127,7 +180364,7 @@ } }, { - "id": 12522, + "id": 14306, "properties": { "east": "low", "north": "none", @@ -165138,7 +180375,7 @@ } }, { - "id": 12523, + "id": 14307, "properties": { "east": "low", "north": "none", @@ -165149,7 +180386,7 @@ } }, { - "id": 12524, + "id": 14308, "properties": { "east": "low", "north": "none", @@ -165160,7 +180397,7 @@ } }, { - "id": 12525, + "id": 14309, "properties": { "east": "low", "north": "none", @@ -165171,7 +180408,7 @@ } }, { - "id": 12526, + "id": 14310, "properties": { "east": "low", "north": "none", @@ -165182,7 +180419,7 @@ } }, { - "id": 12527, + "id": 14311, "properties": { "east": "low", "north": "none", @@ -165193,7 +180430,7 @@ } }, { - "id": 12528, + "id": 14312, "properties": { "east": "low", "north": "none", @@ -165204,7 +180441,7 @@ } }, { - "id": 12529, + "id": 14313, "properties": { "east": "low", "north": "none", @@ -165215,7 +180452,7 @@ } }, { - "id": 12530, + "id": 14314, "properties": { "east": "low", "north": "none", @@ -165226,7 +180463,7 @@ } }, { - "id": 12531, + "id": 14315, "properties": { "east": "low", "north": "none", @@ -165237,7 +180474,7 @@ } }, { - "id": 12532, + "id": 14316, "properties": { "east": "low", "north": "none", @@ -165248,7 +180485,7 @@ } }, { - "id": 12533, + "id": 14317, "properties": { "east": "low", "north": "none", @@ -165259,7 +180496,7 @@ } }, { - "id": 12534, + "id": 14318, "properties": { "east": "low", "north": "none", @@ -165270,7 +180507,7 @@ } }, { - "id": 12535, + "id": 14319, "properties": { "east": "low", "north": "none", @@ -165281,7 +180518,7 @@ } }, { - "id": 12536, + "id": 14320, "properties": { "east": "low", "north": "none", @@ -165292,7 +180529,7 @@ } }, { - "id": 12537, + "id": 14321, "properties": { "east": "low", "north": "none", @@ -165303,7 +180540,7 @@ } }, { - "id": 12538, + "id": 14322, "properties": { "east": "low", "north": "none", @@ -165314,7 +180551,7 @@ } }, { - "id": 12539, + "id": 14323, "properties": { "east": "low", "north": "none", @@ -165325,7 +180562,7 @@ } }, { - "id": 12540, + "id": 14324, "properties": { "east": "low", "north": "low", @@ -165336,7 +180573,7 @@ } }, { - "id": 12541, + "id": 14325, "properties": { "east": "low", "north": "low", @@ -165347,7 +180584,7 @@ } }, { - "id": 12542, + "id": 14326, "properties": { "east": "low", "north": "low", @@ -165358,7 +180595,7 @@ } }, { - "id": 12543, + "id": 14327, "properties": { "east": "low", "north": "low", @@ -165369,7 +180606,7 @@ } }, { - "id": 12544, + "id": 14328, "properties": { "east": "low", "north": "low", @@ -165380,7 +180617,7 @@ } }, { - "id": 12545, + "id": 14329, "properties": { "east": "low", "north": "low", @@ -165391,7 +180628,7 @@ } }, { - "id": 12546, + "id": 14330, "properties": { "east": "low", "north": "low", @@ -165402,7 +180639,7 @@ } }, { - "id": 12547, + "id": 14331, "properties": { "east": "low", "north": "low", @@ -165413,7 +180650,7 @@ } }, { - "id": 12548, + "id": 14332, "properties": { "east": "low", "north": "low", @@ -165424,7 +180661,7 @@ } }, { - "id": 12549, + "id": 14333, "properties": { "east": "low", "north": "low", @@ -165435,7 +180672,7 @@ } }, { - "id": 12550, + "id": 14334, "properties": { "east": "low", "north": "low", @@ -165446,7 +180683,7 @@ } }, { - "id": 12551, + "id": 14335, "properties": { "east": "low", "north": "low", @@ -165457,7 +180694,7 @@ } }, { - "id": 12552, + "id": 14336, "properties": { "east": "low", "north": "low", @@ -165468,7 +180705,7 @@ } }, { - "id": 12553, + "id": 14337, "properties": { "east": "low", "north": "low", @@ -165479,7 +180716,7 @@ } }, { - "id": 12554, + "id": 14338, "properties": { "east": "low", "north": "low", @@ -165490,7 +180727,7 @@ } }, { - "id": 12555, + "id": 14339, "properties": { "east": "low", "north": "low", @@ -165501,7 +180738,7 @@ } }, { - "id": 12556, + "id": 14340, "properties": { "east": "low", "north": "low", @@ -165512,7 +180749,7 @@ } }, { - "id": 12557, + "id": 14341, "properties": { "east": "low", "north": "low", @@ -165523,7 +180760,7 @@ } }, { - "id": 12558, + "id": 14342, "properties": { "east": "low", "north": "low", @@ -165534,7 +180771,7 @@ } }, { - "id": 12559, + "id": 14343, "properties": { "east": "low", "north": "low", @@ -165545,7 +180782,7 @@ } }, { - "id": 12560, + "id": 14344, "properties": { "east": "low", "north": "low", @@ -165556,7 +180793,7 @@ } }, { - "id": 12561, + "id": 14345, "properties": { "east": "low", "north": "low", @@ -165567,7 +180804,7 @@ } }, { - "id": 12562, + "id": 14346, "properties": { "east": "low", "north": "low", @@ -165578,7 +180815,7 @@ } }, { - "id": 12563, + "id": 14347, "properties": { "east": "low", "north": "low", @@ -165589,7 +180826,7 @@ } }, { - "id": 12564, + "id": 14348, "properties": { "east": "low", "north": "low", @@ -165600,7 +180837,7 @@ } }, { - "id": 12565, + "id": 14349, "properties": { "east": "low", "north": "low", @@ -165611,7 +180848,7 @@ } }, { - "id": 12566, + "id": 14350, "properties": { "east": "low", "north": "low", @@ -165622,7 +180859,7 @@ } }, { - "id": 12567, + "id": 14351, "properties": { "east": "low", "north": "low", @@ -165633,7 +180870,7 @@ } }, { - "id": 12568, + "id": 14352, "properties": { "east": "low", "north": "low", @@ -165644,7 +180881,7 @@ } }, { - "id": 12569, + "id": 14353, "properties": { "east": "low", "north": "low", @@ -165655,7 +180892,7 @@ } }, { - "id": 12570, + "id": 14354, "properties": { "east": "low", "north": "low", @@ -165666,7 +180903,7 @@ } }, { - "id": 12571, + "id": 14355, "properties": { "east": "low", "north": "low", @@ -165677,7 +180914,7 @@ } }, { - "id": 12572, + "id": 14356, "properties": { "east": "low", "north": "low", @@ -165688,7 +180925,7 @@ } }, { - "id": 12573, + "id": 14357, "properties": { "east": "low", "north": "low", @@ -165699,7 +180936,7 @@ } }, { - "id": 12574, + "id": 14358, "properties": { "east": "low", "north": "low", @@ -165710,7 +180947,7 @@ } }, { - "id": 12575, + "id": 14359, "properties": { "east": "low", "north": "low", @@ -165721,7 +180958,7 @@ } }, { - "id": 12576, + "id": 14360, "properties": { "east": "low", "north": "tall", @@ -165732,7 +180969,7 @@ } }, { - "id": 12577, + "id": 14361, "properties": { "east": "low", "north": "tall", @@ -165743,7 +180980,7 @@ } }, { - "id": 12578, + "id": 14362, "properties": { "east": "low", "north": "tall", @@ -165754,7 +180991,7 @@ } }, { - "id": 12579, + "id": 14363, "properties": { "east": "low", "north": "tall", @@ -165765,7 +181002,7 @@ } }, { - "id": 12580, + "id": 14364, "properties": { "east": "low", "north": "tall", @@ -165776,7 +181013,7 @@ } }, { - "id": 12581, + "id": 14365, "properties": { "east": "low", "north": "tall", @@ -165787,7 +181024,7 @@ } }, { - "id": 12582, + "id": 14366, "properties": { "east": "low", "north": "tall", @@ -165798,7 +181035,7 @@ } }, { - "id": 12583, + "id": 14367, "properties": { "east": "low", "north": "tall", @@ -165809,7 +181046,7 @@ } }, { - "id": 12584, + "id": 14368, "properties": { "east": "low", "north": "tall", @@ -165820,7 +181057,7 @@ } }, { - "id": 12585, + "id": 14369, "properties": { "east": "low", "north": "tall", @@ -165831,7 +181068,7 @@ } }, { - "id": 12586, + "id": 14370, "properties": { "east": "low", "north": "tall", @@ -165842,7 +181079,7 @@ } }, { - "id": 12587, + "id": 14371, "properties": { "east": "low", "north": "tall", @@ -165853,7 +181090,7 @@ } }, { - "id": 12588, + "id": 14372, "properties": { "east": "low", "north": "tall", @@ -165864,7 +181101,7 @@ } }, { - "id": 12589, + "id": 14373, "properties": { "east": "low", "north": "tall", @@ -165875,7 +181112,7 @@ } }, { - "id": 12590, + "id": 14374, "properties": { "east": "low", "north": "tall", @@ -165886,7 +181123,7 @@ } }, { - "id": 12591, + "id": 14375, "properties": { "east": "low", "north": "tall", @@ -165897,7 +181134,7 @@ } }, { - "id": 12592, + "id": 14376, "properties": { "east": "low", "north": "tall", @@ -165908,7 +181145,7 @@ } }, { - "id": 12593, + "id": 14377, "properties": { "east": "low", "north": "tall", @@ -165919,7 +181156,7 @@ } }, { - "id": 12594, + "id": 14378, "properties": { "east": "low", "north": "tall", @@ -165930,7 +181167,7 @@ } }, { - "id": 12595, + "id": 14379, "properties": { "east": "low", "north": "tall", @@ -165941,7 +181178,7 @@ } }, { - "id": 12596, + "id": 14380, "properties": { "east": "low", "north": "tall", @@ -165952,7 +181189,7 @@ } }, { - "id": 12597, + "id": 14381, "properties": { "east": "low", "north": "tall", @@ -165963,7 +181200,7 @@ } }, { - "id": 12598, + "id": 14382, "properties": { "east": "low", "north": "tall", @@ -165974,7 +181211,7 @@ } }, { - "id": 12599, + "id": 14383, "properties": { "east": "low", "north": "tall", @@ -165985,7 +181222,7 @@ } }, { - "id": 12600, + "id": 14384, "properties": { "east": "low", "north": "tall", @@ -165996,7 +181233,7 @@ } }, { - "id": 12601, + "id": 14385, "properties": { "east": "low", "north": "tall", @@ -166007,7 +181244,7 @@ } }, { - "id": 12602, + "id": 14386, "properties": { "east": "low", "north": "tall", @@ -166018,7 +181255,7 @@ } }, { - "id": 12603, + "id": 14387, "properties": { "east": "low", "north": "tall", @@ -166029,7 +181266,7 @@ } }, { - "id": 12604, + "id": 14388, "properties": { "east": "low", "north": "tall", @@ -166040,7 +181277,7 @@ } }, { - "id": 12605, + "id": 14389, "properties": { "east": "low", "north": "tall", @@ -166051,7 +181288,7 @@ } }, { - "id": 12606, + "id": 14390, "properties": { "east": "low", "north": "tall", @@ -166062,7 +181299,7 @@ } }, { - "id": 12607, + "id": 14391, "properties": { "east": "low", "north": "tall", @@ -166073,7 +181310,7 @@ } }, { - "id": 12608, + "id": 14392, "properties": { "east": "low", "north": "tall", @@ -166084,7 +181321,7 @@ } }, { - "id": 12609, + "id": 14393, "properties": { "east": "low", "north": "tall", @@ -166095,7 +181332,7 @@ } }, { - "id": 12610, + "id": 14394, "properties": { "east": "low", "north": "tall", @@ -166106,7 +181343,7 @@ } }, { - "id": 12611, + "id": 14395, "properties": { "east": "low", "north": "tall", @@ -166117,7 +181354,7 @@ } }, { - "id": 12612, + "id": 14396, "properties": { "east": "tall", "north": "none", @@ -166128,7 +181365,7 @@ } }, { - "id": 12613, + "id": 14397, "properties": { "east": "tall", "north": "none", @@ -166139,7 +181376,7 @@ } }, { - "id": 12614, + "id": 14398, "properties": { "east": "tall", "north": "none", @@ -166150,7 +181387,7 @@ } }, { - "id": 12615, + "id": 14399, "properties": { "east": "tall", "north": "none", @@ -166161,7 +181398,7 @@ } }, { - "id": 12616, + "id": 14400, "properties": { "east": "tall", "north": "none", @@ -166172,7 +181409,7 @@ } }, { - "id": 12617, + "id": 14401, "properties": { "east": "tall", "north": "none", @@ -166183,7 +181420,7 @@ } }, { - "id": 12618, + "id": 14402, "properties": { "east": "tall", "north": "none", @@ -166194,7 +181431,7 @@ } }, { - "id": 12619, + "id": 14403, "properties": { "east": "tall", "north": "none", @@ -166205,7 +181442,7 @@ } }, { - "id": 12620, + "id": 14404, "properties": { "east": "tall", "north": "none", @@ -166216,7 +181453,7 @@ } }, { - "id": 12621, + "id": 14405, "properties": { "east": "tall", "north": "none", @@ -166227,7 +181464,7 @@ } }, { - "id": 12622, + "id": 14406, "properties": { "east": "tall", "north": "none", @@ -166238,7 +181475,7 @@ } }, { - "id": 12623, + "id": 14407, "properties": { "east": "tall", "north": "none", @@ -166249,7 +181486,7 @@ } }, { - "id": 12624, + "id": 14408, "properties": { "east": "tall", "north": "none", @@ -166260,7 +181497,7 @@ } }, { - "id": 12625, + "id": 14409, "properties": { "east": "tall", "north": "none", @@ -166271,7 +181508,7 @@ } }, { - "id": 12626, + "id": 14410, "properties": { "east": "tall", "north": "none", @@ -166282,7 +181519,7 @@ } }, { - "id": 12627, + "id": 14411, "properties": { "east": "tall", "north": "none", @@ -166293,7 +181530,7 @@ } }, { - "id": 12628, + "id": 14412, "properties": { "east": "tall", "north": "none", @@ -166304,7 +181541,7 @@ } }, { - "id": 12629, + "id": 14413, "properties": { "east": "tall", "north": "none", @@ -166315,7 +181552,7 @@ } }, { - "id": 12630, + "id": 14414, "properties": { "east": "tall", "north": "none", @@ -166326,7 +181563,7 @@ } }, { - "id": 12631, + "id": 14415, "properties": { "east": "tall", "north": "none", @@ -166337,7 +181574,7 @@ } }, { - "id": 12632, + "id": 14416, "properties": { "east": "tall", "north": "none", @@ -166348,7 +181585,7 @@ } }, { - "id": 12633, + "id": 14417, "properties": { "east": "tall", "north": "none", @@ -166359,7 +181596,7 @@ } }, { - "id": 12634, + "id": 14418, "properties": { "east": "tall", "north": "none", @@ -166370,7 +181607,7 @@ } }, { - "id": 12635, + "id": 14419, "properties": { "east": "tall", "north": "none", @@ -166381,7 +181618,7 @@ } }, { - "id": 12636, + "id": 14420, "properties": { "east": "tall", "north": "none", @@ -166392,7 +181629,7 @@ } }, { - "id": 12637, + "id": 14421, "properties": { "east": "tall", "north": "none", @@ -166403,7 +181640,7 @@ } }, { - "id": 12638, + "id": 14422, "properties": { "east": "tall", "north": "none", @@ -166414,7 +181651,7 @@ } }, { - "id": 12639, + "id": 14423, "properties": { "east": "tall", "north": "none", @@ -166425,7 +181662,7 @@ } }, { - "id": 12640, + "id": 14424, "properties": { "east": "tall", "north": "none", @@ -166436,7 +181673,7 @@ } }, { - "id": 12641, + "id": 14425, "properties": { "east": "tall", "north": "none", @@ -166447,7 +181684,7 @@ } }, { - "id": 12642, + "id": 14426, "properties": { "east": "tall", "north": "none", @@ -166458,7 +181695,7 @@ } }, { - "id": 12643, + "id": 14427, "properties": { "east": "tall", "north": "none", @@ -166469,7 +181706,7 @@ } }, { - "id": 12644, + "id": 14428, "properties": { "east": "tall", "north": "none", @@ -166480,7 +181717,7 @@ } }, { - "id": 12645, + "id": 14429, "properties": { "east": "tall", "north": "none", @@ -166491,7 +181728,7 @@ } }, { - "id": 12646, + "id": 14430, "properties": { "east": "tall", "north": "none", @@ -166502,7 +181739,7 @@ } }, { - "id": 12647, + "id": 14431, "properties": { "east": "tall", "north": "none", @@ -166513,7 +181750,7 @@ } }, { - "id": 12648, + "id": 14432, "properties": { "east": "tall", "north": "low", @@ -166524,7 +181761,7 @@ } }, { - "id": 12649, + "id": 14433, "properties": { "east": "tall", "north": "low", @@ -166535,7 +181772,7 @@ } }, { - "id": 12650, + "id": 14434, "properties": { "east": "tall", "north": "low", @@ -166546,7 +181783,7 @@ } }, { - "id": 12651, + "id": 14435, "properties": { "east": "tall", "north": "low", @@ -166557,7 +181794,7 @@ } }, { - "id": 12652, + "id": 14436, "properties": { "east": "tall", "north": "low", @@ -166568,7 +181805,7 @@ } }, { - "id": 12653, + "id": 14437, "properties": { "east": "tall", "north": "low", @@ -166579,7 +181816,7 @@ } }, { - "id": 12654, + "id": 14438, "properties": { "east": "tall", "north": "low", @@ -166590,7 +181827,7 @@ } }, { - "id": 12655, + "id": 14439, "properties": { "east": "tall", "north": "low", @@ -166601,7 +181838,7 @@ } }, { - "id": 12656, + "id": 14440, "properties": { "east": "tall", "north": "low", @@ -166612,7 +181849,7 @@ } }, { - "id": 12657, + "id": 14441, "properties": { "east": "tall", "north": "low", @@ -166623,7 +181860,7 @@ } }, { - "id": 12658, + "id": 14442, "properties": { "east": "tall", "north": "low", @@ -166634,7 +181871,7 @@ } }, { - "id": 12659, + "id": 14443, "properties": { "east": "tall", "north": "low", @@ -166645,7 +181882,7 @@ } }, { - "id": 12660, + "id": 14444, "properties": { "east": "tall", "north": "low", @@ -166656,7 +181893,7 @@ } }, { - "id": 12661, + "id": 14445, "properties": { "east": "tall", "north": "low", @@ -166667,7 +181904,7 @@ } }, { - "id": 12662, + "id": 14446, "properties": { "east": "tall", "north": "low", @@ -166678,7 +181915,7 @@ } }, { - "id": 12663, + "id": 14447, "properties": { "east": "tall", "north": "low", @@ -166689,7 +181926,7 @@ } }, { - "id": 12664, + "id": 14448, "properties": { "east": "tall", "north": "low", @@ -166700,7 +181937,7 @@ } }, { - "id": 12665, + "id": 14449, "properties": { "east": "tall", "north": "low", @@ -166711,7 +181948,7 @@ } }, { - "id": 12666, + "id": 14450, "properties": { "east": "tall", "north": "low", @@ -166722,7 +181959,7 @@ } }, { - "id": 12667, + "id": 14451, "properties": { "east": "tall", "north": "low", @@ -166733,7 +181970,7 @@ } }, { - "id": 12668, + "id": 14452, "properties": { "east": "tall", "north": "low", @@ -166744,7 +181981,7 @@ } }, { - "id": 12669, + "id": 14453, "properties": { "east": "tall", "north": "low", @@ -166755,7 +181992,7 @@ } }, { - "id": 12670, + "id": 14454, "properties": { "east": "tall", "north": "low", @@ -166766,7 +182003,7 @@ } }, { - "id": 12671, + "id": 14455, "properties": { "east": "tall", "north": "low", @@ -166777,7 +182014,7 @@ } }, { - "id": 12672, + "id": 14456, "properties": { "east": "tall", "north": "low", @@ -166788,7 +182025,7 @@ } }, { - "id": 12673, + "id": 14457, "properties": { "east": "tall", "north": "low", @@ -166799,7 +182036,7 @@ } }, { - "id": 12674, + "id": 14458, "properties": { "east": "tall", "north": "low", @@ -166810,7 +182047,7 @@ } }, { - "id": 12675, + "id": 14459, "properties": { "east": "tall", "north": "low", @@ -166821,7 +182058,7 @@ } }, { - "id": 12676, + "id": 14460, "properties": { "east": "tall", "north": "low", @@ -166832,7 +182069,7 @@ } }, { - "id": 12677, + "id": 14461, "properties": { "east": "tall", "north": "low", @@ -166843,7 +182080,7 @@ } }, { - "id": 12678, + "id": 14462, "properties": { "east": "tall", "north": "low", @@ -166854,7 +182091,7 @@ } }, { - "id": 12679, + "id": 14463, "properties": { "east": "tall", "north": "low", @@ -166865,7 +182102,7 @@ } }, { - "id": 12680, + "id": 14464, "properties": { "east": "tall", "north": "low", @@ -166876,7 +182113,7 @@ } }, { - "id": 12681, + "id": 14465, "properties": { "east": "tall", "north": "low", @@ -166887,7 +182124,7 @@ } }, { - "id": 12682, + "id": 14466, "properties": { "east": "tall", "north": "low", @@ -166898,7 +182135,7 @@ } }, { - "id": 12683, + "id": 14467, "properties": { "east": "tall", "north": "low", @@ -166909,7 +182146,7 @@ } }, { - "id": 12684, + "id": 14468, "properties": { "east": "tall", "north": "tall", @@ -166920,7 +182157,7 @@ } }, { - "id": 12685, + "id": 14469, "properties": { "east": "tall", "north": "tall", @@ -166931,7 +182168,7 @@ } }, { - "id": 12686, + "id": 14470, "properties": { "east": "tall", "north": "tall", @@ -166942,7 +182179,7 @@ } }, { - "id": 12687, + "id": 14471, "properties": { "east": "tall", "north": "tall", @@ -166953,7 +182190,7 @@ } }, { - "id": 12688, + "id": 14472, "properties": { "east": "tall", "north": "tall", @@ -166964,7 +182201,7 @@ } }, { - "id": 12689, + "id": 14473, "properties": { "east": "tall", "north": "tall", @@ -166975,7 +182212,7 @@ } }, { - "id": 12690, + "id": 14474, "properties": { "east": "tall", "north": "tall", @@ -166986,7 +182223,7 @@ } }, { - "id": 12691, + "id": 14475, "properties": { "east": "tall", "north": "tall", @@ -166997,7 +182234,7 @@ } }, { - "id": 12692, + "id": 14476, "properties": { "east": "tall", "north": "tall", @@ -167008,7 +182245,7 @@ } }, { - "id": 12693, + "id": 14477, "properties": { "east": "tall", "north": "tall", @@ -167019,7 +182256,7 @@ } }, { - "id": 12694, + "id": 14478, "properties": { "east": "tall", "north": "tall", @@ -167030,7 +182267,7 @@ } }, { - "id": 12695, + "id": 14479, "properties": { "east": "tall", "north": "tall", @@ -167041,7 +182278,7 @@ } }, { - "id": 12696, + "id": 14480, "properties": { "east": "tall", "north": "tall", @@ -167052,7 +182289,7 @@ } }, { - "id": 12697, + "id": 14481, "properties": { "east": "tall", "north": "tall", @@ -167063,7 +182300,7 @@ } }, { - "id": 12698, + "id": 14482, "properties": { "east": "tall", "north": "tall", @@ -167074,7 +182311,7 @@ } }, { - "id": 12699, + "id": 14483, "properties": { "east": "tall", "north": "tall", @@ -167085,7 +182322,7 @@ } }, { - "id": 12700, + "id": 14484, "properties": { "east": "tall", "north": "tall", @@ -167096,7 +182333,7 @@ } }, { - "id": 12701, + "id": 14485, "properties": { "east": "tall", "north": "tall", @@ -167107,7 +182344,7 @@ } }, { - "id": 12702, + "id": 14486, "properties": { "east": "tall", "north": "tall", @@ -167118,7 +182355,7 @@ } }, { - "id": 12703, + "id": 14487, "properties": { "east": "tall", "north": "tall", @@ -167129,7 +182366,7 @@ } }, { - "id": 12704, + "id": 14488, "properties": { "east": "tall", "north": "tall", @@ -167140,7 +182377,7 @@ } }, { - "id": 12705, + "id": 14489, "properties": { "east": "tall", "north": "tall", @@ -167151,7 +182388,7 @@ } }, { - "id": 12706, + "id": 14490, "properties": { "east": "tall", "north": "tall", @@ -167162,7 +182399,7 @@ } }, { - "id": 12707, + "id": 14491, "properties": { "east": "tall", "north": "tall", @@ -167173,7 +182410,7 @@ } }, { - "id": 12708, + "id": 14492, "properties": { "east": "tall", "north": "tall", @@ -167184,7 +182421,7 @@ } }, { - "id": 12709, + "id": 14493, "properties": { "east": "tall", "north": "tall", @@ -167195,7 +182432,7 @@ } }, { - "id": 12710, + "id": 14494, "properties": { "east": "tall", "north": "tall", @@ -167206,7 +182443,7 @@ } }, { - "id": 12711, + "id": 14495, "properties": { "east": "tall", "north": "tall", @@ -167217,7 +182454,7 @@ } }, { - "id": 12712, + "id": 14496, "properties": { "east": "tall", "north": "tall", @@ -167228,7 +182465,7 @@ } }, { - "id": 12713, + "id": 14497, "properties": { "east": "tall", "north": "tall", @@ -167239,7 +182476,7 @@ } }, { - "id": 12714, + "id": 14498, "properties": { "east": "tall", "north": "tall", @@ -167250,7 +182487,7 @@ } }, { - "id": 12715, + "id": 14499, "properties": { "east": "tall", "north": "tall", @@ -167261,7 +182498,7 @@ } }, { - "id": 12716, + "id": 14500, "properties": { "east": "tall", "north": "tall", @@ -167272,7 +182509,7 @@ } }, { - "id": 12717, + "id": 14501, "properties": { "east": "tall", "north": "tall", @@ -167283,7 +182520,7 @@ } }, { - "id": 12718, + "id": 14502, "properties": { "east": "tall", "north": "tall", @@ -167294,7 +182531,7 @@ } }, { - "id": 12719, + "id": 14503, "properties": { "east": "tall", "north": "tall", @@ -167319,38 +182556,38 @@ }, "states": [ { - "id": 10243, + "id": 12027, "properties": { "facing": "north" } }, { - "id": 10244, + "id": 12028, "properties": { "facing": "east" } }, { - "id": 10245, + "id": 12029, "properties": { "facing": "south" } }, { - "id": 10246, + "id": 12030, "properties": { "facing": "west" } }, { "default": true, - "id": 10247, + "id": 12031, "properties": { "facing": "up" } }, { - "id": 10248, + "id": 12032, "properties": { "facing": "down" } @@ -167361,7 +182598,7 @@ "states": [ { "default": true, - "id": 4418 + "id": 5794 } ] }, @@ -167390,7 +182627,7 @@ }, "states": [ { - "id": 7940, + "id": 9424, "properties": { "east": "true", "north": "true", @@ -167400,7 +182637,7 @@ } }, { - "id": 7941, + "id": 9425, "properties": { "east": "true", "north": "true", @@ -167410,7 +182647,7 @@ } }, { - "id": 7942, + "id": 9426, "properties": { "east": "true", "north": "true", @@ -167420,7 +182657,7 @@ } }, { - "id": 7943, + "id": 9427, "properties": { "east": "true", "north": "true", @@ -167430,7 +182667,7 @@ } }, { - "id": 7944, + "id": 9428, "properties": { "east": "true", "north": "true", @@ -167440,7 +182677,7 @@ } }, { - "id": 7945, + "id": 9429, "properties": { "east": "true", "north": "true", @@ -167450,7 +182687,7 @@ } }, { - "id": 7946, + "id": 9430, "properties": { "east": "true", "north": "true", @@ -167460,7 +182697,7 @@ } }, { - "id": 7947, + "id": 9431, "properties": { "east": "true", "north": "true", @@ -167470,7 +182707,7 @@ } }, { - "id": 7948, + "id": 9432, "properties": { "east": "true", "north": "false", @@ -167480,7 +182717,7 @@ } }, { - "id": 7949, + "id": 9433, "properties": { "east": "true", "north": "false", @@ -167490,7 +182727,7 @@ } }, { - "id": 7950, + "id": 9434, "properties": { "east": "true", "north": "false", @@ -167500,7 +182737,7 @@ } }, { - "id": 7951, + "id": 9435, "properties": { "east": "true", "north": "false", @@ -167510,7 +182747,7 @@ } }, { - "id": 7952, + "id": 9436, "properties": { "east": "true", "north": "false", @@ -167520,7 +182757,7 @@ } }, { - "id": 7953, + "id": 9437, "properties": { "east": "true", "north": "false", @@ -167530,7 +182767,7 @@ } }, { - "id": 7954, + "id": 9438, "properties": { "east": "true", "north": "false", @@ -167540,7 +182777,7 @@ } }, { - "id": 7955, + "id": 9439, "properties": { "east": "true", "north": "false", @@ -167550,7 +182787,7 @@ } }, { - "id": 7956, + "id": 9440, "properties": { "east": "false", "north": "true", @@ -167560,7 +182797,7 @@ } }, { - "id": 7957, + "id": 9441, "properties": { "east": "false", "north": "true", @@ -167570,7 +182807,7 @@ } }, { - "id": 7958, + "id": 9442, "properties": { "east": "false", "north": "true", @@ -167580,7 +182817,7 @@ } }, { - "id": 7959, + "id": 9443, "properties": { "east": "false", "north": "true", @@ -167590,7 +182827,7 @@ } }, { - "id": 7960, + "id": 9444, "properties": { "east": "false", "north": "true", @@ -167600,7 +182837,7 @@ } }, { - "id": 7961, + "id": 9445, "properties": { "east": "false", "north": "true", @@ -167610,7 +182847,7 @@ } }, { - "id": 7962, + "id": 9446, "properties": { "east": "false", "north": "true", @@ -167620,7 +182857,7 @@ } }, { - "id": 7963, + "id": 9447, "properties": { "east": "false", "north": "true", @@ -167630,7 +182867,7 @@ } }, { - "id": 7964, + "id": 9448, "properties": { "east": "false", "north": "false", @@ -167640,7 +182877,7 @@ } }, { - "id": 7965, + "id": 9449, "properties": { "east": "false", "north": "false", @@ -167650,7 +182887,7 @@ } }, { - "id": 7966, + "id": 9450, "properties": { "east": "false", "north": "false", @@ -167660,7 +182897,7 @@ } }, { - "id": 7967, + "id": 9451, "properties": { "east": "false", "north": "false", @@ -167670,7 +182907,7 @@ } }, { - "id": 7968, + "id": 9452, "properties": { "east": "false", "north": "false", @@ -167680,7 +182917,7 @@ } }, { - "id": 7969, + "id": 9453, "properties": { "east": "false", "north": "false", @@ -167690,7 +182927,7 @@ } }, { - "id": 7970, + "id": 9454, "properties": { "east": "false", "north": "false", @@ -167701,7 +182938,7 @@ }, { "default": true, - "id": 7971, + "id": 9455, "properties": { "east": "false", "north": "false", @@ -167716,7 +182953,7 @@ "states": [ { "default": true, - "id": 7490 + "id": 8974 } ] }, @@ -167724,7 +182961,7 @@ "states": [ { "default": true, - "id": 1671 + "id": 2029 } ] }, @@ -167740,25 +182977,25 @@ "states": [ { "default": true, - "id": 8950, + "id": 10594, "properties": { "facing": "north" } }, { - "id": 8951, + "id": 10595, "properties": { "facing": "south" } }, { - "id": 8952, + "id": 10596, "properties": { "facing": "west" } }, { - "id": 8953, + "id": 10597, "properties": { "facing": "east" } @@ -167769,7 +183006,7 @@ "states": [ { "default": true, - "id": 1652 + "id": 2010 } ] }, @@ -167777,7 +183014,7 @@ "states": [ { "default": true, - "id": 7343 + "id": 8827 } ] }, @@ -167790,14 +183027,14 @@ }, "states": [ { - "id": 5747, + "id": 7187, "properties": { "lit": "true" } }, { "default": true, - "id": 5748, + "id": 7188, "properties": { "lit": "false" } @@ -167813,14 +183050,14 @@ }, "states": [ { - "id": 4192, + "id": 5568, "properties": { "lit": "true" } }, { "default": true, - "id": 4193, + "id": 5569, "properties": { "lit": "false" } @@ -167837,13 +183074,13 @@ "states": [ { "default": true, - "id": 4196, + "id": 5572, "properties": { "lit": "true" } }, { - "id": 4197, + "id": 5573, "properties": { "lit": "false" } @@ -167866,56 +183103,56 @@ "states": [ { "default": true, - "id": 4198, + "id": 5574, "properties": { "facing": "north", "lit": "true" } }, { - "id": 4199, + "id": 5575, "properties": { "facing": "north", "lit": "false" } }, { - "id": 4200, + "id": 5576, "properties": { "facing": "south", "lit": "true" } }, { - "id": 4201, + "id": 5577, "properties": { "facing": "south", "lit": "false" } }, { - "id": 4202, + "id": 5578, "properties": { "facing": "west", "lit": "true" } }, { - "id": 4203, + "id": 5579, "properties": { "facing": "west", "lit": "false" } }, { - "id": 4204, + "id": 5580, "properties": { "facing": "east", "lit": "true" } }, { - "id": 4205, + "id": 5581, "properties": { "facing": "east", "lit": "false" @@ -167965,8638 +183202,8638 @@ ] }, "states": [ - { - "id": 2312, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 2313, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 2314, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 2315, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 2316, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 2317, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 2318, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 2319, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "id": 2320, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "none", - "west": "none" - } - }, - { - "id": 2321, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 2322, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 2323, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 2324, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 2325, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 2326, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 2327, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 2328, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 2329, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "none", - "west": "none" - } - }, - { - "id": 2330, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "up", - "west": "up" - } - }, - { - "id": 2331, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "up", - "west": "side" - } - }, - { - "id": 2332, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "up", - "west": "none" - } - }, - { - "id": 2333, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "side", - "west": "up" - } - }, - { - "id": 2334, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "side", - "west": "side" - } - }, - { - "id": 2335, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "side", - "west": "none" - } - }, - { - "id": 2336, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "none", - "west": "up" - } - }, - { - "id": 2337, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "none", - "west": "side" - } - }, - { - "id": 2338, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "none", - "west": "none" - } - }, - { - "id": 2339, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "up", - "west": "up" - } - }, - { - "id": 2340, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "up", - "west": "side" - } - }, - { - "id": 2341, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "up", - "west": "none" - } - }, - { - "id": 2342, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "side", - "west": "up" - } - }, - { - "id": 2343, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "side", - "west": "side" - } - }, - { - "id": 2344, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "side", - "west": "none" - } - }, - { - "id": 2345, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "none", - "west": "up" - } - }, - { - "id": 2346, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "none", - "west": "side" - } - }, - { - "id": 2347, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "none", - "west": "none" - } - }, - { - "id": 2348, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "up", - "west": "up" - } - }, - { - "id": 2349, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "up", - "west": "side" - } - }, - { - "id": 2350, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "up", - "west": "none" - } - }, - { - "id": 2351, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "side", - "west": "up" - } - }, - { - "id": 2352, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "side", - "west": "side" - } - }, - { - "id": 2353, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "side", - "west": "none" - } - }, - { - "id": 2354, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "none", - "west": "up" - } - }, - { - "id": 2355, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "none", - "west": "side" - } - }, - { - "id": 2356, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "none", - "west": "none" - } - }, - { - "id": 2357, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "up", - "west": "up" - } - }, - { - "id": 2358, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "up", - "west": "side" - } - }, - { - "id": 2359, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "up", - "west": "none" - } - }, - { - "id": 2360, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "side", - "west": "up" - } - }, - { - "id": 2361, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "side", - "west": "side" - } - }, - { - "id": 2362, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "side", - "west": "none" - } - }, - { - "id": 2363, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "none", - "west": "up" - } - }, - { - "id": 2364, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "none", - "west": "side" - } - }, - { - "id": 2365, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "none", - "west": "none" - } - }, - { - "id": 2366, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "up", - "west": "up" - } - }, - { - "id": 2367, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "up", - "west": "side" - } - }, - { - "id": 2368, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "up", - "west": "none" - } - }, - { - "id": 2369, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "side", - "west": "up" - } - }, - { - "id": 2370, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "side", - "west": "side" - } - }, - { - "id": 2371, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "side", - "west": "none" - } - }, - { - "id": 2372, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "none", - "west": "up" - } - }, - { - "id": 2373, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "none", - "west": "side" - } - }, - { - "id": 2374, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "none", - "west": "none" - } - }, - { - "id": 2375, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "up", - "west": "up" - } - }, - { - "id": 2376, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "up", - "west": "side" - } - }, - { - "id": 2377, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "up", - "west": "none" - } - }, - { - "id": 2378, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "side", - "west": "up" - } - }, - { - "id": 2379, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "side", - "west": "side" - } - }, - { - "id": 2380, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "side", - "west": "none" - } - }, - { - "id": 2381, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "none", - "west": "up" - } - }, - { - "id": 2382, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "none", - "west": "side" - } - }, - { - "id": 2383, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "none", - "west": "none" - } - }, - { - "id": 2384, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "up", - "west": "up" - } - }, - { - "id": 2385, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "up", - "west": "side" - } - }, - { - "id": 2386, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "up", - "west": "none" - } - }, - { - "id": 2387, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "side", - "west": "up" - } - }, - { - "id": 2388, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "side", - "west": "side" - } - }, - { - "id": 2389, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "side", - "west": "none" - } - }, - { - "id": 2390, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "none", - "west": "up" - } - }, - { - "id": 2391, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "none", - "west": "side" - } - }, - { - "id": 2392, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "none", - "west": "none" - } - }, - { - "id": 2393, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "up", - "west": "up" - } - }, - { - "id": 2394, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "up", - "west": "side" - } - }, - { - "id": 2395, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "up", - "west": "none" - } - }, - { - "id": 2396, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "side", - "west": "up" - } - }, - { - "id": 2397, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "side", - "west": "side" - } - }, - { - "id": 2398, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "side", - "west": "none" - } - }, - { - "id": 2399, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "none", - "west": "up" - } - }, - { - "id": 2400, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "none", - "west": "side" - } - }, - { - "id": 2401, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "none", - "west": "none" - } - }, - { - "id": 2402, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "up", - "west": "up" - } - }, - { - "id": 2403, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "up", - "west": "side" - } - }, - { - "id": 2404, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "up", - "west": "none" - } - }, - { - "id": 2405, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "side", - "west": "up" - } - }, - { - "id": 2406, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "side", - "west": "side" - } - }, - { - "id": 2407, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "side", - "west": "none" - } - }, - { - "id": 2408, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "none", - "west": "up" - } - }, - { - "id": 2409, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "none", - "west": "side" - } - }, - { - "id": 2410, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "none", - "west": "none" - } - }, - { - "id": 2411, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "up", - "west": "up" - } - }, - { - "id": 2412, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "up", - "west": "side" - } - }, - { - "id": 2413, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "up", - "west": "none" - } - }, - { - "id": 2414, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "side", - "west": "up" - } - }, - { - "id": 2415, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "side", - "west": "side" - } - }, - { - "id": 2416, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "side", - "west": "none" - } - }, - { - "id": 2417, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "none", - "west": "up" - } - }, - { - "id": 2418, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "none", - "west": "side" - } - }, - { - "id": 2419, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "none", - "west": "none" - } - }, - { - "id": 2420, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "up", - "west": "up" - } - }, - { - "id": 2421, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "up", - "west": "side" - } - }, - { - "id": 2422, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "up", - "west": "none" - } - }, - { - "id": 2423, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "side", - "west": "up" - } - }, - { - "id": 2424, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "side", - "west": "side" - } - }, - { - "id": 2425, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "side", - "west": "none" - } - }, - { - "id": 2426, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "none", - "west": "up" - } - }, - { - "id": 2427, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "none", - "west": "side" - } - }, - { - "id": 2428, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "none", - "west": "none" - } - }, - { - "id": 2429, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "up", - "west": "up" - } - }, - { - "id": 2430, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "up", - "west": "side" - } - }, - { - "id": 2431, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "up", - "west": "none" - } - }, - { - "id": 2432, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "side", - "west": "up" - } - }, - { - "id": 2433, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "side", - "west": "side" - } - }, - { - "id": 2434, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "side", - "west": "none" - } - }, - { - "id": 2435, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "none", - "west": "up" - } - }, - { - "id": 2436, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "none", - "west": "side" - } - }, - { - "id": 2437, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "none", - "west": "none" - } - }, - { - "id": 2438, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "up", - "west": "up" - } - }, - { - "id": 2439, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "up", - "west": "side" - } - }, - { - "id": 2440, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "up", - "west": "none" - } - }, - { - "id": 2441, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "side", - "west": "up" - } - }, - { - "id": 2442, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "side", - "west": "side" - } - }, - { - "id": 2443, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "side", - "west": "none" - } - }, - { - "id": 2444, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "none", - "west": "up" - } - }, - { - "id": 2445, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "none", - "west": "side" - } - }, - { - "id": 2446, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "none", - "west": "none" - } - }, - { - "id": 2447, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "up", - "west": "up" - } - }, - { - "id": 2448, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "up", - "west": "side" - } - }, - { - "id": 2449, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "up", - "west": "none" - } - }, - { - "id": 2450, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "side", - "west": "up" - } - }, - { - "id": 2451, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "side", - "west": "side" - } - }, - { - "id": 2452, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "side", - "west": "none" - } - }, - { - "id": 2453, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "none", - "west": "up" - } - }, - { - "id": 2454, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "none", - "west": "side" - } - }, - { - "id": 2455, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "none", - "west": "none" - } - }, - { - "id": 2456, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 2457, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 2458, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 2459, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 2460, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 2461, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 2462, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 2463, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "id": 2464, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "none", - "west": "none" - } - }, - { - "id": 2465, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 2466, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 2467, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 2468, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 2469, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 2470, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 2471, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 2472, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 2473, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "none", - "west": "none" - } - }, - { - "id": 2474, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "up", - "west": "up" - } - }, - { - "id": 2475, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "up", - "west": "side" - } - }, - { - "id": 2476, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "up", - "west": "none" - } - }, - { - "id": 2477, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "side", - "west": "up" - } - }, - { - "id": 2478, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "side", - "west": "side" - } - }, - { - "id": 2479, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "side", - "west": "none" - } - }, - { - "id": 2480, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "none", - "west": "up" - } - }, - { - "id": 2481, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "none", - "west": "side" - } - }, - { - "id": 2482, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "none", - "west": "none" - } - }, - { - "id": 2483, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "up", - "west": "up" - } - }, - { - "id": 2484, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "up", - "west": "side" - } - }, - { - "id": 2485, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "up", - "west": "none" - } - }, - { - "id": 2486, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "side", - "west": "up" - } - }, - { - "id": 2487, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "side", - "west": "side" - } - }, - { - "id": 2488, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "side", - "west": "none" - } - }, - { - "id": 2489, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "none", - "west": "up" - } - }, - { - "id": 2490, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "none", - "west": "side" - } - }, - { - "id": 2491, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "none", - "west": "none" - } - }, - { - "id": 2492, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "up", - "west": "up" - } - }, - { - "id": 2493, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "up", - "west": "side" - } - }, - { - "id": 2494, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "up", - "west": "none" - } - }, - { - "id": 2495, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "side", - "west": "up" - } - }, - { - "id": 2496, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "side", - "west": "side" - } - }, - { - "id": 2497, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "side", - "west": "none" - } - }, - { - "id": 2498, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "none", - "west": "up" - } - }, - { - "id": 2499, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "none", - "west": "side" - } - }, - { - "id": 2500, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "none", - "west": "none" - } - }, - { - "id": 2501, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "up", - "west": "up" - } - }, - { - "id": 2502, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "up", - "west": "side" - } - }, - { - "id": 2503, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "up", - "west": "none" - } - }, - { - "id": 2504, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "side", - "west": "up" - } - }, - { - "id": 2505, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "side", - "west": "side" - } - }, - { - "id": 2506, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "side", - "west": "none" - } - }, - { - "id": 2507, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "none", - "west": "up" - } - }, - { - "id": 2508, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "none", - "west": "side" - } - }, - { - "id": 2509, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "none", - "west": "none" - } - }, - { - "id": 2510, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "up", - "west": "up" - } - }, - { - "id": 2511, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "up", - "west": "side" - } - }, - { - "id": 2512, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "up", - "west": "none" - } - }, - { - "id": 2513, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "side", - "west": "up" - } - }, - { - "id": 2514, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "side", - "west": "side" - } - }, - { - "id": 2515, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "side", - "west": "none" - } - }, - { - "id": 2516, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "none", - "west": "up" - } - }, - { - "id": 2517, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "none", - "west": "side" - } - }, - { - "id": 2518, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "none", - "west": "none" - } - }, - { - "id": 2519, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "up", - "west": "up" - } - }, - { - "id": 2520, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "up", - "west": "side" - } - }, - { - "id": 2521, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "up", - "west": "none" - } - }, - { - "id": 2522, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "side", - "west": "up" - } - }, - { - "id": 2523, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "side", - "west": "side" - } - }, - { - "id": 2524, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "side", - "west": "none" - } - }, - { - "id": 2525, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "none", - "west": "up" - } - }, - { - "id": 2526, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "none", - "west": "side" - } - }, - { - "id": 2527, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "none", - "west": "none" - } - }, - { - "id": 2528, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "up", - "west": "up" - } - }, - { - "id": 2529, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "up", - "west": "side" - } - }, - { - "id": 2530, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "up", - "west": "none" - } - }, - { - "id": 2531, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "side", - "west": "up" - } - }, - { - "id": 2532, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "side", - "west": "side" - } - }, - { - "id": 2533, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "side", - "west": "none" - } - }, - { - "id": 2534, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "none", - "west": "up" - } - }, - { - "id": 2535, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "none", - "west": "side" - } - }, - { - "id": 2536, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "none", - "west": "none" - } - }, - { - "id": 2537, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "up", - "west": "up" - } - }, - { - "id": 2538, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "up", - "west": "side" - } - }, - { - "id": 2539, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "up", - "west": "none" - } - }, - { - "id": 2540, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "side", - "west": "up" - } - }, - { - "id": 2541, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "side", - "west": "side" - } - }, - { - "id": 2542, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "side", - "west": "none" - } - }, - { - "id": 2543, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "none", - "west": "up" - } - }, - { - "id": 2544, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "none", - "west": "side" - } - }, - { - "id": 2545, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "none", - "west": "none" - } - }, - { - "id": 2546, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "up", - "west": "up" - } - }, - { - "id": 2547, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "up", - "west": "side" - } - }, - { - "id": 2548, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "up", - "west": "none" - } - }, - { - "id": 2549, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "side", - "west": "up" - } - }, - { - "id": 2550, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "side", - "west": "side" - } - }, - { - "id": 2551, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "side", - "west": "none" - } - }, - { - "id": 2552, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "none", - "west": "up" - } - }, - { - "id": 2553, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "none", - "west": "side" - } - }, - { - "id": 2554, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "none", - "west": "none" - } - }, - { - "id": 2555, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "up", - "west": "up" - } - }, - { - "id": 2556, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "up", - "west": "side" - } - }, - { - "id": 2557, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "up", - "west": "none" - } - }, - { - "id": 2558, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "side", - "west": "up" - } - }, - { - "id": 2559, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "side", - "west": "side" - } - }, - { - "id": 2560, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "side", - "west": "none" - } - }, - { - "id": 2561, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "none", - "west": "up" - } - }, - { - "id": 2562, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "none", - "west": "side" - } - }, - { - "id": 2563, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "none", - "west": "none" - } - }, - { - "id": 2564, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "up", - "west": "up" - } - }, - { - "id": 2565, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "up", - "west": "side" - } - }, - { - "id": 2566, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "up", - "west": "none" - } - }, - { - "id": 2567, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "side", - "west": "up" - } - }, - { - "id": 2568, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "side", - "west": "side" - } - }, - { - "id": 2569, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "side", - "west": "none" - } - }, - { - "id": 2570, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "none", - "west": "up" - } - }, - { - "id": 2571, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "none", - "west": "side" - } - }, - { - "id": 2572, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "none", - "west": "none" - } - }, - { - "id": 2573, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "up", - "west": "up" - } - }, - { - "id": 2574, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "up", - "west": "side" - } - }, - { - "id": 2575, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "up", - "west": "none" - } - }, - { - "id": 2576, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "side", - "west": "up" - } - }, - { - "id": 2577, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "side", - "west": "side" - } - }, - { - "id": 2578, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "side", - "west": "none" - } - }, - { - "id": 2579, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "none", - "west": "up" - } - }, - { - "id": 2580, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "none", - "west": "side" - } - }, - { - "id": 2581, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "none", - "west": "none" - } - }, - { - "id": 2582, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "up", - "west": "up" - } - }, - { - "id": 2583, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "up", - "west": "side" - } - }, - { - "id": 2584, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "up", - "west": "none" - } - }, - { - "id": 2585, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "side", - "west": "up" - } - }, - { - "id": 2586, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "side", - "west": "side" - } - }, - { - "id": 2587, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "side", - "west": "none" - } - }, - { - "id": 2588, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "none", - "west": "up" - } - }, - { - "id": 2589, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "none", - "west": "side" - } - }, - { - "id": 2590, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "none", - "west": "none" - } - }, - { - "id": 2591, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "up", - "west": "up" - } - }, - { - "id": 2592, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "up", - "west": "side" - } - }, - { - "id": 2593, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "up", - "west": "none" - } - }, - { - "id": 2594, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "side", - "west": "up" - } - }, - { - "id": 2595, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "side", - "west": "side" - } - }, - { - "id": 2596, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "side", - "west": "none" - } - }, - { - "id": 2597, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "none", - "west": "up" - } - }, - { - "id": 2598, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "none", - "west": "side" - } - }, - { - "id": 2599, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "none", - "west": "none" - } - }, - { - "id": 2600, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 2601, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 2602, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 2603, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 2604, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 2605, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 2606, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 2607, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "id": 2608, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "none", - "west": "none" - } - }, - { - "id": 2609, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 2610, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 2611, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 2612, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 2613, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 2614, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 2615, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 2616, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 2617, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "none", - "west": "none" - } - }, - { - "id": 2618, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "up", - "west": "up" - } - }, - { - "id": 2619, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "up", - "west": "side" - } - }, - { - "id": 2620, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "up", - "west": "none" - } - }, - { - "id": 2621, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "side", - "west": "up" - } - }, - { - "id": 2622, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "side", - "west": "side" - } - }, - { - "id": 2623, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "side", - "west": "none" - } - }, - { - "id": 2624, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "none", - "west": "up" - } - }, - { - "id": 2625, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "none", - "west": "side" - } - }, - { - "id": 2626, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "none", - "west": "none" - } - }, - { - "id": 2627, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "up", - "west": "up" - } - }, - { - "id": 2628, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "up", - "west": "side" - } - }, - { - "id": 2629, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "up", - "west": "none" - } - }, - { - "id": 2630, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "side", - "west": "up" - } - }, - { - "id": 2631, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "side", - "west": "side" - } - }, - { - "id": 2632, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "side", - "west": "none" - } - }, - { - "id": 2633, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "none", - "west": "up" - } - }, - { - "id": 2634, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "none", - "west": "side" - } - }, - { - "id": 2635, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "none", - "west": "none" - } - }, - { - "id": 2636, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "up", - "west": "up" - } - }, - { - "id": 2637, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "up", - "west": "side" - } - }, - { - "id": 2638, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "up", - "west": "none" - } - }, - { - "id": 2639, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "side", - "west": "up" - } - }, - { - "id": 2640, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "side", - "west": "side" - } - }, - { - "id": 2641, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "side", - "west": "none" - } - }, - { - "id": 2642, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "none", - "west": "up" - } - }, - { - "id": 2643, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "none", - "west": "side" - } - }, - { - "id": 2644, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "none", - "west": "none" - } - }, - { - "id": 2645, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "up", - "west": "up" - } - }, - { - "id": 2646, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "up", - "west": "side" - } - }, - { - "id": 2647, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "up", - "west": "none" - } - }, - { - "id": 2648, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "side", - "west": "up" - } - }, - { - "id": 2649, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "side", - "west": "side" - } - }, - { - "id": 2650, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "side", - "west": "none" - } - }, - { - "id": 2651, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "none", - "west": "up" - } - }, - { - "id": 2652, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "none", - "west": "side" - } - }, - { - "id": 2653, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "none", - "west": "none" - } - }, - { - "id": 2654, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "up", - "west": "up" - } - }, - { - "id": 2655, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "up", - "west": "side" - } - }, - { - "id": 2656, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "up", - "west": "none" - } - }, - { - "id": 2657, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "side", - "west": "up" - } - }, - { - "id": 2658, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "side", - "west": "side" - } - }, - { - "id": 2659, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "side", - "west": "none" - } - }, - { - "id": 2660, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "none", - "west": "up" - } - }, - { - "id": 2661, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "none", - "west": "side" - } - }, - { - "id": 2662, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "none", - "west": "none" - } - }, - { - "id": 2663, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "up", - "west": "up" - } - }, - { - "id": 2664, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "up", - "west": "side" - } - }, - { - "id": 2665, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "up", - "west": "none" - } - }, - { - "id": 2666, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "side", - "west": "up" - } - }, - { - "id": 2667, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "side", - "west": "side" - } - }, - { - "id": 2668, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "side", - "west": "none" - } - }, - { - "id": 2669, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "none", - "west": "up" - } - }, - { - "id": 2670, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "none", - "west": "side" - } - }, - { - "id": 2671, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "none", - "west": "none" - } - }, - { - "id": 2672, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "up", - "west": "up" - } - }, - { - "id": 2673, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "up", - "west": "side" - } - }, - { - "id": 2674, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "up", - "west": "none" - } - }, - { - "id": 2675, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "side", - "west": "up" - } - }, - { - "id": 2676, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "side", - "west": "side" - } - }, - { - "id": 2677, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "side", - "west": "none" - } - }, - { - "id": 2678, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "none", - "west": "up" - } - }, - { - "id": 2679, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "none", - "west": "side" - } - }, - { - "id": 2680, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "none", - "west": "none" - } - }, - { - "id": 2681, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "up", - "west": "up" - } - }, - { - "id": 2682, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "up", - "west": "side" - } - }, - { - "id": 2683, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "up", - "west": "none" - } - }, - { - "id": 2684, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "side", - "west": "up" - } - }, - { - "id": 2685, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "side", - "west": "side" - } - }, - { - "id": 2686, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "side", - "west": "none" - } - }, - { - "id": 2687, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "none", - "west": "up" - } - }, - { - "id": 2688, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "none", - "west": "side" - } - }, - { - "id": 2689, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "none", - "west": "none" - } - }, - { - "id": 2690, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "up", - "west": "up" - } - }, - { - "id": 2691, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "up", - "west": "side" - } - }, - { - "id": 2692, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "up", - "west": "none" - } - }, - { - "id": 2693, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "side", - "west": "up" - } - }, - { - "id": 2694, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "side", - "west": "side" - } - }, - { - "id": 2695, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "side", - "west": "none" - } - }, - { - "id": 2696, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "none", - "west": "up" - } - }, - { - "id": 2697, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "none", - "west": "side" - } - }, - { - "id": 2698, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "none", - "west": "none" - } - }, - { - "id": 2699, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "up", - "west": "up" - } - }, - { - "id": 2700, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "up", - "west": "side" - } - }, - { - "id": 2701, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "up", - "west": "none" - } - }, - { - "id": 2702, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "side", - "west": "up" - } - }, - { - "id": 2703, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "side", - "west": "side" - } - }, - { - "id": 2704, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "side", - "west": "none" - } - }, - { - "id": 2705, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "none", - "west": "up" - } - }, - { - "id": 2706, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "none", - "west": "side" - } - }, - { - "id": 2707, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "none", - "west": "none" - } - }, - { - "id": 2708, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "up", - "west": "up" - } - }, - { - "id": 2709, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "up", - "west": "side" - } - }, - { - "id": 2710, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "up", - "west": "none" - } - }, - { - "id": 2711, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "side", - "west": "up" - } - }, - { - "id": 2712, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "side", - "west": "side" - } - }, - { - "id": 2713, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "side", - "west": "none" - } - }, - { - "id": 2714, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "none", - "west": "up" - } - }, - { - "id": 2715, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "none", - "west": "side" - } - }, - { - "id": 2716, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "none", - "west": "none" - } - }, - { - "id": 2717, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "up", - "west": "up" - } - }, - { - "id": 2718, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "up", - "west": "side" - } - }, - { - "id": 2719, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "up", - "west": "none" - } - }, - { - "id": 2720, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "side", - "west": "up" - } - }, - { - "id": 2721, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "side", - "west": "side" - } - }, - { - "id": 2722, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "side", - "west": "none" - } - }, - { - "id": 2723, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "none", - "west": "up" - } - }, - { - "id": 2724, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "none", - "west": "side" - } - }, - { - "id": 2725, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "none", - "west": "none" - } - }, - { - "id": 2726, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "up", - "west": "up" - } - }, - { - "id": 2727, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "up", - "west": "side" - } - }, - { - "id": 2728, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "up", - "west": "none" - } - }, - { - "id": 2729, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "side", - "west": "up" - } - }, - { - "id": 2730, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "side", - "west": "side" - } - }, - { - "id": 2731, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "side", - "west": "none" - } - }, - { - "id": 2732, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "none", - "west": "up" - } - }, - { - "id": 2733, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "none", - "west": "side" - } - }, - { - "id": 2734, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "none", - "west": "none" - } - }, - { - "id": 2735, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "up", - "west": "up" - } - }, - { - "id": 2736, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "up", - "west": "side" - } - }, - { - "id": 2737, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "up", - "west": "none" - } - }, - { - "id": 2738, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "side", - "west": "up" - } - }, - { - "id": 2739, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "side", - "west": "side" - } - }, - { - "id": 2740, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "side", - "west": "none" - } - }, - { - "id": 2741, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "none", - "west": "up" - } - }, - { - "id": 2742, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "none", - "west": "side" - } - }, - { - "id": 2743, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "none", - "west": "none" - } - }, - { - "id": 2744, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 2745, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 2746, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 2747, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 2748, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 2749, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 2750, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 2751, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "id": 2752, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "none", - "west": "none" - } - }, - { - "id": 2753, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 2754, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 2755, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 2756, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 2757, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 2758, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 2759, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 2760, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 2761, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "none", - "west": "none" - } - }, - { - "id": 2762, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "up", - "west": "up" - } - }, - { - "id": 2763, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "up", - "west": "side" - } - }, - { - "id": 2764, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "up", - "west": "none" - } - }, - { - "id": 2765, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "side", - "west": "up" - } - }, - { - "id": 2766, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "side", - "west": "side" - } - }, - { - "id": 2767, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "side", - "west": "none" - } - }, - { - "id": 2768, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "none", - "west": "up" - } - }, - { - "id": 2769, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "none", - "west": "side" - } - }, - { - "id": 2770, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "none", - "west": "none" - } - }, - { - "id": 2771, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "up", - "west": "up" - } - }, - { - "id": 2772, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "up", - "west": "side" - } - }, - { - "id": 2773, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "up", - "west": "none" - } - }, - { - "id": 2774, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "side", - "west": "up" - } - }, - { - "id": 2775, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "side", - "west": "side" - } - }, - { - "id": 2776, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "side", - "west": "none" - } - }, - { - "id": 2777, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "none", - "west": "up" - } - }, - { - "id": 2778, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "none", - "west": "side" - } - }, - { - "id": 2779, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "none", - "west": "none" - } - }, - { - "id": 2780, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "up", - "west": "up" - } - }, - { - "id": 2781, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "up", - "west": "side" - } - }, - { - "id": 2782, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "up", - "west": "none" - } - }, - { - "id": 2783, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "side", - "west": "up" - } - }, - { - "id": 2784, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "side", - "west": "side" - } - }, - { - "id": 2785, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "side", - "west": "none" - } - }, - { - "id": 2786, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "none", - "west": "up" - } - }, - { - "id": 2787, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "none", - "west": "side" - } - }, - { - "id": 2788, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "none", - "west": "none" - } - }, - { - "id": 2789, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "up", - "west": "up" - } - }, - { - "id": 2790, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "up", - "west": "side" - } - }, - { - "id": 2791, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "up", - "west": "none" - } - }, - { - "id": 2792, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "side", - "west": "up" - } - }, - { - "id": 2793, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "side", - "west": "side" - } - }, - { - "id": 2794, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "side", - "west": "none" - } - }, - { - "id": 2795, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "none", - "west": "up" - } - }, - { - "id": 2796, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "none", - "west": "side" - } - }, - { - "id": 2797, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "none", - "west": "none" - } - }, - { - "id": 2798, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "up", - "west": "up" - } - }, - { - "id": 2799, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "up", - "west": "side" - } - }, - { - "id": 2800, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "up", - "west": "none" - } - }, - { - "id": 2801, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "side", - "west": "up" - } - }, - { - "id": 2802, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "side", - "west": "side" - } - }, - { - "id": 2803, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "side", - "west": "none" - } - }, - { - "id": 2804, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "none", - "west": "up" - } - }, - { - "id": 2805, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "none", - "west": "side" - } - }, - { - "id": 2806, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "none", - "west": "none" - } - }, - { - "id": 2807, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "up", - "west": "up" - } - }, - { - "id": 2808, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "up", - "west": "side" - } - }, - { - "id": 2809, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "up", - "west": "none" - } - }, - { - "id": 2810, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "side", - "west": "up" - } - }, - { - "id": 2811, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "side", - "west": "side" - } - }, - { - "id": 2812, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "side", - "west": "none" - } - }, - { - "id": 2813, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "none", - "west": "up" - } - }, - { - "id": 2814, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "none", - "west": "side" - } - }, - { - "id": 2815, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "none", - "west": "none" - } - }, - { - "id": 2816, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "up", - "west": "up" - } - }, - { - "id": 2817, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "up", - "west": "side" - } - }, - { - "id": 2818, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "up", - "west": "none" - } - }, - { - "id": 2819, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "side", - "west": "up" - } - }, - { - "id": 2820, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "side", - "west": "side" - } - }, - { - "id": 2821, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "side", - "west": "none" - } - }, - { - "id": 2822, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "none", - "west": "up" - } - }, - { - "id": 2823, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "none", - "west": "side" - } - }, - { - "id": 2824, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "none", - "west": "none" - } - }, - { - "id": 2825, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "up", - "west": "up" - } - }, - { - "id": 2826, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "up", - "west": "side" - } - }, - { - "id": 2827, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "up", - "west": "none" - } - }, - { - "id": 2828, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "side", - "west": "up" - } - }, - { - "id": 2829, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "side", - "west": "side" - } - }, - { - "id": 2830, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "side", - "west": "none" - } - }, - { - "id": 2831, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "none", - "west": "up" - } - }, - { - "id": 2832, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "none", - "west": "side" - } - }, - { - "id": 2833, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "none", - "west": "none" - } - }, - { - "id": 2834, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "up", - "west": "up" - } - }, - { - "id": 2835, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "up", - "west": "side" - } - }, - { - "id": 2836, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "up", - "west": "none" - } - }, - { - "id": 2837, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "side", - "west": "up" - } - }, - { - "id": 2838, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "side", - "west": "side" - } - }, - { - "id": 2839, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "side", - "west": "none" - } - }, - { - "id": 2840, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "none", - "west": "up" - } - }, - { - "id": 2841, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "none", - "west": "side" - } - }, - { - "id": 2842, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "none", - "west": "none" - } - }, - { - "id": 2843, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "up", - "west": "up" - } - }, - { - "id": 2844, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "up", - "west": "side" - } - }, - { - "id": 2845, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "up", - "west": "none" - } - }, - { - "id": 2846, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "side", - "west": "up" - } - }, - { - "id": 2847, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "side", - "west": "side" - } - }, - { - "id": 2848, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "side", - "west": "none" - } - }, - { - "id": 2849, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "none", - "west": "up" - } - }, - { - "id": 2850, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "none", - "west": "side" - } - }, - { - "id": 2851, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "none", - "west": "none" - } - }, - { - "id": 2852, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "up", - "west": "up" - } - }, - { - "id": 2853, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "up", - "west": "side" - } - }, - { - "id": 2854, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "up", - "west": "none" - } - }, - { - "id": 2855, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "side", - "west": "up" - } - }, - { - "id": 2856, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "side", - "west": "side" - } - }, - { - "id": 2857, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "side", - "west": "none" - } - }, - { - "id": 2858, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "none", - "west": "up" - } - }, - { - "id": 2859, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "none", - "west": "side" - } - }, - { - "id": 2860, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "none", - "west": "none" - } - }, - { - "id": 2861, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "up", - "west": "up" - } - }, - { - "id": 2862, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "up", - "west": "side" - } - }, - { - "id": 2863, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "up", - "west": "none" - } - }, - { - "id": 2864, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "side", - "west": "up" - } - }, - { - "id": 2865, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "side", - "west": "side" - } - }, - { - "id": 2866, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "side", - "west": "none" - } - }, - { - "id": 2867, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "none", - "west": "up" - } - }, - { - "id": 2868, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "none", - "west": "side" - } - }, - { - "id": 2869, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "none", - "west": "none" - } - }, - { - "id": 2870, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "up", - "west": "up" - } - }, - { - "id": 2871, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "up", - "west": "side" - } - }, - { - "id": 2872, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "up", - "west": "none" - } - }, - { - "id": 2873, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "side", - "west": "up" - } - }, - { - "id": 2874, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "side", - "west": "side" - } - }, - { - "id": 2875, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "side", - "west": "none" - } - }, - { - "id": 2876, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "none", - "west": "up" - } - }, - { - "id": 2877, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "none", - "west": "side" - } - }, - { - "id": 2878, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "none", - "west": "none" - } - }, - { - "id": 2879, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "up", - "west": "up" - } - }, - { - "id": 2880, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "up", - "west": "side" - } - }, - { - "id": 2881, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "up", - "west": "none" - } - }, - { - "id": 2882, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "side", - "west": "up" - } - }, - { - "id": 2883, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "side", - "west": "side" - } - }, - { - "id": 2884, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "side", - "west": "none" - } - }, - { - "id": 2885, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "none", - "west": "up" - } - }, - { - "id": 2886, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "none", - "west": "side" - } - }, - { - "id": 2887, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "none", - "west": "none" - } - }, - { - "id": 2888, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 2889, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 2890, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 2891, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 2892, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 2893, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 2894, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 2895, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "id": 2896, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "none", - "west": "none" - } - }, - { - "id": 2897, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 2898, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 2899, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 2900, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 2901, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 2902, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 2903, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 2904, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 2905, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "none", - "west": "none" - } - }, - { - "id": 2906, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "up", - "west": "up" - } - }, - { - "id": 2907, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "up", - "west": "side" - } - }, - { - "id": 2908, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "up", - "west": "none" - } - }, - { - "id": 2909, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "side", - "west": "up" - } - }, - { - "id": 2910, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "side", - "west": "side" - } - }, - { - "id": 2911, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "side", - "west": "none" - } - }, - { - "id": 2912, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "none", - "west": "up" - } - }, - { - "id": 2913, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "none", - "west": "side" - } - }, - { - "id": 2914, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "none", - "west": "none" - } - }, - { - "id": 2915, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "up", - "west": "up" - } - }, - { - "id": 2916, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "up", - "west": "side" - } - }, - { - "id": 2917, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "up", - "west": "none" - } - }, - { - "id": 2918, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "side", - "west": "up" - } - }, - { - "id": 2919, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "side", - "west": "side" - } - }, - { - "id": 2920, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "side", - "west": "none" - } - }, - { - "id": 2921, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "none", - "west": "up" - } - }, - { - "id": 2922, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "none", - "west": "side" - } - }, - { - "id": 2923, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "none", - "west": "none" - } - }, - { - "id": 2924, - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "up", - "west": "up" - } - }, - { - "id": 2925, - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "up", - "west": "side" - } - }, { "id": 2926, "properties": { - "east": "side", - "north": "side", - "power": "4", + "east": "up", + "north": "up", + "power": "0", "south": "up", - "west": "none" + "west": "up" } }, { "id": 2927, "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "side", - "west": "up" + "east": "up", + "north": "up", + "power": "0", + "south": "up", + "west": "side" } }, { "id": 2928, "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "side", - "west": "side" + "east": "up", + "north": "up", + "power": "0", + "south": "up", + "west": "none" } }, { "id": 2929, "properties": { - "east": "side", - "north": "side", - "power": "4", + "east": "up", + "north": "up", + "power": "0", "south": "side", - "west": "none" + "west": "up" } }, { "id": 2930, "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "none", - "west": "up" + "east": "up", + "north": "up", + "power": "0", + "south": "side", + "west": "side" } }, { "id": 2931, "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "none", - "west": "side" + "east": "up", + "north": "up", + "power": "0", + "south": "side", + "west": "none" } }, { "id": 2932, "properties": { - "east": "side", - "north": "side", - "power": "4", + "east": "up", + "north": "up", + "power": "0", "south": "none", - "west": "none" + "west": "up" } }, { "id": 2933, "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "up", - "west": "up" + "east": "up", + "north": "up", + "power": "0", + "south": "none", + "west": "side" } }, { "id": 2934, "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "up", - "west": "side" + "east": "up", + "north": "up", + "power": "0", + "south": "none", + "west": "none" } }, { "id": 2935, "properties": { - "east": "side", - "north": "side", - "power": "5", + "east": "up", + "north": "up", + "power": "1", "south": "up", - "west": "none" + "west": "up" } }, { "id": 2936, "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "side", - "west": "up" + "east": "up", + "north": "up", + "power": "1", + "south": "up", + "west": "side" } }, { "id": 2937, "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "side", - "west": "side" + "east": "up", + "north": "up", + "power": "1", + "south": "up", + "west": "none" } }, { "id": 2938, "properties": { - "east": "side", - "north": "side", - "power": "5", + "east": "up", + "north": "up", + "power": "1", "south": "side", - "west": "none" + "west": "up" } }, { "id": 2939, "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "none", - "west": "up" + "east": "up", + "north": "up", + "power": "1", + "south": "side", + "west": "side" } }, { "id": 2940, "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "none", - "west": "side" + "east": "up", + "north": "up", + "power": "1", + "south": "side", + "west": "none" } }, { "id": 2941, "properties": { - "east": "side", - "north": "side", - "power": "5", + "east": "up", + "north": "up", + "power": "1", "south": "none", - "west": "none" + "west": "up" } }, { "id": 2942, "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "up", - "west": "up" + "east": "up", + "north": "up", + "power": "1", + "south": "none", + "west": "side" } }, { "id": 2943, "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "up", - "west": "side" + "east": "up", + "north": "up", + "power": "1", + "south": "none", + "west": "none" } }, { "id": 2944, "properties": { - "east": "side", - "north": "side", - "power": "6", + "east": "up", + "north": "up", + "power": "2", "south": "up", - "west": "none" + "west": "up" } }, { "id": 2945, "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "side", - "west": "up" + "east": "up", + "north": "up", + "power": "2", + "south": "up", + "west": "side" } }, { "id": 2946, "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "side", - "west": "side" + "east": "up", + "north": "up", + "power": "2", + "south": "up", + "west": "none" } }, { "id": 2947, "properties": { - "east": "side", - "north": "side", - "power": "6", + "east": "up", + "north": "up", + "power": "2", "south": "side", - "west": "none" + "west": "up" } }, { "id": 2948, "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "none", - "west": "up" + "east": "up", + "north": "up", + "power": "2", + "south": "side", + "west": "side" } }, { "id": 2949, "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "none", - "west": "side" + "east": "up", + "north": "up", + "power": "2", + "south": "side", + "west": "none" } }, { "id": 2950, "properties": { - "east": "side", - "north": "side", - "power": "6", + "east": "up", + "north": "up", + "power": "2", "south": "none", - "west": "none" + "west": "up" } }, { "id": 2951, "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "up", - "west": "up" + "east": "up", + "north": "up", + "power": "2", + "south": "none", + "west": "side" } }, { "id": 2952, "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "up", - "west": "side" + "east": "up", + "north": "up", + "power": "2", + "south": "none", + "west": "none" } }, { "id": 2953, "properties": { - "east": "side", - "north": "side", - "power": "7", + "east": "up", + "north": "up", + "power": "3", "south": "up", - "west": "none" + "west": "up" } }, { "id": 2954, "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "side", - "west": "up" + "east": "up", + "north": "up", + "power": "3", + "south": "up", + "west": "side" } }, { "id": 2955, "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "side", - "west": "side" + "east": "up", + "north": "up", + "power": "3", + "south": "up", + "west": "none" } }, { "id": 2956, "properties": { - "east": "side", - "north": "side", - "power": "7", + "east": "up", + "north": "up", + "power": "3", "south": "side", - "west": "none" + "west": "up" } }, { "id": 2957, "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "none", - "west": "up" + "east": "up", + "north": "up", + "power": "3", + "south": "side", + "west": "side" } }, { "id": 2958, "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "none", - "west": "side" + "east": "up", + "north": "up", + "power": "3", + "south": "side", + "west": "none" } }, { "id": 2959, "properties": { - "east": "side", - "north": "side", - "power": "7", + "east": "up", + "north": "up", + "power": "3", "south": "none", - "west": "none" + "west": "up" } }, { "id": 2960, "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "up", - "west": "up" + "east": "up", + "north": "up", + "power": "3", + "south": "none", + "west": "side" } }, { "id": 2961, "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "up", - "west": "side" + "east": "up", + "north": "up", + "power": "3", + "south": "none", + "west": "none" } }, { "id": 2962, "properties": { - "east": "side", - "north": "side", - "power": "8", + "east": "up", + "north": "up", + "power": "4", "south": "up", - "west": "none" + "west": "up" } }, { "id": 2963, "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "side", - "west": "up" + "east": "up", + "north": "up", + "power": "4", + "south": "up", + "west": "side" } }, { "id": 2964, "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "side", - "west": "side" + "east": "up", + "north": "up", + "power": "4", + "south": "up", + "west": "none" } }, { "id": 2965, "properties": { - "east": "side", - "north": "side", - "power": "8", + "east": "up", + "north": "up", + "power": "4", "south": "side", - "west": "none" + "west": "up" } }, { "id": 2966, "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "none", - "west": "up" + "east": "up", + "north": "up", + "power": "4", + "south": "side", + "west": "side" } }, { "id": 2967, "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "none", - "west": "side" + "east": "up", + "north": "up", + "power": "4", + "south": "side", + "west": "none" } }, { "id": 2968, "properties": { - "east": "side", - "north": "side", - "power": "8", + "east": "up", + "north": "up", + "power": "4", "south": "none", - "west": "none" + "west": "up" } }, { "id": 2969, "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "up", - "west": "up" + "east": "up", + "north": "up", + "power": "4", + "south": "none", + "west": "side" } }, { "id": 2970, "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "up", - "west": "side" + "east": "up", + "north": "up", + "power": "4", + "south": "none", + "west": "none" } }, { "id": 2971, "properties": { - "east": "side", - "north": "side", - "power": "9", + "east": "up", + "north": "up", + "power": "5", "south": "up", - "west": "none" + "west": "up" } }, { "id": 2972, "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "side", - "west": "up" + "east": "up", + "north": "up", + "power": "5", + "south": "up", + "west": "side" } }, { "id": 2973, "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "side", - "west": "side" + "east": "up", + "north": "up", + "power": "5", + "south": "up", + "west": "none" } }, { "id": 2974, "properties": { - "east": "side", - "north": "side", - "power": "9", + "east": "up", + "north": "up", + "power": "5", "south": "side", - "west": "none" + "west": "up" } }, { "id": 2975, "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "none", - "west": "up" + "east": "up", + "north": "up", + "power": "5", + "south": "side", + "west": "side" } }, { "id": 2976, "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "none", - "west": "side" + "east": "up", + "north": "up", + "power": "5", + "south": "side", + "west": "none" } }, { "id": 2977, "properties": { - "east": "side", - "north": "side", - "power": "9", + "east": "up", + "north": "up", + "power": "5", "south": "none", - "west": "none" + "west": "up" } }, { "id": 2978, "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "up", - "west": "up" + "east": "up", + "north": "up", + "power": "5", + "south": "none", + "west": "side" } }, { "id": 2979, "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "up", - "west": "side" + "east": "up", + "north": "up", + "power": "5", + "south": "none", + "west": "none" } }, { "id": 2980, "properties": { - "east": "side", - "north": "side", - "power": "10", + "east": "up", + "north": "up", + "power": "6", "south": "up", - "west": "none" + "west": "up" } }, { "id": 2981, "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "side", - "west": "up" + "east": "up", + "north": "up", + "power": "6", + "south": "up", + "west": "side" } }, { "id": 2982, "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "side", - "west": "side" + "east": "up", + "north": "up", + "power": "6", + "south": "up", + "west": "none" } }, { "id": 2983, "properties": { - "east": "side", - "north": "side", - "power": "10", + "east": "up", + "north": "up", + "power": "6", "south": "side", - "west": "none" + "west": "up" } }, { "id": 2984, "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "none", - "west": "up" + "east": "up", + "north": "up", + "power": "6", + "south": "side", + "west": "side" } }, { "id": 2985, "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "none", - "west": "side" + "east": "up", + "north": "up", + "power": "6", + "south": "side", + "west": "none" } }, { "id": 2986, "properties": { - "east": "side", - "north": "side", - "power": "10", + "east": "up", + "north": "up", + "power": "6", "south": "none", - "west": "none" + "west": "up" } }, { "id": 2987, "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "up", - "west": "up" + "east": "up", + "north": "up", + "power": "6", + "south": "none", + "west": "side" } }, { "id": 2988, "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "up", - "west": "side" + "east": "up", + "north": "up", + "power": "6", + "south": "none", + "west": "none" } }, { "id": 2989, "properties": { - "east": "side", - "north": "side", - "power": "11", + "east": "up", + "north": "up", + "power": "7", "south": "up", - "west": "none" + "west": "up" } }, { "id": 2990, "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "side", - "west": "up" + "east": "up", + "north": "up", + "power": "7", + "south": "up", + "west": "side" } }, { "id": 2991, "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "side", - "west": "side" + "east": "up", + "north": "up", + "power": "7", + "south": "up", + "west": "none" } }, { "id": 2992, "properties": { - "east": "side", - "north": "side", - "power": "11", + "east": "up", + "north": "up", + "power": "7", "south": "side", - "west": "none" + "west": "up" } }, { "id": 2993, "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "none", - "west": "up" + "east": "up", + "north": "up", + "power": "7", + "south": "side", + "west": "side" } }, { "id": 2994, "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "none", - "west": "side" + "east": "up", + "north": "up", + "power": "7", + "south": "side", + "west": "none" } }, { "id": 2995, "properties": { - "east": "side", - "north": "side", - "power": "11", + "east": "up", + "north": "up", + "power": "7", "south": "none", - "west": "none" + "west": "up" } }, { "id": 2996, "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "up", - "west": "up" + "east": "up", + "north": "up", + "power": "7", + "south": "none", + "west": "side" } }, { "id": 2997, "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "up", - "west": "side" + "east": "up", + "north": "up", + "power": "7", + "south": "none", + "west": "none" } }, { "id": 2998, "properties": { - "east": "side", - "north": "side", - "power": "12", + "east": "up", + "north": "up", + "power": "8", "south": "up", - "west": "none" + "west": "up" } }, { "id": 2999, "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "side", - "west": "up" + "east": "up", + "north": "up", + "power": "8", + "south": "up", + "west": "side" } }, { "id": 3000, "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "side", - "west": "side" + "east": "up", + "north": "up", + "power": "8", + "south": "up", + "west": "none" } }, { "id": 3001, "properties": { - "east": "side", - "north": "side", - "power": "12", + "east": "up", + "north": "up", + "power": "8", "south": "side", - "west": "none" + "west": "up" } }, { "id": 3002, "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "none", - "west": "up" + "east": "up", + "north": "up", + "power": "8", + "south": "side", + "west": "side" } }, { "id": 3003, "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "none", - "west": "side" + "east": "up", + "north": "up", + "power": "8", + "south": "side", + "west": "none" } }, { "id": 3004, "properties": { - "east": "side", - "north": "side", - "power": "12", + "east": "up", + "north": "up", + "power": "8", "south": "none", - "west": "none" + "west": "up" } }, { "id": 3005, "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "up", - "west": "up" + "east": "up", + "north": "up", + "power": "8", + "south": "none", + "west": "side" } }, { "id": 3006, "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "up", - "west": "side" + "east": "up", + "north": "up", + "power": "8", + "south": "none", + "west": "none" } }, { "id": 3007, "properties": { - "east": "side", - "north": "side", - "power": "13", + "east": "up", + "north": "up", + "power": "9", "south": "up", - "west": "none" + "west": "up" } }, { "id": 3008, "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "side", - "west": "up" + "east": "up", + "north": "up", + "power": "9", + "south": "up", + "west": "side" } }, { "id": 3009, "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "side", - "west": "side" + "east": "up", + "north": "up", + "power": "9", + "south": "up", + "west": "none" } }, { "id": 3010, "properties": { - "east": "side", - "north": "side", - "power": "13", + "east": "up", + "north": "up", + "power": "9", "south": "side", - "west": "none" + "west": "up" } }, { "id": 3011, "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "none", - "west": "up" + "east": "up", + "north": "up", + "power": "9", + "south": "side", + "west": "side" } }, { "id": 3012, "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "none", - "west": "side" + "east": "up", + "north": "up", + "power": "9", + "south": "side", + "west": "none" } }, { "id": 3013, "properties": { - "east": "side", - "north": "side", - "power": "13", + "east": "up", + "north": "up", + "power": "9", "south": "none", - "west": "none" + "west": "up" } }, { "id": 3014, "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "up", - "west": "up" + "east": "up", + "north": "up", + "power": "9", + "south": "none", + "west": "side" } }, { "id": 3015, "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "up", - "west": "side" + "east": "up", + "north": "up", + "power": "9", + "south": "none", + "west": "none" } }, { "id": 3016, "properties": { - "east": "side", - "north": "side", - "power": "14", + "east": "up", + "north": "up", + "power": "10", "south": "up", - "west": "none" + "west": "up" } }, { "id": 3017, "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "side", - "west": "up" + "east": "up", + "north": "up", + "power": "10", + "south": "up", + "west": "side" } }, { "id": 3018, "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "side", - "west": "side" + "east": "up", + "north": "up", + "power": "10", + "south": "up", + "west": "none" } }, { "id": 3019, "properties": { - "east": "side", - "north": "side", - "power": "14", + "east": "up", + "north": "up", + "power": "10", "south": "side", - "west": "none" + "west": "up" } }, { "id": 3020, "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "none", - "west": "up" + "east": "up", + "north": "up", + "power": "10", + "south": "side", + "west": "side" } }, { "id": 3021, "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "none", - "west": "side" + "east": "up", + "north": "up", + "power": "10", + "south": "side", + "west": "none" } }, { "id": 3022, "properties": { - "east": "side", - "north": "side", - "power": "14", + "east": "up", + "north": "up", + "power": "10", "south": "none", - "west": "none" + "west": "up" } }, { "id": 3023, "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "up", - "west": "up" + "east": "up", + "north": "up", + "power": "10", + "south": "none", + "west": "side" } }, { "id": 3024, "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "up", - "west": "side" + "east": "up", + "north": "up", + "power": "10", + "south": "none", + "west": "none" } }, { "id": 3025, "properties": { - "east": "side", - "north": "side", - "power": "15", + "east": "up", + "north": "up", + "power": "11", "south": "up", - "west": "none" + "west": "up" } }, { "id": 3026, "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "side", - "west": "up" + "east": "up", + "north": "up", + "power": "11", + "south": "up", + "west": "side" } }, { "id": 3027, "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "side", - "west": "side" + "east": "up", + "north": "up", + "power": "11", + "south": "up", + "west": "none" } }, { "id": 3028, "properties": { - "east": "side", - "north": "side", - "power": "15", + "east": "up", + "north": "up", + "power": "11", "south": "side", - "west": "none" + "west": "up" } }, { "id": 3029, "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "none", - "west": "up" + "east": "up", + "north": "up", + "power": "11", + "south": "side", + "west": "side" } }, { "id": 3030, "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "none", - "west": "side" + "east": "up", + "north": "up", + "power": "11", + "south": "side", + "west": "none" } }, { "id": 3031, "properties": { - "east": "side", - "north": "side", - "power": "15", + "east": "up", + "north": "up", + "power": "11", "south": "none", - "west": "none" + "west": "up" } }, { "id": 3032, "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "up", - "west": "up" + "east": "up", + "north": "up", + "power": "11", + "south": "none", + "west": "side" } }, { "id": 3033, "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "up", - "west": "side" + "east": "up", + "north": "up", + "power": "11", + "south": "none", + "west": "none" } }, { "id": 3034, "properties": { - "east": "side", - "north": "none", - "power": "0", + "east": "up", + "north": "up", + "power": "12", "south": "up", - "west": "none" + "west": "up" } }, { "id": 3035, "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "side", - "west": "up" + "east": "up", + "north": "up", + "power": "12", + "south": "up", + "west": "side" } }, { "id": 3036, "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "side", - "west": "side" + "east": "up", + "north": "up", + "power": "12", + "south": "up", + "west": "none" } }, { "id": 3037, "properties": { - "east": "side", - "north": "none", - "power": "0", + "east": "up", + "north": "up", + "power": "12", "south": "side", - "west": "none" + "west": "up" } }, { "id": 3038, "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "none", - "west": "up" + "east": "up", + "north": "up", + "power": "12", + "south": "side", + "west": "side" } }, { "id": 3039, "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "none", - "west": "side" + "east": "up", + "north": "up", + "power": "12", + "south": "side", + "west": "none" } }, { "id": 3040, "properties": { - "east": "side", - "north": "none", - "power": "0", + "east": "up", + "north": "up", + "power": "12", "south": "none", - "west": "none" + "west": "up" } }, { "id": 3041, "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "up", - "west": "up" + "east": "up", + "north": "up", + "power": "12", + "south": "none", + "west": "side" } }, { "id": 3042, "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "up", - "west": "side" + "east": "up", + "north": "up", + "power": "12", + "south": "none", + "west": "none" } }, { "id": 3043, "properties": { - "east": "side", - "north": "none", - "power": "1", + "east": "up", + "north": "up", + "power": "13", "south": "up", - "west": "none" + "west": "up" } }, { "id": 3044, "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "side", - "west": "up" + "east": "up", + "north": "up", + "power": "13", + "south": "up", + "west": "side" } }, { "id": 3045, "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "side", - "west": "side" + "east": "up", + "north": "up", + "power": "13", + "south": "up", + "west": "none" } }, { "id": 3046, "properties": { - "east": "side", - "north": "none", - "power": "1", + "east": "up", + "north": "up", + "power": "13", "south": "side", - "west": "none" + "west": "up" } }, { "id": 3047, "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "none", - "west": "up" + "east": "up", + "north": "up", + "power": "13", + "south": "side", + "west": "side" } }, { "id": 3048, "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "none", - "west": "side" + "east": "up", + "north": "up", + "power": "13", + "south": "side", + "west": "none" } }, { "id": 3049, "properties": { - "east": "side", - "north": "none", - "power": "1", + "east": "up", + "north": "up", + "power": "13", "south": "none", - "west": "none" + "west": "up" } }, { "id": 3050, "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "up", - "west": "up" + "east": "up", + "north": "up", + "power": "13", + "south": "none", + "west": "side" } }, { "id": 3051, "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "up", - "west": "side" + "east": "up", + "north": "up", + "power": "13", + "south": "none", + "west": "none" } }, { "id": 3052, "properties": { - "east": "side", - "north": "none", - "power": "2", + "east": "up", + "north": "up", + "power": "14", "south": "up", - "west": "none" + "west": "up" } }, { "id": 3053, "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "side", - "west": "up" + "east": "up", + "north": "up", + "power": "14", + "south": "up", + "west": "side" } }, { "id": 3054, "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "side", - "west": "side" + "east": "up", + "north": "up", + "power": "14", + "south": "up", + "west": "none" } }, { "id": 3055, "properties": { - "east": "side", - "north": "none", - "power": "2", + "east": "up", + "north": "up", + "power": "14", "south": "side", - "west": "none" + "west": "up" } }, { "id": 3056, "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "none", - "west": "up" + "east": "up", + "north": "up", + "power": "14", + "south": "side", + "west": "side" } }, { "id": 3057, "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "none", - "west": "side" + "east": "up", + "north": "up", + "power": "14", + "south": "side", + "west": "none" } }, { "id": 3058, "properties": { - "east": "side", - "north": "none", - "power": "2", + "east": "up", + "north": "up", + "power": "14", "south": "none", - "west": "none" + "west": "up" } }, { "id": 3059, "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "up", - "west": "up" + "east": "up", + "north": "up", + "power": "14", + "south": "none", + "west": "side" } }, { "id": 3060, "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "up", - "west": "side" + "east": "up", + "north": "up", + "power": "14", + "south": "none", + "west": "none" } }, { "id": 3061, "properties": { - "east": "side", - "north": "none", - "power": "3", + "east": "up", + "north": "up", + "power": "15", "south": "up", - "west": "none" + "west": "up" } }, { "id": 3062, "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "side", - "west": "up" + "east": "up", + "north": "up", + "power": "15", + "south": "up", + "west": "side" } }, { "id": 3063, "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "side", - "west": "side" + "east": "up", + "north": "up", + "power": "15", + "south": "up", + "west": "none" } }, { "id": 3064, "properties": { - "east": "side", - "north": "none", - "power": "3", + "east": "up", + "north": "up", + "power": "15", "south": "side", - "west": "none" + "west": "up" } }, { "id": 3065, "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "none", - "west": "up" + "east": "up", + "north": "up", + "power": "15", + "south": "side", + "west": "side" } }, { "id": 3066, "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "none", - "west": "side" + "east": "up", + "north": "up", + "power": "15", + "south": "side", + "west": "none" } }, { "id": 3067, "properties": { - "east": "side", - "north": "none", - "power": "3", + "east": "up", + "north": "up", + "power": "15", "south": "none", - "west": "none" + "west": "up" } }, { "id": 3068, "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "up", - "west": "up" + "east": "up", + "north": "up", + "power": "15", + "south": "none", + "west": "side" } }, { "id": 3069, "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "up", - "west": "side" + "east": "up", + "north": "up", + "power": "15", + "south": "none", + "west": "none" } }, { "id": 3070, "properties": { - "east": "side", - "north": "none", - "power": "4", + "east": "up", + "north": "side", + "power": "0", "south": "up", - "west": "none" + "west": "up" } }, { "id": 3071, "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "side", - "west": "up" + "east": "up", + "north": "side", + "power": "0", + "south": "up", + "west": "side" } }, { "id": 3072, "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "side", - "west": "side" + "east": "up", + "north": "side", + "power": "0", + "south": "up", + "west": "none" } }, { "id": 3073, "properties": { - "east": "side", - "north": "none", - "power": "4", + "east": "up", + "north": "side", + "power": "0", "south": "side", - "west": "none" + "west": "up" } }, { "id": 3074, "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "none", - "west": "up" + "east": "up", + "north": "side", + "power": "0", + "south": "side", + "west": "side" } }, { "id": 3075, "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "none", - "west": "side" + "east": "up", + "north": "side", + "power": "0", + "south": "side", + "west": "none" } }, { "id": 3076, "properties": { - "east": "side", - "north": "none", - "power": "4", + "east": "up", + "north": "side", + "power": "0", "south": "none", - "west": "none" + "west": "up" } }, { "id": 3077, "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "up", - "west": "up" + "east": "up", + "north": "side", + "power": "0", + "south": "none", + "west": "side" } }, { "id": 3078, "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "up", - "west": "side" + "east": "up", + "north": "side", + "power": "0", + "south": "none", + "west": "none" } }, { "id": 3079, "properties": { - "east": "side", - "north": "none", - "power": "5", + "east": "up", + "north": "side", + "power": "1", "south": "up", - "west": "none" + "west": "up" } }, { "id": 3080, "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "side", - "west": "up" + "east": "up", + "north": "side", + "power": "1", + "south": "up", + "west": "side" } }, { "id": 3081, "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "side", - "west": "side" + "east": "up", + "north": "side", + "power": "1", + "south": "up", + "west": "none" } }, { "id": 3082, "properties": { - "east": "side", - "north": "none", - "power": "5", + "east": "up", + "north": "side", + "power": "1", "south": "side", - "west": "none" + "west": "up" } }, { "id": 3083, "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "none", - "west": "up" + "east": "up", + "north": "side", + "power": "1", + "south": "side", + "west": "side" } }, { "id": 3084, "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "none", - "west": "side" + "east": "up", + "north": "side", + "power": "1", + "south": "side", + "west": "none" } }, { "id": 3085, "properties": { - "east": "side", - "north": "none", - "power": "5", + "east": "up", + "north": "side", + "power": "1", "south": "none", - "west": "none" + "west": "up" } }, { "id": 3086, "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "up", - "west": "up" + "east": "up", + "north": "side", + "power": "1", + "south": "none", + "west": "side" } }, { "id": 3087, "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "up", - "west": "side" + "east": "up", + "north": "side", + "power": "1", + "south": "none", + "west": "none" } }, { "id": 3088, "properties": { - "east": "side", - "north": "none", - "power": "6", + "east": "up", + "north": "side", + "power": "2", "south": "up", - "west": "none" + "west": "up" } }, { "id": 3089, "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "side", - "west": "up" + "east": "up", + "north": "side", + "power": "2", + "south": "up", + "west": "side" } }, { "id": 3090, "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "side", - "west": "side" + "east": "up", + "north": "side", + "power": "2", + "south": "up", + "west": "none" } }, { "id": 3091, "properties": { - "east": "side", - "north": "none", - "power": "6", + "east": "up", + "north": "side", + "power": "2", "south": "side", - "west": "none" + "west": "up" } }, { "id": 3092, "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "none", - "west": "up" + "east": "up", + "north": "side", + "power": "2", + "south": "side", + "west": "side" } }, { "id": 3093, "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "none", - "west": "side" + "east": "up", + "north": "side", + "power": "2", + "south": "side", + "west": "none" } }, { "id": 3094, "properties": { - "east": "side", - "north": "none", - "power": "6", + "east": "up", + "north": "side", + "power": "2", "south": "none", - "west": "none" + "west": "up" } }, { "id": 3095, "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "up", - "west": "up" + "east": "up", + "north": "side", + "power": "2", + "south": "none", + "west": "side" } }, { "id": 3096, "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "up", - "west": "side" + "east": "up", + "north": "side", + "power": "2", + "south": "none", + "west": "none" } }, { "id": 3097, "properties": { - "east": "side", - "north": "none", - "power": "7", + "east": "up", + "north": "side", + "power": "3", "south": "up", - "west": "none" + "west": "up" } }, { "id": 3098, "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "side", - "west": "up" + "east": "up", + "north": "side", + "power": "3", + "south": "up", + "west": "side" } }, { "id": 3099, "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "side", - "west": "side" + "east": "up", + "north": "side", + "power": "3", + "south": "up", + "west": "none" } }, { "id": 3100, "properties": { - "east": "side", - "north": "none", - "power": "7", + "east": "up", + "north": "side", + "power": "3", "south": "side", - "west": "none" + "west": "up" } }, { "id": 3101, "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "none", - "west": "up" + "east": "up", + "north": "side", + "power": "3", + "south": "side", + "west": "side" } }, { "id": 3102, "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "none", - "west": "side" + "east": "up", + "north": "side", + "power": "3", + "south": "side", + "west": "none" } }, { "id": 3103, "properties": { - "east": "side", - "north": "none", - "power": "7", + "east": "up", + "north": "side", + "power": "3", "south": "none", - "west": "none" + "west": "up" } }, { "id": 3104, "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "up", - "west": "up" + "east": "up", + "north": "side", + "power": "3", + "south": "none", + "west": "side" } }, { "id": 3105, "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "up", - "west": "side" + "east": "up", + "north": "side", + "power": "3", + "south": "none", + "west": "none" } }, { "id": 3106, "properties": { - "east": "side", - "north": "none", - "power": "8", + "east": "up", + "north": "side", + "power": "4", "south": "up", - "west": "none" + "west": "up" } }, { "id": 3107, "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "side", - "west": "up" + "east": "up", + "north": "side", + "power": "4", + "south": "up", + "west": "side" } }, { "id": 3108, "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "side", - "west": "side" + "east": "up", + "north": "side", + "power": "4", + "south": "up", + "west": "none" } }, { "id": 3109, "properties": { - "east": "side", - "north": "none", - "power": "8", + "east": "up", + "north": "side", + "power": "4", "south": "side", - "west": "none" + "west": "up" } }, { "id": 3110, "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "none", - "west": "up" + "east": "up", + "north": "side", + "power": "4", + "south": "side", + "west": "side" } }, { "id": 3111, "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "none", - "west": "side" + "east": "up", + "north": "side", + "power": "4", + "south": "side", + "west": "none" } }, { "id": 3112, "properties": { - "east": "side", - "north": "none", - "power": "8", + "east": "up", + "north": "side", + "power": "4", "south": "none", - "west": "none" + "west": "up" } }, { "id": 3113, "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "up", - "west": "up" + "east": "up", + "north": "side", + "power": "4", + "south": "none", + "west": "side" } }, { "id": 3114, "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "up", - "west": "side" + "east": "up", + "north": "side", + "power": "4", + "south": "none", + "west": "none" } }, { "id": 3115, "properties": { - "east": "side", - "north": "none", - "power": "9", + "east": "up", + "north": "side", + "power": "5", "south": "up", - "west": "none" + "west": "up" } }, { "id": 3116, "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "side", - "west": "up" + "east": "up", + "north": "side", + "power": "5", + "south": "up", + "west": "side" } }, { "id": 3117, "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "side", - "west": "side" + "east": "up", + "north": "side", + "power": "5", + "south": "up", + "west": "none" } }, { "id": 3118, "properties": { - "east": "side", - "north": "none", - "power": "9", + "east": "up", + "north": "side", + "power": "5", "south": "side", - "west": "none" + "west": "up" } }, { "id": 3119, "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "none", - "west": "up" + "east": "up", + "north": "side", + "power": "5", + "south": "side", + "west": "side" } }, { "id": 3120, "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "none", - "west": "side" + "east": "up", + "north": "side", + "power": "5", + "south": "side", + "west": "none" } }, { "id": 3121, "properties": { - "east": "side", - "north": "none", - "power": "9", + "east": "up", + "north": "side", + "power": "5", "south": "none", - "west": "none" + "west": "up" } }, { "id": 3122, "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "up", - "west": "up" + "east": "up", + "north": "side", + "power": "5", + "south": "none", + "west": "side" } }, { "id": 3123, "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "up", - "west": "side" + "east": "up", + "north": "side", + "power": "5", + "south": "none", + "west": "none" } }, { "id": 3124, "properties": { - "east": "side", - "north": "none", - "power": "10", + "east": "up", + "north": "side", + "power": "6", "south": "up", - "west": "none" + "west": "up" } }, { "id": 3125, "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "side", - "west": "up" + "east": "up", + "north": "side", + "power": "6", + "south": "up", + "west": "side" } }, { "id": 3126, "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "side", - "west": "side" + "east": "up", + "north": "side", + "power": "6", + "south": "up", + "west": "none" } }, { "id": 3127, "properties": { - "east": "side", - "north": "none", - "power": "10", + "east": "up", + "north": "side", + "power": "6", "south": "side", - "west": "none" + "west": "up" } }, { "id": 3128, "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "none", - "west": "up" + "east": "up", + "north": "side", + "power": "6", + "south": "side", + "west": "side" } }, { "id": 3129, "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "none", - "west": "side" + "east": "up", + "north": "side", + "power": "6", + "south": "side", + "west": "none" } }, { "id": 3130, "properties": { - "east": "side", - "north": "none", - "power": "10", + "east": "up", + "north": "side", + "power": "6", "south": "none", - "west": "none" + "west": "up" } }, { "id": 3131, "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "up", - "west": "up" + "east": "up", + "north": "side", + "power": "6", + "south": "none", + "west": "side" } }, { "id": 3132, "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "up", - "west": "side" + "east": "up", + "north": "side", + "power": "6", + "south": "none", + "west": "none" } }, { "id": 3133, "properties": { - "east": "side", - "north": "none", - "power": "11", + "east": "up", + "north": "side", + "power": "7", "south": "up", - "west": "none" + "west": "up" } }, { "id": 3134, "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "side", - "west": "up" + "east": "up", + "north": "side", + "power": "7", + "south": "up", + "west": "side" } }, { "id": 3135, "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "side", - "west": "side" + "east": "up", + "north": "side", + "power": "7", + "south": "up", + "west": "none" } }, { "id": 3136, "properties": { - "east": "side", - "north": "none", - "power": "11", + "east": "up", + "north": "side", + "power": "7", "south": "side", - "west": "none" + "west": "up" } }, { "id": 3137, "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "none", - "west": "up" + "east": "up", + "north": "side", + "power": "7", + "south": "side", + "west": "side" } }, { "id": 3138, "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "none", - "west": "side" + "east": "up", + "north": "side", + "power": "7", + "south": "side", + "west": "none" } }, { "id": 3139, "properties": { - "east": "side", - "north": "none", - "power": "11", + "east": "up", + "north": "side", + "power": "7", "south": "none", - "west": "none" + "west": "up" } }, { "id": 3140, "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "up", - "west": "up" + "east": "up", + "north": "side", + "power": "7", + "south": "none", + "west": "side" } }, { "id": 3141, "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "up", - "west": "side" + "east": "up", + "north": "side", + "power": "7", + "south": "none", + "west": "none" } }, { "id": 3142, "properties": { - "east": "side", - "north": "none", - "power": "12", + "east": "up", + "north": "side", + "power": "8", "south": "up", - "west": "none" + "west": "up" } }, { "id": 3143, "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "side", - "west": "up" + "east": "up", + "north": "side", + "power": "8", + "south": "up", + "west": "side" } }, { "id": 3144, "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "side", - "west": "side" + "east": "up", + "north": "side", + "power": "8", + "south": "up", + "west": "none" } }, { "id": 3145, "properties": { - "east": "side", - "north": "none", - "power": "12", + "east": "up", + "north": "side", + "power": "8", "south": "side", - "west": "none" + "west": "up" } }, { "id": 3146, "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "none", - "west": "up" + "east": "up", + "north": "side", + "power": "8", + "south": "side", + "west": "side" } }, { "id": 3147, "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "none", - "west": "side" + "east": "up", + "north": "side", + "power": "8", + "south": "side", + "west": "none" } }, { "id": 3148, "properties": { - "east": "side", - "north": "none", - "power": "12", + "east": "up", + "north": "side", + "power": "8", "south": "none", - "west": "none" + "west": "up" } }, { "id": 3149, "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "up", - "west": "up" + "east": "up", + "north": "side", + "power": "8", + "south": "none", + "west": "side" } }, { "id": 3150, "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "up", - "west": "side" + "east": "up", + "north": "side", + "power": "8", + "south": "none", + "west": "none" } }, { "id": 3151, "properties": { - "east": "side", - "north": "none", - "power": "13", + "east": "up", + "north": "side", + "power": "9", "south": "up", - "west": "none" + "west": "up" } }, { "id": 3152, "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "side", - "west": "up" + "east": "up", + "north": "side", + "power": "9", + "south": "up", + "west": "side" } }, { "id": 3153, "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "side", - "west": "side" + "east": "up", + "north": "side", + "power": "9", + "south": "up", + "west": "none" } }, { "id": 3154, "properties": { - "east": "side", - "north": "none", - "power": "13", + "east": "up", + "north": "side", + "power": "9", "south": "side", - "west": "none" + "west": "up" } }, { "id": 3155, "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "none", - "west": "up" + "east": "up", + "north": "side", + "power": "9", + "south": "side", + "west": "side" } }, { "id": 3156, "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "none", - "west": "side" + "east": "up", + "north": "side", + "power": "9", + "south": "side", + "west": "none" } }, { "id": 3157, "properties": { - "east": "side", - "north": "none", - "power": "13", + "east": "up", + "north": "side", + "power": "9", "south": "none", - "west": "none" + "west": "up" } }, { "id": 3158, "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "up", - "west": "up" + "east": "up", + "north": "side", + "power": "9", + "south": "none", + "west": "side" } }, { "id": 3159, "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "up", - "west": "side" + "east": "up", + "north": "side", + "power": "9", + "south": "none", + "west": "none" } }, { "id": 3160, "properties": { - "east": "side", - "north": "none", - "power": "14", + "east": "up", + "north": "side", + "power": "10", "south": "up", - "west": "none" + "west": "up" } }, { "id": 3161, "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "side", - "west": "up" + "east": "up", + "north": "side", + "power": "10", + "south": "up", + "west": "side" } }, { "id": 3162, "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "side", - "west": "side" + "east": "up", + "north": "side", + "power": "10", + "south": "up", + "west": "none" } }, { "id": 3163, "properties": { - "east": "side", - "north": "none", - "power": "14", + "east": "up", + "north": "side", + "power": "10", "south": "side", - "west": "none" + "west": "up" } }, { "id": 3164, "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "none", - "west": "up" + "east": "up", + "north": "side", + "power": "10", + "south": "side", + "west": "side" } }, { "id": 3165, "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "none", - "west": "side" + "east": "up", + "north": "side", + "power": "10", + "south": "side", + "west": "none" } }, { "id": 3166, "properties": { - "east": "side", - "north": "none", - "power": "14", + "east": "up", + "north": "side", + "power": "10", "south": "none", - "west": "none" + "west": "up" } }, { "id": 3167, "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "up", - "west": "up" + "east": "up", + "north": "side", + "power": "10", + "south": "none", + "west": "side" } }, { "id": 3168, "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "up", - "west": "side" + "east": "up", + "north": "side", + "power": "10", + "south": "none", + "west": "none" } }, { "id": 3169, "properties": { - "east": "side", - "north": "none", - "power": "15", + "east": "up", + "north": "side", + "power": "11", "south": "up", - "west": "none" + "west": "up" } }, { "id": 3170, "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "side", - "west": "up" + "east": "up", + "north": "side", + "power": "11", + "south": "up", + "west": "side" } }, { "id": 3171, "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "side", - "west": "side" + "east": "up", + "north": "side", + "power": "11", + "south": "up", + "west": "none" } }, { "id": 3172, "properties": { - "east": "side", - "north": "none", - "power": "15", + "east": "up", + "north": "side", + "power": "11", "south": "side", - "west": "none" + "west": "up" } }, { "id": 3173, "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "none", - "west": "up" + "east": "up", + "north": "side", + "power": "11", + "south": "side", + "west": "side" } }, { "id": 3174, "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "none", - "west": "side" + "east": "up", + "north": "side", + "power": "11", + "south": "side", + "west": "none" } }, { "id": 3175, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3176, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3177, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3178, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3179, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3180, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3181, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3182, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3183, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3184, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3185, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3186, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3187, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3188, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3189, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3190, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3191, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3192, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3193, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3194, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3195, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3196, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3197, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3198, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3199, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3200, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3201, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3202, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3203, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3204, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3205, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3206, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3207, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3208, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3209, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3210, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3211, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3212, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3213, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3214, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3215, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3216, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3217, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3218, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3219, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3220, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3221, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3222, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3223, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3224, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3225, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3226, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3227, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3228, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3229, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 3230, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 3231, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 3232, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 3233, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 3234, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 3235, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3236, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3237, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3238, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3239, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3240, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3241, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3242, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3243, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3244, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3245, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3246, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3247, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3248, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3249, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3250, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3251, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3252, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3253, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3254, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3255, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3256, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3257, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3258, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3259, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3260, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3261, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3262, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3263, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3264, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3265, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3266, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3267, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3268, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3269, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3270, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3271, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3272, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3273, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3274, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3275, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3276, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3277, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3278, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3279, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3280, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3281, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3282, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3283, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3284, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3285, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3286, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3287, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3288, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3289, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3290, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3291, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3292, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3293, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3294, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3295, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3296, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3297, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3298, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3299, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3300, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3301, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3302, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3303, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3304, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3305, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3306, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3307, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3308, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3309, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3310, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3311, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3312, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3313, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3314, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3315, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3316, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3317, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3318, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3319, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3320, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3321, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3322, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3323, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3324, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3325, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3326, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3327, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3328, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3329, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3330, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3331, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3332, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3333, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3334, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3335, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3336, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3337, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3338, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3339, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3340, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3341, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3342, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3343, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3344, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3345, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3346, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3347, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3348, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3349, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3350, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3351, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3352, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3353, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3354, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3355, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3356, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3357, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3358, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3359, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3360, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3361, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3362, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3363, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3364, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3365, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3366, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3367, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3368, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3369, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3370, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3371, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3372, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3373, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 3374, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 3375, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 3376, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 3377, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 3378, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 3379, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3380, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3381, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3382, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3383, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3384, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3385, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3386, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3387, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3388, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3389, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3390, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3391, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3392, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3393, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3394, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3395, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3396, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3397, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3398, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3399, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3400, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3401, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3402, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3403, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3404, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3405, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3406, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3407, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3408, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3409, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3410, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3411, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3412, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3413, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3414, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3415, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3416, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3417, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3418, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3419, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3420, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3421, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3422, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3423, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3424, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3425, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3426, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3427, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3428, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3429, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3430, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3431, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3432, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3433, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3434, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3435, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3436, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3437, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3438, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3439, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3440, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3441, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3442, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3443, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3444, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3445, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3446, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3447, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3448, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3449, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3450, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3451, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3452, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3453, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3454, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3455, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3456, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3457, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3458, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3459, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3460, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3461, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3462, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3463, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3464, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3465, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3466, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3467, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3468, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3469, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3470, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3471, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3472, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3473, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3474, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3475, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3476, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3477, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3478, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3479, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3480, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3481, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3482, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3483, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3484, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3485, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3486, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3487, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3488, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3489, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3490, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3491, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3492, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3493, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3494, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3495, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3496, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3497, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3498, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3499, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3500, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3501, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3502, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3503, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3504, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3505, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3506, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3507, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3508, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3509, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3510, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3511, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3512, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3513, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3514, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3515, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3516, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3517, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 3518, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 3519, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 3520, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 3521, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 3522, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 3523, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3524, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3525, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3526, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3527, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3528, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3529, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3530, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3531, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3532, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3533, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3534, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3535, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3536, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3537, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3538, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3539, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3540, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3541, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3542, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3543, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3544, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3545, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3546, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3547, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3548, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3549, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3550, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3551, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3552, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3553, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3554, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3555, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3556, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3557, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3558, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3559, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3560, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3561, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3562, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3563, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3564, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3565, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3566, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3567, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3568, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3569, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3570, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3571, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3572, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3573, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3574, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3575, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3576, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3577, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3578, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3579, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3580, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3581, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3582, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3583, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3584, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3585, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3586, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3587, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3588, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3589, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3590, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3591, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3592, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3593, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3594, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3595, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3596, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3597, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3598, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3599, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3600, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3601, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3602, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3603, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3604, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3605, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3606, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3607, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3608, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3609, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3610, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3611, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3612, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3613, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3614, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3615, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3616, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3617, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3618, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3619, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3620, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3621, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3622, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3623, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3624, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3625, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3626, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3627, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3628, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3629, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3630, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3631, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3632, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3633, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3634, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3635, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3636, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3637, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3638, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3639, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3640, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3641, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3642, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3643, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3644, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3645, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3646, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3647, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3648, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3649, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3650, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3651, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3652, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3653, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3654, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3655, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3656, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3657, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3658, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3659, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3660, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3661, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 3662, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 3663, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 3664, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 3665, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 3666, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 3667, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3668, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3669, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3670, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3671, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3672, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3673, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3674, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3675, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3676, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3677, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3678, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3679, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3680, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3681, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3682, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3683, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3684, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3685, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3686, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3687, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3688, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3689, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3690, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3691, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3692, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3693, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3694, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3695, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3696, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3697, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3698, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3699, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3700, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3701, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3702, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3703, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3704, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3705, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3706, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3707, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3708, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3709, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3710, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3711, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3712, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3713, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3714, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3715, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3716, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3717, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3718, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3719, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3720, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3721, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3722, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3723, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3724, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3725, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3726, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3727, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3728, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3729, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3730, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3731, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3732, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3733, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3734, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3735, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3736, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3737, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3738, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3739, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3740, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3741, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3742, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3743, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3744, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3745, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3746, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3747, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3748, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3749, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3750, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3751, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3752, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3753, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3754, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3755, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3756, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3757, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3758, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3759, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3760, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3761, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3762, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3763, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3764, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3765, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3766, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3767, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3768, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3769, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3770, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3771, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3772, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3773, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3774, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3775, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3776, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3777, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3778, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3779, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3780, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3781, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3782, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3783, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3784, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3785, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3786, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3787, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3788, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3789, "properties": { "east": "side", "north": "none", @@ -176606,7 +191843,7 @@ } }, { - "id": 3176, + "id": 3790, "properties": { "east": "none", "north": "up", @@ -176616,7 +191853,7 @@ } }, { - "id": 3177, + "id": 3791, "properties": { "east": "none", "north": "up", @@ -176626,7 +191863,7 @@ } }, { - "id": 3178, + "id": 3792, "properties": { "east": "none", "north": "up", @@ -176636,7 +191873,7 @@ } }, { - "id": 3179, + "id": 3793, "properties": { "east": "none", "north": "up", @@ -176646,7 +191883,7 @@ } }, { - "id": 3180, + "id": 3794, "properties": { "east": "none", "north": "up", @@ -176656,7 +191893,7 @@ } }, { - "id": 3181, + "id": 3795, "properties": { "east": "none", "north": "up", @@ -176666,7 +191903,7 @@ } }, { - "id": 3182, + "id": 3796, "properties": { "east": "none", "north": "up", @@ -176676,7 +191913,7 @@ } }, { - "id": 3183, + "id": 3797, "properties": { "east": "none", "north": "up", @@ -176686,7 +191923,7 @@ } }, { - "id": 3184, + "id": 3798, "properties": { "east": "none", "north": "up", @@ -176696,7 +191933,7 @@ } }, { - "id": 3185, + "id": 3799, "properties": { "east": "none", "north": "up", @@ -176706,7 +191943,7 @@ } }, { - "id": 3186, + "id": 3800, "properties": { "east": "none", "north": "up", @@ -176716,7 +191953,7 @@ } }, { - "id": 3187, + "id": 3801, "properties": { "east": "none", "north": "up", @@ -176726,7 +191963,7 @@ } }, { - "id": 3188, + "id": 3802, "properties": { "east": "none", "north": "up", @@ -176736,7 +191973,7 @@ } }, { - "id": 3189, + "id": 3803, "properties": { "east": "none", "north": "up", @@ -176746,7 +191983,7 @@ } }, { - "id": 3190, + "id": 3804, "properties": { "east": "none", "north": "up", @@ -176756,7 +191993,7 @@ } }, { - "id": 3191, + "id": 3805, "properties": { "east": "none", "north": "up", @@ -176766,7 +192003,7 @@ } }, { - "id": 3192, + "id": 3806, "properties": { "east": "none", "north": "up", @@ -176776,7 +192013,7 @@ } }, { - "id": 3193, + "id": 3807, "properties": { "east": "none", "north": "up", @@ -176786,7 +192023,7 @@ } }, { - "id": 3194, + "id": 3808, "properties": { "east": "none", "north": "up", @@ -176796,7 +192033,7 @@ } }, { - "id": 3195, + "id": 3809, "properties": { "east": "none", "north": "up", @@ -176806,7 +192043,7 @@ } }, { - "id": 3196, + "id": 3810, "properties": { "east": "none", "north": "up", @@ -176816,7 +192053,7 @@ } }, { - "id": 3197, + "id": 3811, "properties": { "east": "none", "north": "up", @@ -176826,7 +192063,7 @@ } }, { - "id": 3198, + "id": 3812, "properties": { "east": "none", "north": "up", @@ -176836,7 +192073,7 @@ } }, { - "id": 3199, + "id": 3813, "properties": { "east": "none", "north": "up", @@ -176846,7 +192083,7 @@ } }, { - "id": 3200, + "id": 3814, "properties": { "east": "none", "north": "up", @@ -176856,7 +192093,7 @@ } }, { - "id": 3201, + "id": 3815, "properties": { "east": "none", "north": "up", @@ -176866,7 +192103,7 @@ } }, { - "id": 3202, + "id": 3816, "properties": { "east": "none", "north": "up", @@ -176876,7 +192113,7 @@ } }, { - "id": 3203, + "id": 3817, "properties": { "east": "none", "north": "up", @@ -176886,7 +192123,7 @@ } }, { - "id": 3204, + "id": 3818, "properties": { "east": "none", "north": "up", @@ -176896,7 +192133,7 @@ } }, { - "id": 3205, + "id": 3819, "properties": { "east": "none", "north": "up", @@ -176906,7 +192143,7 @@ } }, { - "id": 3206, + "id": 3820, "properties": { "east": "none", "north": "up", @@ -176916,7 +192153,7 @@ } }, { - "id": 3207, + "id": 3821, "properties": { "east": "none", "north": "up", @@ -176926,7 +192163,7 @@ } }, { - "id": 3208, + "id": 3822, "properties": { "east": "none", "north": "up", @@ -176936,7 +192173,7 @@ } }, { - "id": 3209, + "id": 3823, "properties": { "east": "none", "north": "up", @@ -176946,7 +192183,7 @@ } }, { - "id": 3210, + "id": 3824, "properties": { "east": "none", "north": "up", @@ -176956,7 +192193,7 @@ } }, { - "id": 3211, + "id": 3825, "properties": { "east": "none", "north": "up", @@ -176966,7 +192203,7 @@ } }, { - "id": 3212, + "id": 3826, "properties": { "east": "none", "north": "up", @@ -176976,7 +192213,7 @@ } }, { - "id": 3213, + "id": 3827, "properties": { "east": "none", "north": "up", @@ -176986,7 +192223,7 @@ } }, { - "id": 3214, + "id": 3828, "properties": { "east": "none", "north": "up", @@ -176996,7 +192233,7 @@ } }, { - "id": 3215, + "id": 3829, "properties": { "east": "none", "north": "up", @@ -177006,7 +192243,7 @@ } }, { - "id": 3216, + "id": 3830, "properties": { "east": "none", "north": "up", @@ -177016,7 +192253,7 @@ } }, { - "id": 3217, + "id": 3831, "properties": { "east": "none", "north": "up", @@ -177026,7 +192263,7 @@ } }, { - "id": 3218, + "id": 3832, "properties": { "east": "none", "north": "up", @@ -177036,7 +192273,7 @@ } }, { - "id": 3219, + "id": 3833, "properties": { "east": "none", "north": "up", @@ -177046,7 +192283,7 @@ } }, { - "id": 3220, + "id": 3834, "properties": { "east": "none", "north": "up", @@ -177056,7 +192293,7 @@ } }, { - "id": 3221, + "id": 3835, "properties": { "east": "none", "north": "up", @@ -177066,7 +192303,7 @@ } }, { - "id": 3222, + "id": 3836, "properties": { "east": "none", "north": "up", @@ -177076,7 +192313,7 @@ } }, { - "id": 3223, + "id": 3837, "properties": { "east": "none", "north": "up", @@ -177086,7 +192323,7 @@ } }, { - "id": 3224, + "id": 3838, "properties": { "east": "none", "north": "up", @@ -177096,7 +192333,7 @@ } }, { - "id": 3225, + "id": 3839, "properties": { "east": "none", "north": "up", @@ -177106,7 +192343,7 @@ } }, { - "id": 3226, + "id": 3840, "properties": { "east": "none", "north": "up", @@ -177116,7 +192353,7 @@ } }, { - "id": 3227, + "id": 3841, "properties": { "east": "none", "north": "up", @@ -177126,7 +192363,7 @@ } }, { - "id": 3228, + "id": 3842, "properties": { "east": "none", "north": "up", @@ -177136,7 +192373,7 @@ } }, { - "id": 3229, + "id": 3843, "properties": { "east": "none", "north": "up", @@ -177146,7 +192383,7 @@ } }, { - "id": 3230, + "id": 3844, "properties": { "east": "none", "north": "up", @@ -177156,7 +192393,7 @@ } }, { - "id": 3231, + "id": 3845, "properties": { "east": "none", "north": "up", @@ -177166,7 +192403,7 @@ } }, { - "id": 3232, + "id": 3846, "properties": { "east": "none", "north": "up", @@ -177176,7 +192413,7 @@ } }, { - "id": 3233, + "id": 3847, "properties": { "east": "none", "north": "up", @@ -177186,7 +192423,7 @@ } }, { - "id": 3234, + "id": 3848, "properties": { "east": "none", "north": "up", @@ -177196,7 +192433,7 @@ } }, { - "id": 3235, + "id": 3849, "properties": { "east": "none", "north": "up", @@ -177206,7 +192443,7 @@ } }, { - "id": 3236, + "id": 3850, "properties": { "east": "none", "north": "up", @@ -177216,7 +192453,7 @@ } }, { - "id": 3237, + "id": 3851, "properties": { "east": "none", "north": "up", @@ -177226,7 +192463,7 @@ } }, { - "id": 3238, + "id": 3852, "properties": { "east": "none", "north": "up", @@ -177236,7 +192473,7 @@ } }, { - "id": 3239, + "id": 3853, "properties": { "east": "none", "north": "up", @@ -177246,7 +192483,7 @@ } }, { - "id": 3240, + "id": 3854, "properties": { "east": "none", "north": "up", @@ -177256,7 +192493,7 @@ } }, { - "id": 3241, + "id": 3855, "properties": { "east": "none", "north": "up", @@ -177266,7 +192503,7 @@ } }, { - "id": 3242, + "id": 3856, "properties": { "east": "none", "north": "up", @@ -177276,7 +192513,7 @@ } }, { - "id": 3243, + "id": 3857, "properties": { "east": "none", "north": "up", @@ -177286,7 +192523,7 @@ } }, { - "id": 3244, + "id": 3858, "properties": { "east": "none", "north": "up", @@ -177296,7 +192533,7 @@ } }, { - "id": 3245, + "id": 3859, "properties": { "east": "none", "north": "up", @@ -177306,7 +192543,7 @@ } }, { - "id": 3246, + "id": 3860, "properties": { "east": "none", "north": "up", @@ -177316,7 +192553,7 @@ } }, { - "id": 3247, + "id": 3861, "properties": { "east": "none", "north": "up", @@ -177326,7 +192563,7 @@ } }, { - "id": 3248, + "id": 3862, "properties": { "east": "none", "north": "up", @@ -177336,7 +192573,7 @@ } }, { - "id": 3249, + "id": 3863, "properties": { "east": "none", "north": "up", @@ -177346,7 +192583,7 @@ } }, { - "id": 3250, + "id": 3864, "properties": { "east": "none", "north": "up", @@ -177356,7 +192593,7 @@ } }, { - "id": 3251, + "id": 3865, "properties": { "east": "none", "north": "up", @@ -177366,7 +192603,7 @@ } }, { - "id": 3252, + "id": 3866, "properties": { "east": "none", "north": "up", @@ -177376,7 +192613,7 @@ } }, { - "id": 3253, + "id": 3867, "properties": { "east": "none", "north": "up", @@ -177386,7 +192623,7 @@ } }, { - "id": 3254, + "id": 3868, "properties": { "east": "none", "north": "up", @@ -177396,7 +192633,7 @@ } }, { - "id": 3255, + "id": 3869, "properties": { "east": "none", "north": "up", @@ -177406,7 +192643,7 @@ } }, { - "id": 3256, + "id": 3870, "properties": { "east": "none", "north": "up", @@ -177416,7 +192653,7 @@ } }, { - "id": 3257, + "id": 3871, "properties": { "east": "none", "north": "up", @@ -177426,7 +192663,7 @@ } }, { - "id": 3258, + "id": 3872, "properties": { "east": "none", "north": "up", @@ -177436,7 +192673,7 @@ } }, { - "id": 3259, + "id": 3873, "properties": { "east": "none", "north": "up", @@ -177446,7 +192683,7 @@ } }, { - "id": 3260, + "id": 3874, "properties": { "east": "none", "north": "up", @@ -177456,7 +192693,7 @@ } }, { - "id": 3261, + "id": 3875, "properties": { "east": "none", "north": "up", @@ -177466,7 +192703,7 @@ } }, { - "id": 3262, + "id": 3876, "properties": { "east": "none", "north": "up", @@ -177476,7 +192713,7 @@ } }, { - "id": 3263, + "id": 3877, "properties": { "east": "none", "north": "up", @@ -177486,7 +192723,7 @@ } }, { - "id": 3264, + "id": 3878, "properties": { "east": "none", "north": "up", @@ -177496,7 +192733,7 @@ } }, { - "id": 3265, + "id": 3879, "properties": { "east": "none", "north": "up", @@ -177506,7 +192743,7 @@ } }, { - "id": 3266, + "id": 3880, "properties": { "east": "none", "north": "up", @@ -177516,7 +192753,7 @@ } }, { - "id": 3267, + "id": 3881, "properties": { "east": "none", "north": "up", @@ -177526,7 +192763,7 @@ } }, { - "id": 3268, + "id": 3882, "properties": { "east": "none", "north": "up", @@ -177536,7 +192773,7 @@ } }, { - "id": 3269, + "id": 3883, "properties": { "east": "none", "north": "up", @@ -177546,7 +192783,7 @@ } }, { - "id": 3270, + "id": 3884, "properties": { "east": "none", "north": "up", @@ -177556,7 +192793,7 @@ } }, { - "id": 3271, + "id": 3885, "properties": { "east": "none", "north": "up", @@ -177566,7 +192803,7 @@ } }, { - "id": 3272, + "id": 3886, "properties": { "east": "none", "north": "up", @@ -177576,7 +192813,7 @@ } }, { - "id": 3273, + "id": 3887, "properties": { "east": "none", "north": "up", @@ -177586,7 +192823,7 @@ } }, { - "id": 3274, + "id": 3888, "properties": { "east": "none", "north": "up", @@ -177596,7 +192833,7 @@ } }, { - "id": 3275, + "id": 3889, "properties": { "east": "none", "north": "up", @@ -177606,7 +192843,7 @@ } }, { - "id": 3276, + "id": 3890, "properties": { "east": "none", "north": "up", @@ -177616,7 +192853,7 @@ } }, { - "id": 3277, + "id": 3891, "properties": { "east": "none", "north": "up", @@ -177626,7 +192863,7 @@ } }, { - "id": 3278, + "id": 3892, "properties": { "east": "none", "north": "up", @@ -177636,7 +192873,7 @@ } }, { - "id": 3279, + "id": 3893, "properties": { "east": "none", "north": "up", @@ -177646,7 +192883,7 @@ } }, { - "id": 3280, + "id": 3894, "properties": { "east": "none", "north": "up", @@ -177656,7 +192893,7 @@ } }, { - "id": 3281, + "id": 3895, "properties": { "east": "none", "north": "up", @@ -177666,7 +192903,7 @@ } }, { - "id": 3282, + "id": 3896, "properties": { "east": "none", "north": "up", @@ -177676,7 +192913,7 @@ } }, { - "id": 3283, + "id": 3897, "properties": { "east": "none", "north": "up", @@ -177686,7 +192923,7 @@ } }, { - "id": 3284, + "id": 3898, "properties": { "east": "none", "north": "up", @@ -177696,7 +192933,7 @@ } }, { - "id": 3285, + "id": 3899, "properties": { "east": "none", "north": "up", @@ -177706,7 +192943,7 @@ } }, { - "id": 3286, + "id": 3900, "properties": { "east": "none", "north": "up", @@ -177716,7 +192953,7 @@ } }, { - "id": 3287, + "id": 3901, "properties": { "east": "none", "north": "up", @@ -177726,7 +192963,7 @@ } }, { - "id": 3288, + "id": 3902, "properties": { "east": "none", "north": "up", @@ -177736,7 +192973,7 @@ } }, { - "id": 3289, + "id": 3903, "properties": { "east": "none", "north": "up", @@ -177746,7 +192983,7 @@ } }, { - "id": 3290, + "id": 3904, "properties": { "east": "none", "north": "up", @@ -177756,7 +192993,7 @@ } }, { - "id": 3291, + "id": 3905, "properties": { "east": "none", "north": "up", @@ -177766,7 +193003,7 @@ } }, { - "id": 3292, + "id": 3906, "properties": { "east": "none", "north": "up", @@ -177776,7 +193013,7 @@ } }, { - "id": 3293, + "id": 3907, "properties": { "east": "none", "north": "up", @@ -177786,7 +193023,7 @@ } }, { - "id": 3294, + "id": 3908, "properties": { "east": "none", "north": "up", @@ -177796,7 +193033,7 @@ } }, { - "id": 3295, + "id": 3909, "properties": { "east": "none", "north": "up", @@ -177806,7 +193043,7 @@ } }, { - "id": 3296, + "id": 3910, "properties": { "east": "none", "north": "up", @@ -177816,7 +193053,7 @@ } }, { - "id": 3297, + "id": 3911, "properties": { "east": "none", "north": "up", @@ -177826,7 +193063,7 @@ } }, { - "id": 3298, + "id": 3912, "properties": { "east": "none", "north": "up", @@ -177836,7 +193073,7 @@ } }, { - "id": 3299, + "id": 3913, "properties": { "east": "none", "north": "up", @@ -177846,7 +193083,7 @@ } }, { - "id": 3300, + "id": 3914, "properties": { "east": "none", "north": "up", @@ -177856,7 +193093,7 @@ } }, { - "id": 3301, + "id": 3915, "properties": { "east": "none", "north": "up", @@ -177866,7 +193103,7 @@ } }, { - "id": 3302, + "id": 3916, "properties": { "east": "none", "north": "up", @@ -177876,7 +193113,7 @@ } }, { - "id": 3303, + "id": 3917, "properties": { "east": "none", "north": "up", @@ -177886,7 +193123,7 @@ } }, { - "id": 3304, + "id": 3918, "properties": { "east": "none", "north": "up", @@ -177896,7 +193133,7 @@ } }, { - "id": 3305, + "id": 3919, "properties": { "east": "none", "north": "up", @@ -177906,7 +193143,7 @@ } }, { - "id": 3306, + "id": 3920, "properties": { "east": "none", "north": "up", @@ -177916,7 +193153,7 @@ } }, { - "id": 3307, + "id": 3921, "properties": { "east": "none", "north": "up", @@ -177926,7 +193163,7 @@ } }, { - "id": 3308, + "id": 3922, "properties": { "east": "none", "north": "up", @@ -177936,7 +193173,7 @@ } }, { - "id": 3309, + "id": 3923, "properties": { "east": "none", "north": "up", @@ -177946,7 +193183,7 @@ } }, { - "id": 3310, + "id": 3924, "properties": { "east": "none", "north": "up", @@ -177956,7 +193193,7 @@ } }, { - "id": 3311, + "id": 3925, "properties": { "east": "none", "north": "up", @@ -177966,7 +193203,7 @@ } }, { - "id": 3312, + "id": 3926, "properties": { "east": "none", "north": "up", @@ -177976,7 +193213,7 @@ } }, { - "id": 3313, + "id": 3927, "properties": { "east": "none", "north": "up", @@ -177986,7 +193223,7 @@ } }, { - "id": 3314, + "id": 3928, "properties": { "east": "none", "north": "up", @@ -177996,7 +193233,7 @@ } }, { - "id": 3315, + "id": 3929, "properties": { "east": "none", "north": "up", @@ -178006,7 +193243,7 @@ } }, { - "id": 3316, + "id": 3930, "properties": { "east": "none", "north": "up", @@ -178016,7 +193253,7 @@ } }, { - "id": 3317, + "id": 3931, "properties": { "east": "none", "north": "up", @@ -178026,7 +193263,7 @@ } }, { - "id": 3318, + "id": 3932, "properties": { "east": "none", "north": "up", @@ -178036,7 +193273,7 @@ } }, { - "id": 3319, + "id": 3933, "properties": { "east": "none", "north": "up", @@ -178046,7 +193283,7 @@ } }, { - "id": 3320, + "id": 3934, "properties": { "east": "none", "north": "side", @@ -178056,7 +193293,7 @@ } }, { - "id": 3321, + "id": 3935, "properties": { "east": "none", "north": "side", @@ -178066,7 +193303,7 @@ } }, { - "id": 3322, + "id": 3936, "properties": { "east": "none", "north": "side", @@ -178076,7 +193313,7 @@ } }, { - "id": 3323, + "id": 3937, "properties": { "east": "none", "north": "side", @@ -178086,7 +193323,7 @@ } }, { - "id": 3324, + "id": 3938, "properties": { "east": "none", "north": "side", @@ -178096,7 +193333,7 @@ } }, { - "id": 3325, + "id": 3939, "properties": { "east": "none", "north": "side", @@ -178106,7 +193343,7 @@ } }, { - "id": 3326, + "id": 3940, "properties": { "east": "none", "north": "side", @@ -178116,7 +193353,7 @@ } }, { - "id": 3327, + "id": 3941, "properties": { "east": "none", "north": "side", @@ -178126,7 +193363,7 @@ } }, { - "id": 3328, + "id": 3942, "properties": { "east": "none", "north": "side", @@ -178136,7 +193373,7 @@ } }, { - "id": 3329, + "id": 3943, "properties": { "east": "none", "north": "side", @@ -178146,7 +193383,7 @@ } }, { - "id": 3330, + "id": 3944, "properties": { "east": "none", "north": "side", @@ -178156,7 +193393,7 @@ } }, { - "id": 3331, + "id": 3945, "properties": { "east": "none", "north": "side", @@ -178166,7 +193403,7 @@ } }, { - "id": 3332, + "id": 3946, "properties": { "east": "none", "north": "side", @@ -178176,7 +193413,7 @@ } }, { - "id": 3333, + "id": 3947, "properties": { "east": "none", "north": "side", @@ -178186,7 +193423,7 @@ } }, { - "id": 3334, + "id": 3948, "properties": { "east": "none", "north": "side", @@ -178196,7 +193433,7 @@ } }, { - "id": 3335, + "id": 3949, "properties": { "east": "none", "north": "side", @@ -178206,7 +193443,7 @@ } }, { - "id": 3336, + "id": 3950, "properties": { "east": "none", "north": "side", @@ -178216,7 +193453,7 @@ } }, { - "id": 3337, + "id": 3951, "properties": { "east": "none", "north": "side", @@ -178226,7 +193463,7 @@ } }, { - "id": 3338, + "id": 3952, "properties": { "east": "none", "north": "side", @@ -178236,7 +193473,7 @@ } }, { - "id": 3339, + "id": 3953, "properties": { "east": "none", "north": "side", @@ -178246,7 +193483,7 @@ } }, { - "id": 3340, + "id": 3954, "properties": { "east": "none", "north": "side", @@ -178256,7 +193493,7 @@ } }, { - "id": 3341, + "id": 3955, "properties": { "east": "none", "north": "side", @@ -178266,7 +193503,7 @@ } }, { - "id": 3342, + "id": 3956, "properties": { "east": "none", "north": "side", @@ -178276,7 +193513,7 @@ } }, { - "id": 3343, + "id": 3957, "properties": { "east": "none", "north": "side", @@ -178286,7 +193523,7 @@ } }, { - "id": 3344, + "id": 3958, "properties": { "east": "none", "north": "side", @@ -178296,7 +193533,7 @@ } }, { - "id": 3345, + "id": 3959, "properties": { "east": "none", "north": "side", @@ -178306,7 +193543,7 @@ } }, { - "id": 3346, + "id": 3960, "properties": { "east": "none", "north": "side", @@ -178316,7 +193553,7 @@ } }, { - "id": 3347, + "id": 3961, "properties": { "east": "none", "north": "side", @@ -178326,7 +193563,7 @@ } }, { - "id": 3348, + "id": 3962, "properties": { "east": "none", "north": "side", @@ -178336,7 +193573,7 @@ } }, { - "id": 3349, + "id": 3963, "properties": { "east": "none", "north": "side", @@ -178346,7 +193583,7 @@ } }, { - "id": 3350, + "id": 3964, "properties": { "east": "none", "north": "side", @@ -178356,7 +193593,7 @@ } }, { - "id": 3351, + "id": 3965, "properties": { "east": "none", "north": "side", @@ -178366,7 +193603,7 @@ } }, { - "id": 3352, + "id": 3966, "properties": { "east": "none", "north": "side", @@ -178376,7 +193613,7 @@ } }, { - "id": 3353, + "id": 3967, "properties": { "east": "none", "north": "side", @@ -178386,7 +193623,7 @@ } }, { - "id": 3354, + "id": 3968, "properties": { "east": "none", "north": "side", @@ -178396,7 +193633,7 @@ } }, { - "id": 3355, + "id": 3969, "properties": { "east": "none", "north": "side", @@ -178406,7 +193643,7 @@ } }, { - "id": 3356, + "id": 3970, "properties": { "east": "none", "north": "side", @@ -178416,7 +193653,7 @@ } }, { - "id": 3357, + "id": 3971, "properties": { "east": "none", "north": "side", @@ -178426,7 +193663,7 @@ } }, { - "id": 3358, + "id": 3972, "properties": { "east": "none", "north": "side", @@ -178436,7 +193673,7 @@ } }, { - "id": 3359, + "id": 3973, "properties": { "east": "none", "north": "side", @@ -178446,7 +193683,7 @@ } }, { - "id": 3360, + "id": 3974, "properties": { "east": "none", "north": "side", @@ -178456,7 +193693,7 @@ } }, { - "id": 3361, + "id": 3975, "properties": { "east": "none", "north": "side", @@ -178466,7 +193703,7 @@ } }, { - "id": 3362, + "id": 3976, "properties": { "east": "none", "north": "side", @@ -178476,7 +193713,7 @@ } }, { - "id": 3363, + "id": 3977, "properties": { "east": "none", "north": "side", @@ -178486,7 +193723,7 @@ } }, { - "id": 3364, + "id": 3978, "properties": { "east": "none", "north": "side", @@ -178496,7 +193733,7 @@ } }, { - "id": 3365, + "id": 3979, "properties": { "east": "none", "north": "side", @@ -178506,7 +193743,7 @@ } }, { - "id": 3366, + "id": 3980, "properties": { "east": "none", "north": "side", @@ -178516,7 +193753,7 @@ } }, { - "id": 3367, + "id": 3981, "properties": { "east": "none", "north": "side", @@ -178526,7 +193763,7 @@ } }, { - "id": 3368, + "id": 3982, "properties": { "east": "none", "north": "side", @@ -178536,7 +193773,7 @@ } }, { - "id": 3369, + "id": 3983, "properties": { "east": "none", "north": "side", @@ -178546,7 +193783,7 @@ } }, { - "id": 3370, + "id": 3984, "properties": { "east": "none", "north": "side", @@ -178556,7 +193793,7 @@ } }, { - "id": 3371, + "id": 3985, "properties": { "east": "none", "north": "side", @@ -178566,7 +193803,7 @@ } }, { - "id": 3372, + "id": 3986, "properties": { "east": "none", "north": "side", @@ -178576,7 +193813,7 @@ } }, { - "id": 3373, + "id": 3987, "properties": { "east": "none", "north": "side", @@ -178586,7 +193823,7 @@ } }, { - "id": 3374, + "id": 3988, "properties": { "east": "none", "north": "side", @@ -178596,7 +193833,7 @@ } }, { - "id": 3375, + "id": 3989, "properties": { "east": "none", "north": "side", @@ -178606,7 +193843,7 @@ } }, { - "id": 3376, + "id": 3990, "properties": { "east": "none", "north": "side", @@ -178616,7 +193853,7 @@ } }, { - "id": 3377, + "id": 3991, "properties": { "east": "none", "north": "side", @@ -178626,7 +193863,7 @@ } }, { - "id": 3378, + "id": 3992, "properties": { "east": "none", "north": "side", @@ -178636,7 +193873,7 @@ } }, { - "id": 3379, + "id": 3993, "properties": { "east": "none", "north": "side", @@ -178646,7 +193883,7 @@ } }, { - "id": 3380, + "id": 3994, "properties": { "east": "none", "north": "side", @@ -178656,7 +193893,7 @@ } }, { - "id": 3381, + "id": 3995, "properties": { "east": "none", "north": "side", @@ -178666,7 +193903,7 @@ } }, { - "id": 3382, + "id": 3996, "properties": { "east": "none", "north": "side", @@ -178676,7 +193913,7 @@ } }, { - "id": 3383, + "id": 3997, "properties": { "east": "none", "north": "side", @@ -178686,7 +193923,7 @@ } }, { - "id": 3384, + "id": 3998, "properties": { "east": "none", "north": "side", @@ -178696,7 +193933,7 @@ } }, { - "id": 3385, + "id": 3999, "properties": { "east": "none", "north": "side", @@ -178706,7 +193943,7 @@ } }, { - "id": 3386, + "id": 4000, "properties": { "east": "none", "north": "side", @@ -178716,7 +193953,7 @@ } }, { - "id": 3387, + "id": 4001, "properties": { "east": "none", "north": "side", @@ -178726,7 +193963,7 @@ } }, { - "id": 3388, + "id": 4002, "properties": { "east": "none", "north": "side", @@ -178736,7 +193973,7 @@ } }, { - "id": 3389, + "id": 4003, "properties": { "east": "none", "north": "side", @@ -178746,7 +193983,7 @@ } }, { - "id": 3390, + "id": 4004, "properties": { "east": "none", "north": "side", @@ -178756,7 +193993,7 @@ } }, { - "id": 3391, + "id": 4005, "properties": { "east": "none", "north": "side", @@ -178766,7 +194003,7 @@ } }, { - "id": 3392, + "id": 4006, "properties": { "east": "none", "north": "side", @@ -178776,7 +194013,7 @@ } }, { - "id": 3393, + "id": 4007, "properties": { "east": "none", "north": "side", @@ -178786,7 +194023,7 @@ } }, { - "id": 3394, + "id": 4008, "properties": { "east": "none", "north": "side", @@ -178796,7 +194033,7 @@ } }, { - "id": 3395, + "id": 4009, "properties": { "east": "none", "north": "side", @@ -178806,7 +194043,7 @@ } }, { - "id": 3396, + "id": 4010, "properties": { "east": "none", "north": "side", @@ -178816,7 +194053,7 @@ } }, { - "id": 3397, + "id": 4011, "properties": { "east": "none", "north": "side", @@ -178826,7 +194063,7 @@ } }, { - "id": 3398, + "id": 4012, "properties": { "east": "none", "north": "side", @@ -178836,7 +194073,7 @@ } }, { - "id": 3399, + "id": 4013, "properties": { "east": "none", "north": "side", @@ -178846,7 +194083,7 @@ } }, { - "id": 3400, + "id": 4014, "properties": { "east": "none", "north": "side", @@ -178856,7 +194093,7 @@ } }, { - "id": 3401, + "id": 4015, "properties": { "east": "none", "north": "side", @@ -178866,7 +194103,7 @@ } }, { - "id": 3402, + "id": 4016, "properties": { "east": "none", "north": "side", @@ -178876,7 +194113,7 @@ } }, { - "id": 3403, + "id": 4017, "properties": { "east": "none", "north": "side", @@ -178886,7 +194123,7 @@ } }, { - "id": 3404, + "id": 4018, "properties": { "east": "none", "north": "side", @@ -178896,7 +194133,7 @@ } }, { - "id": 3405, + "id": 4019, "properties": { "east": "none", "north": "side", @@ -178906,7 +194143,7 @@ } }, { - "id": 3406, + "id": 4020, "properties": { "east": "none", "north": "side", @@ -178916,7 +194153,7 @@ } }, { - "id": 3407, + "id": 4021, "properties": { "east": "none", "north": "side", @@ -178926,7 +194163,7 @@ } }, { - "id": 3408, + "id": 4022, "properties": { "east": "none", "north": "side", @@ -178936,7 +194173,7 @@ } }, { - "id": 3409, + "id": 4023, "properties": { "east": "none", "north": "side", @@ -178946,7 +194183,7 @@ } }, { - "id": 3410, + "id": 4024, "properties": { "east": "none", "north": "side", @@ -178956,7 +194193,7 @@ } }, { - "id": 3411, + "id": 4025, "properties": { "east": "none", "north": "side", @@ -178966,7 +194203,7 @@ } }, { - "id": 3412, + "id": 4026, "properties": { "east": "none", "north": "side", @@ -178976,7 +194213,7 @@ } }, { - "id": 3413, + "id": 4027, "properties": { "east": "none", "north": "side", @@ -178986,7 +194223,7 @@ } }, { - "id": 3414, + "id": 4028, "properties": { "east": "none", "north": "side", @@ -178996,7 +194233,7 @@ } }, { - "id": 3415, + "id": 4029, "properties": { "east": "none", "north": "side", @@ -179006,7 +194243,7 @@ } }, { - "id": 3416, + "id": 4030, "properties": { "east": "none", "north": "side", @@ -179016,7 +194253,7 @@ } }, { - "id": 3417, + "id": 4031, "properties": { "east": "none", "north": "side", @@ -179026,7 +194263,7 @@ } }, { - "id": 3418, + "id": 4032, "properties": { "east": "none", "north": "side", @@ -179036,7 +194273,7 @@ } }, { - "id": 3419, + "id": 4033, "properties": { "east": "none", "north": "side", @@ -179046,7 +194283,7 @@ } }, { - "id": 3420, + "id": 4034, "properties": { "east": "none", "north": "side", @@ -179056,7 +194293,7 @@ } }, { - "id": 3421, + "id": 4035, "properties": { "east": "none", "north": "side", @@ -179066,7 +194303,7 @@ } }, { - "id": 3422, + "id": 4036, "properties": { "east": "none", "north": "side", @@ -179076,7 +194313,7 @@ } }, { - "id": 3423, + "id": 4037, "properties": { "east": "none", "north": "side", @@ -179086,7 +194323,7 @@ } }, { - "id": 3424, + "id": 4038, "properties": { "east": "none", "north": "side", @@ -179096,7 +194333,7 @@ } }, { - "id": 3425, + "id": 4039, "properties": { "east": "none", "north": "side", @@ -179106,7 +194343,7 @@ } }, { - "id": 3426, + "id": 4040, "properties": { "east": "none", "north": "side", @@ -179116,7 +194353,7 @@ } }, { - "id": 3427, + "id": 4041, "properties": { "east": "none", "north": "side", @@ -179126,7 +194363,7 @@ } }, { - "id": 3428, + "id": 4042, "properties": { "east": "none", "north": "side", @@ -179136,7 +194373,7 @@ } }, { - "id": 3429, + "id": 4043, "properties": { "east": "none", "north": "side", @@ -179146,7 +194383,7 @@ } }, { - "id": 3430, + "id": 4044, "properties": { "east": "none", "north": "side", @@ -179156,7 +194393,7 @@ } }, { - "id": 3431, + "id": 4045, "properties": { "east": "none", "north": "side", @@ -179166,7 +194403,7 @@ } }, { - "id": 3432, + "id": 4046, "properties": { "east": "none", "north": "side", @@ -179176,7 +194413,7 @@ } }, { - "id": 3433, + "id": 4047, "properties": { "east": "none", "north": "side", @@ -179186,7 +194423,7 @@ } }, { - "id": 3434, + "id": 4048, "properties": { "east": "none", "north": "side", @@ -179196,7 +194433,7 @@ } }, { - "id": 3435, + "id": 4049, "properties": { "east": "none", "north": "side", @@ -179206,7 +194443,7 @@ } }, { - "id": 3436, + "id": 4050, "properties": { "east": "none", "north": "side", @@ -179216,7 +194453,7 @@ } }, { - "id": 3437, + "id": 4051, "properties": { "east": "none", "north": "side", @@ -179226,7 +194463,7 @@ } }, { - "id": 3438, + "id": 4052, "properties": { "east": "none", "north": "side", @@ -179236,7 +194473,7 @@ } }, { - "id": 3439, + "id": 4053, "properties": { "east": "none", "north": "side", @@ -179246,7 +194483,7 @@ } }, { - "id": 3440, + "id": 4054, "properties": { "east": "none", "north": "side", @@ -179256,7 +194493,7 @@ } }, { - "id": 3441, + "id": 4055, "properties": { "east": "none", "north": "side", @@ -179266,7 +194503,7 @@ } }, { - "id": 3442, + "id": 4056, "properties": { "east": "none", "north": "side", @@ -179276,7 +194513,7 @@ } }, { - "id": 3443, + "id": 4057, "properties": { "east": "none", "north": "side", @@ -179286,7 +194523,7 @@ } }, { - "id": 3444, + "id": 4058, "properties": { "east": "none", "north": "side", @@ -179296,7 +194533,7 @@ } }, { - "id": 3445, + "id": 4059, "properties": { "east": "none", "north": "side", @@ -179306,7 +194543,7 @@ } }, { - "id": 3446, + "id": 4060, "properties": { "east": "none", "north": "side", @@ -179316,7 +194553,7 @@ } }, { - "id": 3447, + "id": 4061, "properties": { "east": "none", "north": "side", @@ -179326,7 +194563,7 @@ } }, { - "id": 3448, + "id": 4062, "properties": { "east": "none", "north": "side", @@ -179336,7 +194573,7 @@ } }, { - "id": 3449, + "id": 4063, "properties": { "east": "none", "north": "side", @@ -179346,7 +194583,7 @@ } }, { - "id": 3450, + "id": 4064, "properties": { "east": "none", "north": "side", @@ -179356,7 +194593,7 @@ } }, { - "id": 3451, + "id": 4065, "properties": { "east": "none", "north": "side", @@ -179366,7 +194603,7 @@ } }, { - "id": 3452, + "id": 4066, "properties": { "east": "none", "north": "side", @@ -179376,7 +194613,7 @@ } }, { - "id": 3453, + "id": 4067, "properties": { "east": "none", "north": "side", @@ -179386,7 +194623,7 @@ } }, { - "id": 3454, + "id": 4068, "properties": { "east": "none", "north": "side", @@ -179396,7 +194633,7 @@ } }, { - "id": 3455, + "id": 4069, "properties": { "east": "none", "north": "side", @@ -179406,7 +194643,7 @@ } }, { - "id": 3456, + "id": 4070, "properties": { "east": "none", "north": "side", @@ -179416,7 +194653,7 @@ } }, { - "id": 3457, + "id": 4071, "properties": { "east": "none", "north": "side", @@ -179426,7 +194663,7 @@ } }, { - "id": 3458, + "id": 4072, "properties": { "east": "none", "north": "side", @@ -179436,7 +194673,7 @@ } }, { - "id": 3459, + "id": 4073, "properties": { "east": "none", "north": "side", @@ -179446,7 +194683,7 @@ } }, { - "id": 3460, + "id": 4074, "properties": { "east": "none", "north": "side", @@ -179456,7 +194693,7 @@ } }, { - "id": 3461, + "id": 4075, "properties": { "east": "none", "north": "side", @@ -179466,7 +194703,7 @@ } }, { - "id": 3462, + "id": 4076, "properties": { "east": "none", "north": "side", @@ -179476,7 +194713,7 @@ } }, { - "id": 3463, + "id": 4077, "properties": { "east": "none", "north": "side", @@ -179486,7 +194723,7 @@ } }, { - "id": 3464, + "id": 4078, "properties": { "east": "none", "north": "none", @@ -179496,7 +194733,7 @@ } }, { - "id": 3465, + "id": 4079, "properties": { "east": "none", "north": "none", @@ -179506,7 +194743,7 @@ } }, { - "id": 3466, + "id": 4080, "properties": { "east": "none", "north": "none", @@ -179516,7 +194753,7 @@ } }, { - "id": 3467, + "id": 4081, "properties": { "east": "none", "north": "none", @@ -179526,7 +194763,7 @@ } }, { - "id": 3468, + "id": 4082, "properties": { "east": "none", "north": "none", @@ -179536,7 +194773,7 @@ } }, { - "id": 3469, + "id": 4083, "properties": { "east": "none", "north": "none", @@ -179546,7 +194783,7 @@ } }, { - "id": 3470, + "id": 4084, "properties": { "east": "none", "north": "none", @@ -179556,7 +194793,7 @@ } }, { - "id": 3471, + "id": 4085, "properties": { "east": "none", "north": "none", @@ -179567,7 +194804,7 @@ }, { "default": true, - "id": 3472, + "id": 4086, "properties": { "east": "none", "north": "none", @@ -179577,7 +194814,7 @@ } }, { - "id": 3473, + "id": 4087, "properties": { "east": "none", "north": "none", @@ -179587,7 +194824,7 @@ } }, { - "id": 3474, + "id": 4088, "properties": { "east": "none", "north": "none", @@ -179597,7 +194834,7 @@ } }, { - "id": 3475, + "id": 4089, "properties": { "east": "none", "north": "none", @@ -179607,7 +194844,7 @@ } }, { - "id": 3476, + "id": 4090, "properties": { "east": "none", "north": "none", @@ -179617,7 +194854,7 @@ } }, { - "id": 3477, + "id": 4091, "properties": { "east": "none", "north": "none", @@ -179627,7 +194864,7 @@ } }, { - "id": 3478, + "id": 4092, "properties": { "east": "none", "north": "none", @@ -179637,7 +194874,7 @@ } }, { - "id": 3479, + "id": 4093, "properties": { "east": "none", "north": "none", @@ -179647,7 +194884,7 @@ } }, { - "id": 3480, + "id": 4094, "properties": { "east": "none", "north": "none", @@ -179657,7 +194894,7 @@ } }, { - "id": 3481, + "id": 4095, "properties": { "east": "none", "north": "none", @@ -179667,7 +194904,7 @@ } }, { - "id": 3482, + "id": 4096, "properties": { "east": "none", "north": "none", @@ -179677,7 +194914,7 @@ } }, { - "id": 3483, + "id": 4097, "properties": { "east": "none", "north": "none", @@ -179687,7 +194924,7 @@ } }, { - "id": 3484, + "id": 4098, "properties": { "east": "none", "north": "none", @@ -179697,7 +194934,7 @@ } }, { - "id": 3485, + "id": 4099, "properties": { "east": "none", "north": "none", @@ -179707,7 +194944,7 @@ } }, { - "id": 3486, + "id": 4100, "properties": { "east": "none", "north": "none", @@ -179717,7 +194954,7 @@ } }, { - "id": 3487, + "id": 4101, "properties": { "east": "none", "north": "none", @@ -179727,7 +194964,7 @@ } }, { - "id": 3488, + "id": 4102, "properties": { "east": "none", "north": "none", @@ -179737,7 +194974,7 @@ } }, { - "id": 3489, + "id": 4103, "properties": { "east": "none", "north": "none", @@ -179747,7 +194984,7 @@ } }, { - "id": 3490, + "id": 4104, "properties": { "east": "none", "north": "none", @@ -179757,7 +194994,7 @@ } }, { - "id": 3491, + "id": 4105, "properties": { "east": "none", "north": "none", @@ -179767,7 +195004,7 @@ } }, { - "id": 3492, + "id": 4106, "properties": { "east": "none", "north": "none", @@ -179777,7 +195014,7 @@ } }, { - "id": 3493, + "id": 4107, "properties": { "east": "none", "north": "none", @@ -179787,7 +195024,7 @@ } }, { - "id": 3494, + "id": 4108, "properties": { "east": "none", "north": "none", @@ -179797,7 +195034,7 @@ } }, { - "id": 3495, + "id": 4109, "properties": { "east": "none", "north": "none", @@ -179807,7 +195044,7 @@ } }, { - "id": 3496, + "id": 4110, "properties": { "east": "none", "north": "none", @@ -179817,7 +195054,7 @@ } }, { - "id": 3497, + "id": 4111, "properties": { "east": "none", "north": "none", @@ -179827,7 +195064,7 @@ } }, { - "id": 3498, + "id": 4112, "properties": { "east": "none", "north": "none", @@ -179837,7 +195074,7 @@ } }, { - "id": 3499, + "id": 4113, "properties": { "east": "none", "north": "none", @@ -179847,7 +195084,7 @@ } }, { - "id": 3500, + "id": 4114, "properties": { "east": "none", "north": "none", @@ -179857,7 +195094,7 @@ } }, { - "id": 3501, + "id": 4115, "properties": { "east": "none", "north": "none", @@ -179867,7 +195104,7 @@ } }, { - "id": 3502, + "id": 4116, "properties": { "east": "none", "north": "none", @@ -179877,7 +195114,7 @@ } }, { - "id": 3503, + "id": 4117, "properties": { "east": "none", "north": "none", @@ -179887,7 +195124,7 @@ } }, { - "id": 3504, + "id": 4118, "properties": { "east": "none", "north": "none", @@ -179897,7 +195134,7 @@ } }, { - "id": 3505, + "id": 4119, "properties": { "east": "none", "north": "none", @@ -179907,7 +195144,7 @@ } }, { - "id": 3506, + "id": 4120, "properties": { "east": "none", "north": "none", @@ -179917,7 +195154,7 @@ } }, { - "id": 3507, + "id": 4121, "properties": { "east": "none", "north": "none", @@ -179927,7 +195164,7 @@ } }, { - "id": 3508, + "id": 4122, "properties": { "east": "none", "north": "none", @@ -179937,7 +195174,7 @@ } }, { - "id": 3509, + "id": 4123, "properties": { "east": "none", "north": "none", @@ -179947,7 +195184,7 @@ } }, { - "id": 3510, + "id": 4124, "properties": { "east": "none", "north": "none", @@ -179957,7 +195194,7 @@ } }, { - "id": 3511, + "id": 4125, "properties": { "east": "none", "north": "none", @@ -179967,7 +195204,7 @@ } }, { - "id": 3512, + "id": 4126, "properties": { "east": "none", "north": "none", @@ -179977,7 +195214,7 @@ } }, { - "id": 3513, + "id": 4127, "properties": { "east": "none", "north": "none", @@ -179987,7 +195224,7 @@ } }, { - "id": 3514, + "id": 4128, "properties": { "east": "none", "north": "none", @@ -179997,7 +195234,7 @@ } }, { - "id": 3515, + "id": 4129, "properties": { "east": "none", "north": "none", @@ -180007,7 +195244,7 @@ } }, { - "id": 3516, + "id": 4130, "properties": { "east": "none", "north": "none", @@ -180017,7 +195254,7 @@ } }, { - "id": 3517, + "id": 4131, "properties": { "east": "none", "north": "none", @@ -180027,7 +195264,7 @@ } }, { - "id": 3518, + "id": 4132, "properties": { "east": "none", "north": "none", @@ -180037,7 +195274,7 @@ } }, { - "id": 3519, + "id": 4133, "properties": { "east": "none", "north": "none", @@ -180047,7 +195284,7 @@ } }, { - "id": 3520, + "id": 4134, "properties": { "east": "none", "north": "none", @@ -180057,7 +195294,7 @@ } }, { - "id": 3521, + "id": 4135, "properties": { "east": "none", "north": "none", @@ -180067,7 +195304,7 @@ } }, { - "id": 3522, + "id": 4136, "properties": { "east": "none", "north": "none", @@ -180077,7 +195314,7 @@ } }, { - "id": 3523, + "id": 4137, "properties": { "east": "none", "north": "none", @@ -180087,7 +195324,7 @@ } }, { - "id": 3524, + "id": 4138, "properties": { "east": "none", "north": "none", @@ -180097,7 +195334,7 @@ } }, { - "id": 3525, + "id": 4139, "properties": { "east": "none", "north": "none", @@ -180107,7 +195344,7 @@ } }, { - "id": 3526, + "id": 4140, "properties": { "east": "none", "north": "none", @@ -180117,7 +195354,7 @@ } }, { - "id": 3527, + "id": 4141, "properties": { "east": "none", "north": "none", @@ -180127,7 +195364,7 @@ } }, { - "id": 3528, + "id": 4142, "properties": { "east": "none", "north": "none", @@ -180137,7 +195374,7 @@ } }, { - "id": 3529, + "id": 4143, "properties": { "east": "none", "north": "none", @@ -180147,7 +195384,7 @@ } }, { - "id": 3530, + "id": 4144, "properties": { "east": "none", "north": "none", @@ -180157,7 +195394,7 @@ } }, { - "id": 3531, + "id": 4145, "properties": { "east": "none", "north": "none", @@ -180167,7 +195404,7 @@ } }, { - "id": 3532, + "id": 4146, "properties": { "east": "none", "north": "none", @@ -180177,7 +195414,7 @@ } }, { - "id": 3533, + "id": 4147, "properties": { "east": "none", "north": "none", @@ -180187,7 +195424,7 @@ } }, { - "id": 3534, + "id": 4148, "properties": { "east": "none", "north": "none", @@ -180197,7 +195434,7 @@ } }, { - "id": 3535, + "id": 4149, "properties": { "east": "none", "north": "none", @@ -180207,7 +195444,7 @@ } }, { - "id": 3536, + "id": 4150, "properties": { "east": "none", "north": "none", @@ -180217,7 +195454,7 @@ } }, { - "id": 3537, + "id": 4151, "properties": { "east": "none", "north": "none", @@ -180227,7 +195464,7 @@ } }, { - "id": 3538, + "id": 4152, "properties": { "east": "none", "north": "none", @@ -180237,7 +195474,7 @@ } }, { - "id": 3539, + "id": 4153, "properties": { "east": "none", "north": "none", @@ -180247,7 +195484,7 @@ } }, { - "id": 3540, + "id": 4154, "properties": { "east": "none", "north": "none", @@ -180257,7 +195494,7 @@ } }, { - "id": 3541, + "id": 4155, "properties": { "east": "none", "north": "none", @@ -180267,7 +195504,7 @@ } }, { - "id": 3542, + "id": 4156, "properties": { "east": "none", "north": "none", @@ -180277,7 +195514,7 @@ } }, { - "id": 3543, + "id": 4157, "properties": { "east": "none", "north": "none", @@ -180287,7 +195524,7 @@ } }, { - "id": 3544, + "id": 4158, "properties": { "east": "none", "north": "none", @@ -180297,7 +195534,7 @@ } }, { - "id": 3545, + "id": 4159, "properties": { "east": "none", "north": "none", @@ -180307,7 +195544,7 @@ } }, { - "id": 3546, + "id": 4160, "properties": { "east": "none", "north": "none", @@ -180317,7 +195554,7 @@ } }, { - "id": 3547, + "id": 4161, "properties": { "east": "none", "north": "none", @@ -180327,7 +195564,7 @@ } }, { - "id": 3548, + "id": 4162, "properties": { "east": "none", "north": "none", @@ -180337,7 +195574,7 @@ } }, { - "id": 3549, + "id": 4163, "properties": { "east": "none", "north": "none", @@ -180347,7 +195584,7 @@ } }, { - "id": 3550, + "id": 4164, "properties": { "east": "none", "north": "none", @@ -180357,7 +195594,7 @@ } }, { - "id": 3551, + "id": 4165, "properties": { "east": "none", "north": "none", @@ -180367,7 +195604,7 @@ } }, { - "id": 3552, + "id": 4166, "properties": { "east": "none", "north": "none", @@ -180377,7 +195614,7 @@ } }, { - "id": 3553, + "id": 4167, "properties": { "east": "none", "north": "none", @@ -180387,7 +195624,7 @@ } }, { - "id": 3554, + "id": 4168, "properties": { "east": "none", "north": "none", @@ -180397,7 +195634,7 @@ } }, { - "id": 3555, + "id": 4169, "properties": { "east": "none", "north": "none", @@ -180407,7 +195644,7 @@ } }, { - "id": 3556, + "id": 4170, "properties": { "east": "none", "north": "none", @@ -180417,7 +195654,7 @@ } }, { - "id": 3557, + "id": 4171, "properties": { "east": "none", "north": "none", @@ -180427,7 +195664,7 @@ } }, { - "id": 3558, + "id": 4172, "properties": { "east": "none", "north": "none", @@ -180437,7 +195674,7 @@ } }, { - "id": 3559, + "id": 4173, "properties": { "east": "none", "north": "none", @@ -180447,7 +195684,7 @@ } }, { - "id": 3560, + "id": 4174, "properties": { "east": "none", "north": "none", @@ -180457,7 +195694,7 @@ } }, { - "id": 3561, + "id": 4175, "properties": { "east": "none", "north": "none", @@ -180467,7 +195704,7 @@ } }, { - "id": 3562, + "id": 4176, "properties": { "east": "none", "north": "none", @@ -180477,7 +195714,7 @@ } }, { - "id": 3563, + "id": 4177, "properties": { "east": "none", "north": "none", @@ -180487,7 +195724,7 @@ } }, { - "id": 3564, + "id": 4178, "properties": { "east": "none", "north": "none", @@ -180497,7 +195734,7 @@ } }, { - "id": 3565, + "id": 4179, "properties": { "east": "none", "north": "none", @@ -180507,7 +195744,7 @@ } }, { - "id": 3566, + "id": 4180, "properties": { "east": "none", "north": "none", @@ -180517,7 +195754,7 @@ } }, { - "id": 3567, + "id": 4181, "properties": { "east": "none", "north": "none", @@ -180527,7 +195764,7 @@ } }, { - "id": 3568, + "id": 4182, "properties": { "east": "none", "north": "none", @@ -180537,7 +195774,7 @@ } }, { - "id": 3569, + "id": 4183, "properties": { "east": "none", "north": "none", @@ -180547,7 +195784,7 @@ } }, { - "id": 3570, + "id": 4184, "properties": { "east": "none", "north": "none", @@ -180557,7 +195794,7 @@ } }, { - "id": 3571, + "id": 4185, "properties": { "east": "none", "north": "none", @@ -180567,7 +195804,7 @@ } }, { - "id": 3572, + "id": 4186, "properties": { "east": "none", "north": "none", @@ -180577,7 +195814,7 @@ } }, { - "id": 3573, + "id": 4187, "properties": { "east": "none", "north": "none", @@ -180587,7 +195824,7 @@ } }, { - "id": 3574, + "id": 4188, "properties": { "east": "none", "north": "none", @@ -180597,7 +195834,7 @@ } }, { - "id": 3575, + "id": 4189, "properties": { "east": "none", "north": "none", @@ -180607,7 +195844,7 @@ } }, { - "id": 3576, + "id": 4190, "properties": { "east": "none", "north": "none", @@ -180617,7 +195854,7 @@ } }, { - "id": 3577, + "id": 4191, "properties": { "east": "none", "north": "none", @@ -180627,7 +195864,7 @@ } }, { - "id": 3578, + "id": 4192, "properties": { "east": "none", "north": "none", @@ -180637,7 +195874,7 @@ } }, { - "id": 3579, + "id": 4193, "properties": { "east": "none", "north": "none", @@ -180647,7 +195884,7 @@ } }, { - "id": 3580, + "id": 4194, "properties": { "east": "none", "north": "none", @@ -180657,7 +195894,7 @@ } }, { - "id": 3581, + "id": 4195, "properties": { "east": "none", "north": "none", @@ -180667,7 +195904,7 @@ } }, { - "id": 3582, + "id": 4196, "properties": { "east": "none", "north": "none", @@ -180677,7 +195914,7 @@ } }, { - "id": 3583, + "id": 4197, "properties": { "east": "none", "north": "none", @@ -180687,7 +195924,7 @@ } }, { - "id": 3584, + "id": 4198, "properties": { "east": "none", "north": "none", @@ -180697,7 +195934,7 @@ } }, { - "id": 3585, + "id": 4199, "properties": { "east": "none", "north": "none", @@ -180707,7 +195944,7 @@ } }, { - "id": 3586, + "id": 4200, "properties": { "east": "none", "north": "none", @@ -180717,7 +195954,7 @@ } }, { - "id": 3587, + "id": 4201, "properties": { "east": "none", "north": "none", @@ -180727,7 +195964,7 @@ } }, { - "id": 3588, + "id": 4202, "properties": { "east": "none", "north": "none", @@ -180737,7 +195974,7 @@ } }, { - "id": 3589, + "id": 4203, "properties": { "east": "none", "north": "none", @@ -180747,7 +195984,7 @@ } }, { - "id": 3590, + "id": 4204, "properties": { "east": "none", "north": "none", @@ -180757,7 +195994,7 @@ } }, { - "id": 3591, + "id": 4205, "properties": { "east": "none", "north": "none", @@ -180767,7 +196004,7 @@ } }, { - "id": 3592, + "id": 4206, "properties": { "east": "none", "north": "none", @@ -180777,7 +196014,7 @@ } }, { - "id": 3593, + "id": 4207, "properties": { "east": "none", "north": "none", @@ -180787,7 +196024,7 @@ } }, { - "id": 3594, + "id": 4208, "properties": { "east": "none", "north": "none", @@ -180797,7 +196034,7 @@ } }, { - "id": 3595, + "id": 4209, "properties": { "east": "none", "north": "none", @@ -180807,7 +196044,7 @@ } }, { - "id": 3596, + "id": 4210, "properties": { "east": "none", "north": "none", @@ -180817,7 +196054,7 @@ } }, { - "id": 3597, + "id": 4211, "properties": { "east": "none", "north": "none", @@ -180827,7 +196064,7 @@ } }, { - "id": 3598, + "id": 4212, "properties": { "east": "none", "north": "none", @@ -180837,7 +196074,7 @@ } }, { - "id": 3599, + "id": 4213, "properties": { "east": "none", "north": "none", @@ -180847,7 +196084,7 @@ } }, { - "id": 3600, + "id": 4214, "properties": { "east": "none", "north": "none", @@ -180857,7 +196094,7 @@ } }, { - "id": 3601, + "id": 4215, "properties": { "east": "none", "north": "none", @@ -180867,7 +196104,7 @@ } }, { - "id": 3602, + "id": 4216, "properties": { "east": "none", "north": "none", @@ -180877,7 +196114,7 @@ } }, { - "id": 3603, + "id": 4217, "properties": { "east": "none", "north": "none", @@ -180887,7 +196124,7 @@ } }, { - "id": 3604, + "id": 4218, "properties": { "east": "none", "north": "none", @@ -180897,7 +196134,7 @@ } }, { - "id": 3605, + "id": 4219, "properties": { "east": "none", "north": "none", @@ -180907,7 +196144,7 @@ } }, { - "id": 3606, + "id": 4220, "properties": { "east": "none", "north": "none", @@ -180917,7 +196154,7 @@ } }, { - "id": 3607, + "id": 4221, "properties": { "east": "none", "north": "none", @@ -180932,7 +196169,7 @@ "states": [ { "default": true, - "id": 21447 + "id": 23231 } ] }, @@ -180961,7 +196198,7 @@ }, "states": [ { - "id": 4340, + "id": 5716, "properties": { "delay": "1", "facing": "north", @@ -180970,7 +196207,7 @@ } }, { - "id": 4341, + "id": 5717, "properties": { "delay": "1", "facing": "north", @@ -180979,7 +196216,7 @@ } }, { - "id": 4342, + "id": 5718, "properties": { "delay": "1", "facing": "north", @@ -180989,7 +196226,7 @@ }, { "default": true, - "id": 4343, + "id": 5719, "properties": { "delay": "1", "facing": "north", @@ -180998,7 +196235,7 @@ } }, { - "id": 4344, + "id": 5720, "properties": { "delay": "1", "facing": "south", @@ -181007,7 +196244,7 @@ } }, { - "id": 4345, + "id": 5721, "properties": { "delay": "1", "facing": "south", @@ -181016,7 +196253,7 @@ } }, { - "id": 4346, + "id": 5722, "properties": { "delay": "1", "facing": "south", @@ -181025,7 +196262,7 @@ } }, { - "id": 4347, + "id": 5723, "properties": { "delay": "1", "facing": "south", @@ -181034,7 +196271,7 @@ } }, { - "id": 4348, + "id": 5724, "properties": { "delay": "1", "facing": "west", @@ -181043,7 +196280,7 @@ } }, { - "id": 4349, + "id": 5725, "properties": { "delay": "1", "facing": "west", @@ -181052,7 +196289,7 @@ } }, { - "id": 4350, + "id": 5726, "properties": { "delay": "1", "facing": "west", @@ -181061,7 +196298,7 @@ } }, { - "id": 4351, + "id": 5727, "properties": { "delay": "1", "facing": "west", @@ -181070,7 +196307,7 @@ } }, { - "id": 4352, + "id": 5728, "properties": { "delay": "1", "facing": "east", @@ -181079,7 +196316,7 @@ } }, { - "id": 4353, + "id": 5729, "properties": { "delay": "1", "facing": "east", @@ -181088,7 +196325,7 @@ } }, { - "id": 4354, + "id": 5730, "properties": { "delay": "1", "facing": "east", @@ -181097,7 +196334,7 @@ } }, { - "id": 4355, + "id": 5731, "properties": { "delay": "1", "facing": "east", @@ -181106,7 +196343,7 @@ } }, { - "id": 4356, + "id": 5732, "properties": { "delay": "2", "facing": "north", @@ -181115,7 +196352,7 @@ } }, { - "id": 4357, + "id": 5733, "properties": { "delay": "2", "facing": "north", @@ -181124,7 +196361,7 @@ } }, { - "id": 4358, + "id": 5734, "properties": { "delay": "2", "facing": "north", @@ -181133,7 +196370,7 @@ } }, { - "id": 4359, + "id": 5735, "properties": { "delay": "2", "facing": "north", @@ -181142,7 +196379,7 @@ } }, { - "id": 4360, + "id": 5736, "properties": { "delay": "2", "facing": "south", @@ -181151,7 +196388,7 @@ } }, { - "id": 4361, + "id": 5737, "properties": { "delay": "2", "facing": "south", @@ -181160,7 +196397,7 @@ } }, { - "id": 4362, + "id": 5738, "properties": { "delay": "2", "facing": "south", @@ -181169,7 +196406,7 @@ } }, { - "id": 4363, + "id": 5739, "properties": { "delay": "2", "facing": "south", @@ -181178,7 +196415,7 @@ } }, { - "id": 4364, + "id": 5740, "properties": { "delay": "2", "facing": "west", @@ -181187,7 +196424,7 @@ } }, { - "id": 4365, + "id": 5741, "properties": { "delay": "2", "facing": "west", @@ -181196,7 +196433,7 @@ } }, { - "id": 4366, + "id": 5742, "properties": { "delay": "2", "facing": "west", @@ -181205,7 +196442,7 @@ } }, { - "id": 4367, + "id": 5743, "properties": { "delay": "2", "facing": "west", @@ -181214,7 +196451,7 @@ } }, { - "id": 4368, + "id": 5744, "properties": { "delay": "2", "facing": "east", @@ -181223,7 +196460,7 @@ } }, { - "id": 4369, + "id": 5745, "properties": { "delay": "2", "facing": "east", @@ -181232,7 +196469,7 @@ } }, { - "id": 4370, + "id": 5746, "properties": { "delay": "2", "facing": "east", @@ -181241,7 +196478,7 @@ } }, { - "id": 4371, + "id": 5747, "properties": { "delay": "2", "facing": "east", @@ -181250,7 +196487,7 @@ } }, { - "id": 4372, + "id": 5748, "properties": { "delay": "3", "facing": "north", @@ -181259,7 +196496,7 @@ } }, { - "id": 4373, + "id": 5749, "properties": { "delay": "3", "facing": "north", @@ -181268,7 +196505,7 @@ } }, { - "id": 4374, + "id": 5750, "properties": { "delay": "3", "facing": "north", @@ -181277,7 +196514,7 @@ } }, { - "id": 4375, + "id": 5751, "properties": { "delay": "3", "facing": "north", @@ -181286,7 +196523,7 @@ } }, { - "id": 4376, + "id": 5752, "properties": { "delay": "3", "facing": "south", @@ -181295,7 +196532,7 @@ } }, { - "id": 4377, + "id": 5753, "properties": { "delay": "3", "facing": "south", @@ -181304,7 +196541,7 @@ } }, { - "id": 4378, + "id": 5754, "properties": { "delay": "3", "facing": "south", @@ -181313,7 +196550,7 @@ } }, { - "id": 4379, + "id": 5755, "properties": { "delay": "3", "facing": "south", @@ -181322,7 +196559,7 @@ } }, { - "id": 4380, + "id": 5756, "properties": { "delay": "3", "facing": "west", @@ -181331,7 +196568,7 @@ } }, { - "id": 4381, + "id": 5757, "properties": { "delay": "3", "facing": "west", @@ -181340,7 +196577,7 @@ } }, { - "id": 4382, + "id": 5758, "properties": { "delay": "3", "facing": "west", @@ -181349,7 +196586,7 @@ } }, { - "id": 4383, + "id": 5759, "properties": { "delay": "3", "facing": "west", @@ -181358,7 +196595,7 @@ } }, { - "id": 4384, + "id": 5760, "properties": { "delay": "3", "facing": "east", @@ -181367,7 +196604,7 @@ } }, { - "id": 4385, + "id": 5761, "properties": { "delay": "3", "facing": "east", @@ -181376,7 +196613,7 @@ } }, { - "id": 4386, + "id": 5762, "properties": { "delay": "3", "facing": "east", @@ -181385,7 +196622,7 @@ } }, { - "id": 4387, + "id": 5763, "properties": { "delay": "3", "facing": "east", @@ -181394,7 +196631,7 @@ } }, { - "id": 4388, + "id": 5764, "properties": { "delay": "4", "facing": "north", @@ -181403,7 +196640,7 @@ } }, { - "id": 4389, + "id": 5765, "properties": { "delay": "4", "facing": "north", @@ -181412,7 +196649,7 @@ } }, { - "id": 4390, + "id": 5766, "properties": { "delay": "4", "facing": "north", @@ -181421,7 +196658,7 @@ } }, { - "id": 4391, + "id": 5767, "properties": { "delay": "4", "facing": "north", @@ -181430,7 +196667,7 @@ } }, { - "id": 4392, + "id": 5768, "properties": { "delay": "4", "facing": "south", @@ -181439,7 +196676,7 @@ } }, { - "id": 4393, + "id": 5769, "properties": { "delay": "4", "facing": "south", @@ -181448,7 +196685,7 @@ } }, { - "id": 4394, + "id": 5770, "properties": { "delay": "4", "facing": "south", @@ -181457,7 +196694,7 @@ } }, { - "id": 4395, + "id": 5771, "properties": { "delay": "4", "facing": "south", @@ -181466,7 +196703,7 @@ } }, { - "id": 4396, + "id": 5772, "properties": { "delay": "4", "facing": "west", @@ -181475,7 +196712,7 @@ } }, { - "id": 4397, + "id": 5773, "properties": { "delay": "4", "facing": "west", @@ -181484,7 +196721,7 @@ } }, { - "id": 4398, + "id": 5774, "properties": { "delay": "4", "facing": "west", @@ -181493,7 +196730,7 @@ } }, { - "id": 4399, + "id": 5775, "properties": { "delay": "4", "facing": "west", @@ -181502,7 +196739,7 @@ } }, { - "id": 4400, + "id": 5776, "properties": { "delay": "4", "facing": "east", @@ -181511,7 +196748,7 @@ } }, { - "id": 4401, + "id": 5777, "properties": { "delay": "4", "facing": "east", @@ -181520,7 +196757,7 @@ } }, { - "id": 4402, + "id": 5778, "properties": { "delay": "4", "facing": "east", @@ -181529,7 +196766,7 @@ } }, { - "id": 4403, + "id": 5779, "properties": { "delay": "4", "facing": "east", @@ -181556,42 +196793,42 @@ }, "states": [ { - "id": 10106, + "id": 11890, "properties": { "conditional": "true", "facing": "north" } }, { - "id": 10107, + "id": 11891, "properties": { "conditional": "true", "facing": "east" } }, { - "id": 10108, + "id": 11892, "properties": { "conditional": "true", "facing": "south" } }, { - "id": 10109, + "id": 11893, "properties": { "conditional": "true", "facing": "west" } }, { - "id": 10110, + "id": 11894, "properties": { "conditional": "true", "facing": "up" } }, { - "id": 10111, + "id": 11895, "properties": { "conditional": "true", "facing": "down" @@ -181599,42 +196836,42 @@ }, { "default": true, - "id": 10112, + "id": 11896, "properties": { "conditional": "false", "facing": "north" } }, { - "id": 10113, + "id": 11897, "properties": { "conditional": "false", "facing": "east" } }, { - "id": 10114, + "id": 11898, "properties": { "conditional": "false", "facing": "south" } }, { - "id": 10115, + "id": 11899, "properties": { "conditional": "false", "facing": "west" } }, { - "id": 10116, + "id": 11900, "properties": { "conditional": "false", "facing": "up" } }, { - "id": 10117, + "id": 11901, "properties": { "conditional": "false", "facing": "down" @@ -181655,31 +196892,31 @@ "states": [ { "default": true, - "id": 17038, + "id": 18822, "properties": { "charges": "0" } }, { - "id": 17039, + "id": 18823, "properties": { "charges": "1" } }, { - "id": 17040, + "id": 18824, "properties": { "charges": "2" } }, { - "id": 17041, + "id": 18825, "properties": { "charges": "3" } }, { - "id": 17042, + "id": 18826, "properties": { "charges": "4" } @@ -181690,7 +196927,7 @@ "states": [ { "default": true, - "id": 19776 + "id": 21560 } ] }, @@ -181703,14 +196940,14 @@ }, "states": [ { - "id": 8630, + "id": 10274, "properties": { "half": "upper" } }, { "default": true, - "id": 8631, + "id": 10275, "properties": { "half": "lower" } @@ -181721,7 +196958,7 @@ "states": [ { "default": true, - "id": 107 + "id": 109 } ] }, @@ -181729,7 +196966,7 @@ "states": [ { "default": true, - "id": 476 + "id": 484 } ] }, @@ -181747,21 +196984,21 @@ }, "states": [ { - "id": 9095, + "id": 10751, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 9096, + "id": 10752, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 9097, + "id": 10753, "properties": { "type": "bottom", "waterlogged": "true" @@ -181769,21 +197006,21 @@ }, { "default": true, - "id": 9098, + "id": 10754, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 9099, + "id": 10755, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 9100, + "id": 10756, "properties": { "type": "double", "waterlogged": "false" @@ -181817,7 +197054,7 @@ }, "states": [ { - "id": 5761, + "id": 7201, "properties": { "facing": "north", "half": "top", @@ -181826,7 +197063,7 @@ } }, { - "id": 5762, + "id": 7202, "properties": { "facing": "north", "half": "top", @@ -181835,7 +197072,7 @@ } }, { - "id": 5763, + "id": 7203, "properties": { "facing": "north", "half": "top", @@ -181844,7 +197081,7 @@ } }, { - "id": 5764, + "id": 7204, "properties": { "facing": "north", "half": "top", @@ -181853,7 +197090,7 @@ } }, { - "id": 5765, + "id": 7205, "properties": { "facing": "north", "half": "top", @@ -181862,7 +197099,7 @@ } }, { - "id": 5766, + "id": 7206, "properties": { "facing": "north", "half": "top", @@ -181871,7 +197108,7 @@ } }, { - "id": 5767, + "id": 7207, "properties": { "facing": "north", "half": "top", @@ -181880,7 +197117,7 @@ } }, { - "id": 5768, + "id": 7208, "properties": { "facing": "north", "half": "top", @@ -181889,7 +197126,7 @@ } }, { - "id": 5769, + "id": 7209, "properties": { "facing": "north", "half": "top", @@ -181898,7 +197135,7 @@ } }, { - "id": 5770, + "id": 7210, "properties": { "facing": "north", "half": "top", @@ -181907,7 +197144,7 @@ } }, { - "id": 5771, + "id": 7211, "properties": { "facing": "north", "half": "bottom", @@ -181917,7 +197154,7 @@ }, { "default": true, - "id": 5772, + "id": 7212, "properties": { "facing": "north", "half": "bottom", @@ -181926,7 +197163,7 @@ } }, { - "id": 5773, + "id": 7213, "properties": { "facing": "north", "half": "bottom", @@ -181935,7 +197172,7 @@ } }, { - "id": 5774, + "id": 7214, "properties": { "facing": "north", "half": "bottom", @@ -181944,7 +197181,7 @@ } }, { - "id": 5775, + "id": 7215, "properties": { "facing": "north", "half": "bottom", @@ -181953,7 +197190,7 @@ } }, { - "id": 5776, + "id": 7216, "properties": { "facing": "north", "half": "bottom", @@ -181962,7 +197199,7 @@ } }, { - "id": 5777, + "id": 7217, "properties": { "facing": "north", "half": "bottom", @@ -181971,7 +197208,7 @@ } }, { - "id": 5778, + "id": 7218, "properties": { "facing": "north", "half": "bottom", @@ -181980,7 +197217,7 @@ } }, { - "id": 5779, + "id": 7219, "properties": { "facing": "north", "half": "bottom", @@ -181989,7 +197226,7 @@ } }, { - "id": 5780, + "id": 7220, "properties": { "facing": "north", "half": "bottom", @@ -181998,7 +197235,7 @@ } }, { - "id": 5781, + "id": 7221, "properties": { "facing": "south", "half": "top", @@ -182007,7 +197244,7 @@ } }, { - "id": 5782, + "id": 7222, "properties": { "facing": "south", "half": "top", @@ -182016,7 +197253,7 @@ } }, { - "id": 5783, + "id": 7223, "properties": { "facing": "south", "half": "top", @@ -182025,7 +197262,7 @@ } }, { - "id": 5784, + "id": 7224, "properties": { "facing": "south", "half": "top", @@ -182034,7 +197271,7 @@ } }, { - "id": 5785, + "id": 7225, "properties": { "facing": "south", "half": "top", @@ -182043,7 +197280,7 @@ } }, { - "id": 5786, + "id": 7226, "properties": { "facing": "south", "half": "top", @@ -182052,7 +197289,7 @@ } }, { - "id": 5787, + "id": 7227, "properties": { "facing": "south", "half": "top", @@ -182061,7 +197298,7 @@ } }, { - "id": 5788, + "id": 7228, "properties": { "facing": "south", "half": "top", @@ -182070,7 +197307,7 @@ } }, { - "id": 5789, + "id": 7229, "properties": { "facing": "south", "half": "top", @@ -182079,7 +197316,7 @@ } }, { - "id": 5790, + "id": 7230, "properties": { "facing": "south", "half": "top", @@ -182088,7 +197325,7 @@ } }, { - "id": 5791, + "id": 7231, "properties": { "facing": "south", "half": "bottom", @@ -182097,7 +197334,7 @@ } }, { - "id": 5792, + "id": 7232, "properties": { "facing": "south", "half": "bottom", @@ -182106,7 +197343,7 @@ } }, { - "id": 5793, + "id": 7233, "properties": { "facing": "south", "half": "bottom", @@ -182115,7 +197352,7 @@ } }, { - "id": 5794, + "id": 7234, "properties": { "facing": "south", "half": "bottom", @@ -182124,7 +197361,7 @@ } }, { - "id": 5795, + "id": 7235, "properties": { "facing": "south", "half": "bottom", @@ -182133,7 +197370,7 @@ } }, { - "id": 5796, + "id": 7236, "properties": { "facing": "south", "half": "bottom", @@ -182142,7 +197379,7 @@ } }, { - "id": 5797, + "id": 7237, "properties": { "facing": "south", "half": "bottom", @@ -182151,7 +197388,7 @@ } }, { - "id": 5798, + "id": 7238, "properties": { "facing": "south", "half": "bottom", @@ -182160,7 +197397,7 @@ } }, { - "id": 5799, + "id": 7239, "properties": { "facing": "south", "half": "bottom", @@ -182169,7 +197406,7 @@ } }, { - "id": 5800, + "id": 7240, "properties": { "facing": "south", "half": "bottom", @@ -182178,7 +197415,7 @@ } }, { - "id": 5801, + "id": 7241, "properties": { "facing": "west", "half": "top", @@ -182187,7 +197424,7 @@ } }, { - "id": 5802, + "id": 7242, "properties": { "facing": "west", "half": "top", @@ -182196,7 +197433,7 @@ } }, { - "id": 5803, + "id": 7243, "properties": { "facing": "west", "half": "top", @@ -182205,7 +197442,7 @@ } }, { - "id": 5804, + "id": 7244, "properties": { "facing": "west", "half": "top", @@ -182214,7 +197451,7 @@ } }, { - "id": 5805, + "id": 7245, "properties": { "facing": "west", "half": "top", @@ -182223,7 +197460,7 @@ } }, { - "id": 5806, + "id": 7246, "properties": { "facing": "west", "half": "top", @@ -182232,7 +197469,7 @@ } }, { - "id": 5807, + "id": 7247, "properties": { "facing": "west", "half": "top", @@ -182241,7 +197478,7 @@ } }, { - "id": 5808, + "id": 7248, "properties": { "facing": "west", "half": "top", @@ -182250,7 +197487,7 @@ } }, { - "id": 5809, + "id": 7249, "properties": { "facing": "west", "half": "top", @@ -182259,7 +197496,7 @@ } }, { - "id": 5810, + "id": 7250, "properties": { "facing": "west", "half": "top", @@ -182268,7 +197505,7 @@ } }, { - "id": 5811, + "id": 7251, "properties": { "facing": "west", "half": "bottom", @@ -182277,7 +197514,7 @@ } }, { - "id": 5812, + "id": 7252, "properties": { "facing": "west", "half": "bottom", @@ -182286,7 +197523,7 @@ } }, { - "id": 5813, + "id": 7253, "properties": { "facing": "west", "half": "bottom", @@ -182295,7 +197532,7 @@ } }, { - "id": 5814, + "id": 7254, "properties": { "facing": "west", "half": "bottom", @@ -182304,7 +197541,7 @@ } }, { - "id": 5815, + "id": 7255, "properties": { "facing": "west", "half": "bottom", @@ -182313,7 +197550,7 @@ } }, { - "id": 5816, + "id": 7256, "properties": { "facing": "west", "half": "bottom", @@ -182322,7 +197559,7 @@ } }, { - "id": 5817, + "id": 7257, "properties": { "facing": "west", "half": "bottom", @@ -182331,7 +197568,7 @@ } }, { - "id": 5818, + "id": 7258, "properties": { "facing": "west", "half": "bottom", @@ -182340,7 +197577,7 @@ } }, { - "id": 5819, + "id": 7259, "properties": { "facing": "west", "half": "bottom", @@ -182349,7 +197586,7 @@ } }, { - "id": 5820, + "id": 7260, "properties": { "facing": "west", "half": "bottom", @@ -182358,7 +197595,7 @@ } }, { - "id": 5821, + "id": 7261, "properties": { "facing": "east", "half": "top", @@ -182367,7 +197604,7 @@ } }, { - "id": 5822, + "id": 7262, "properties": { "facing": "east", "half": "top", @@ -182376,7 +197613,7 @@ } }, { - "id": 5823, + "id": 7263, "properties": { "facing": "east", "half": "top", @@ -182385,7 +197622,7 @@ } }, { - "id": 5824, + "id": 7264, "properties": { "facing": "east", "half": "top", @@ -182394,7 +197631,7 @@ } }, { - "id": 5825, + "id": 7265, "properties": { "facing": "east", "half": "top", @@ -182403,7 +197640,7 @@ } }, { - "id": 5826, + "id": 7266, "properties": { "facing": "east", "half": "top", @@ -182412,7 +197649,7 @@ } }, { - "id": 5827, + "id": 7267, "properties": { "facing": "east", "half": "top", @@ -182421,7 +197658,7 @@ } }, { - "id": 5828, + "id": 7268, "properties": { "facing": "east", "half": "top", @@ -182430,7 +197667,7 @@ } }, { - "id": 5829, + "id": 7269, "properties": { "facing": "east", "half": "top", @@ -182439,7 +197676,7 @@ } }, { - "id": 5830, + "id": 7270, "properties": { "facing": "east", "half": "top", @@ -182448,7 +197685,7 @@ } }, { - "id": 5831, + "id": 7271, "properties": { "facing": "east", "half": "bottom", @@ -182457,7 +197694,7 @@ } }, { - "id": 5832, + "id": 7272, "properties": { "facing": "east", "half": "bottom", @@ -182466,7 +197703,7 @@ } }, { - "id": 5833, + "id": 7273, "properties": { "facing": "east", "half": "bottom", @@ -182475,7 +197712,7 @@ } }, { - "id": 5834, + "id": 7274, "properties": { "facing": "east", "half": "bottom", @@ -182484,7 +197721,7 @@ } }, { - "id": 5835, + "id": 7275, "properties": { "facing": "east", "half": "bottom", @@ -182493,7 +197730,7 @@ } }, { - "id": 5836, + "id": 7276, "properties": { "facing": "east", "half": "bottom", @@ -182502,7 +197739,7 @@ } }, { - "id": 5837, + "id": 7277, "properties": { "facing": "east", "half": "bottom", @@ -182511,7 +197748,7 @@ } }, { - "id": 5838, + "id": 7278, "properties": { "facing": "east", "half": "bottom", @@ -182520,7 +197757,7 @@ } }, { - "id": 5839, + "id": 7279, "properties": { "facing": "east", "half": "bottom", @@ -182529,7 +197766,7 @@ } }, { - "id": 5840, + "id": 7280, "properties": { "facing": "east", "half": "bottom", @@ -182572,7 +197809,7 @@ }, "states": [ { - "id": 14988, + "id": 16772, "properties": { "east": "none", "north": "none", @@ -182583,7 +197820,7 @@ } }, { - "id": 14989, + "id": 16773, "properties": { "east": "none", "north": "none", @@ -182594,7 +197831,7 @@ } }, { - "id": 14990, + "id": 16774, "properties": { "east": "none", "north": "none", @@ -182606,7 +197843,7 @@ }, { "default": true, - "id": 14991, + "id": 16775, "properties": { "east": "none", "north": "none", @@ -182617,7 +197854,7 @@ } }, { - "id": 14992, + "id": 16776, "properties": { "east": "none", "north": "none", @@ -182628,7 +197865,7 @@ } }, { - "id": 14993, + "id": 16777, "properties": { "east": "none", "north": "none", @@ -182639,7 +197876,7 @@ } }, { - "id": 14994, + "id": 16778, "properties": { "east": "none", "north": "none", @@ -182650,7 +197887,7 @@ } }, { - "id": 14995, + "id": 16779, "properties": { "east": "none", "north": "none", @@ -182661,7 +197898,7 @@ } }, { - "id": 14996, + "id": 16780, "properties": { "east": "none", "north": "none", @@ -182672,7 +197909,7 @@ } }, { - "id": 14997, + "id": 16781, "properties": { "east": "none", "north": "none", @@ -182683,7 +197920,7 @@ } }, { - "id": 14998, + "id": 16782, "properties": { "east": "none", "north": "none", @@ -182694,7 +197931,7 @@ } }, { - "id": 14999, + "id": 16783, "properties": { "east": "none", "north": "none", @@ -182705,7 +197942,7 @@ } }, { - "id": 15000, + "id": 16784, "properties": { "east": "none", "north": "none", @@ -182716,7 +197953,7 @@ } }, { - "id": 15001, + "id": 16785, "properties": { "east": "none", "north": "none", @@ -182727,7 +197964,7 @@ } }, { - "id": 15002, + "id": 16786, "properties": { "east": "none", "north": "none", @@ -182738,7 +197975,7 @@ } }, { - "id": 15003, + "id": 16787, "properties": { "east": "none", "north": "none", @@ -182749,7 +197986,7 @@ } }, { - "id": 15004, + "id": 16788, "properties": { "east": "none", "north": "none", @@ -182760,7 +197997,7 @@ } }, { - "id": 15005, + "id": 16789, "properties": { "east": "none", "north": "none", @@ -182771,7 +198008,7 @@ } }, { - "id": 15006, + "id": 16790, "properties": { "east": "none", "north": "none", @@ -182782,7 +198019,7 @@ } }, { - "id": 15007, + "id": 16791, "properties": { "east": "none", "north": "none", @@ -182793,7 +198030,7 @@ } }, { - "id": 15008, + "id": 16792, "properties": { "east": "none", "north": "none", @@ -182804,7 +198041,7 @@ } }, { - "id": 15009, + "id": 16793, "properties": { "east": "none", "north": "none", @@ -182815,7 +198052,7 @@ } }, { - "id": 15010, + "id": 16794, "properties": { "east": "none", "north": "none", @@ -182826,7 +198063,7 @@ } }, { - "id": 15011, + "id": 16795, "properties": { "east": "none", "north": "none", @@ -182837,7 +198074,7 @@ } }, { - "id": 15012, + "id": 16796, "properties": { "east": "none", "north": "none", @@ -182848,7 +198085,7 @@ } }, { - "id": 15013, + "id": 16797, "properties": { "east": "none", "north": "none", @@ -182859,7 +198096,7 @@ } }, { - "id": 15014, + "id": 16798, "properties": { "east": "none", "north": "none", @@ -182870,7 +198107,7 @@ } }, { - "id": 15015, + "id": 16799, "properties": { "east": "none", "north": "none", @@ -182881,7 +198118,7 @@ } }, { - "id": 15016, + "id": 16800, "properties": { "east": "none", "north": "none", @@ -182892,7 +198129,7 @@ } }, { - "id": 15017, + "id": 16801, "properties": { "east": "none", "north": "none", @@ -182903,7 +198140,7 @@ } }, { - "id": 15018, + "id": 16802, "properties": { "east": "none", "north": "none", @@ -182914,7 +198151,7 @@ } }, { - "id": 15019, + "id": 16803, "properties": { "east": "none", "north": "none", @@ -182925,7 +198162,7 @@ } }, { - "id": 15020, + "id": 16804, "properties": { "east": "none", "north": "none", @@ -182936,7 +198173,7 @@ } }, { - "id": 15021, + "id": 16805, "properties": { "east": "none", "north": "none", @@ -182947,7 +198184,7 @@ } }, { - "id": 15022, + "id": 16806, "properties": { "east": "none", "north": "none", @@ -182958,7 +198195,7 @@ } }, { - "id": 15023, + "id": 16807, "properties": { "east": "none", "north": "none", @@ -182969,7 +198206,7 @@ } }, { - "id": 15024, + "id": 16808, "properties": { "east": "none", "north": "low", @@ -182980,7 +198217,7 @@ } }, { - "id": 15025, + "id": 16809, "properties": { "east": "none", "north": "low", @@ -182991,7 +198228,7 @@ } }, { - "id": 15026, + "id": 16810, "properties": { "east": "none", "north": "low", @@ -183002,7 +198239,7 @@ } }, { - "id": 15027, + "id": 16811, "properties": { "east": "none", "north": "low", @@ -183013,7 +198250,7 @@ } }, { - "id": 15028, + "id": 16812, "properties": { "east": "none", "north": "low", @@ -183024,7 +198261,7 @@ } }, { - "id": 15029, + "id": 16813, "properties": { "east": "none", "north": "low", @@ -183035,7 +198272,7 @@ } }, { - "id": 15030, + "id": 16814, "properties": { "east": "none", "north": "low", @@ -183046,7 +198283,7 @@ } }, { - "id": 15031, + "id": 16815, "properties": { "east": "none", "north": "low", @@ -183057,7 +198294,7 @@ } }, { - "id": 15032, + "id": 16816, "properties": { "east": "none", "north": "low", @@ -183068,7 +198305,7 @@ } }, { - "id": 15033, + "id": 16817, "properties": { "east": "none", "north": "low", @@ -183079,7 +198316,7 @@ } }, { - "id": 15034, + "id": 16818, "properties": { "east": "none", "north": "low", @@ -183090,7 +198327,7 @@ } }, { - "id": 15035, + "id": 16819, "properties": { "east": "none", "north": "low", @@ -183101,7 +198338,7 @@ } }, { - "id": 15036, + "id": 16820, "properties": { "east": "none", "north": "low", @@ -183112,7 +198349,7 @@ } }, { - "id": 15037, + "id": 16821, "properties": { "east": "none", "north": "low", @@ -183123,7 +198360,7 @@ } }, { - "id": 15038, + "id": 16822, "properties": { "east": "none", "north": "low", @@ -183134,7 +198371,7 @@ } }, { - "id": 15039, + "id": 16823, "properties": { "east": "none", "north": "low", @@ -183145,7 +198382,7 @@ } }, { - "id": 15040, + "id": 16824, "properties": { "east": "none", "north": "low", @@ -183156,7 +198393,7 @@ } }, { - "id": 15041, + "id": 16825, "properties": { "east": "none", "north": "low", @@ -183167,7 +198404,7 @@ } }, { - "id": 15042, + "id": 16826, "properties": { "east": "none", "north": "low", @@ -183178,7 +198415,7 @@ } }, { - "id": 15043, + "id": 16827, "properties": { "east": "none", "north": "low", @@ -183189,7 +198426,7 @@ } }, { - "id": 15044, + "id": 16828, "properties": { "east": "none", "north": "low", @@ -183200,7 +198437,7 @@ } }, { - "id": 15045, + "id": 16829, "properties": { "east": "none", "north": "low", @@ -183211,7 +198448,7 @@ } }, { - "id": 15046, + "id": 16830, "properties": { "east": "none", "north": "low", @@ -183222,7 +198459,7 @@ } }, { - "id": 15047, + "id": 16831, "properties": { "east": "none", "north": "low", @@ -183233,7 +198470,7 @@ } }, { - "id": 15048, + "id": 16832, "properties": { "east": "none", "north": "low", @@ -183244,7 +198481,7 @@ } }, { - "id": 15049, + "id": 16833, "properties": { "east": "none", "north": "low", @@ -183255,7 +198492,7 @@ } }, { - "id": 15050, + "id": 16834, "properties": { "east": "none", "north": "low", @@ -183266,7 +198503,7 @@ } }, { - "id": 15051, + "id": 16835, "properties": { "east": "none", "north": "low", @@ -183277,7 +198514,7 @@ } }, { - "id": 15052, + "id": 16836, "properties": { "east": "none", "north": "low", @@ -183288,7 +198525,7 @@ } }, { - "id": 15053, + "id": 16837, "properties": { "east": "none", "north": "low", @@ -183299,7 +198536,7 @@ } }, { - "id": 15054, + "id": 16838, "properties": { "east": "none", "north": "low", @@ -183310,7 +198547,7 @@ } }, { - "id": 15055, + "id": 16839, "properties": { "east": "none", "north": "low", @@ -183321,7 +198558,7 @@ } }, { - "id": 15056, + "id": 16840, "properties": { "east": "none", "north": "low", @@ -183332,7 +198569,7 @@ } }, { - "id": 15057, + "id": 16841, "properties": { "east": "none", "north": "low", @@ -183343,7 +198580,7 @@ } }, { - "id": 15058, + "id": 16842, "properties": { "east": "none", "north": "low", @@ -183354,7 +198591,7 @@ } }, { - "id": 15059, + "id": 16843, "properties": { "east": "none", "north": "low", @@ -183365,7 +198602,7 @@ } }, { - "id": 15060, + "id": 16844, "properties": { "east": "none", "north": "tall", @@ -183376,7 +198613,7 @@ } }, { - "id": 15061, + "id": 16845, "properties": { "east": "none", "north": "tall", @@ -183387,7 +198624,7 @@ } }, { - "id": 15062, + "id": 16846, "properties": { "east": "none", "north": "tall", @@ -183398,7 +198635,7 @@ } }, { - "id": 15063, + "id": 16847, "properties": { "east": "none", "north": "tall", @@ -183409,7 +198646,7 @@ } }, { - "id": 15064, + "id": 16848, "properties": { "east": "none", "north": "tall", @@ -183420,7 +198657,7 @@ } }, { - "id": 15065, + "id": 16849, "properties": { "east": "none", "north": "tall", @@ -183431,7 +198668,7 @@ } }, { - "id": 15066, + "id": 16850, "properties": { "east": "none", "north": "tall", @@ -183442,7 +198679,7 @@ } }, { - "id": 15067, + "id": 16851, "properties": { "east": "none", "north": "tall", @@ -183453,7 +198690,7 @@ } }, { - "id": 15068, + "id": 16852, "properties": { "east": "none", "north": "tall", @@ -183464,7 +198701,7 @@ } }, { - "id": 15069, + "id": 16853, "properties": { "east": "none", "north": "tall", @@ -183475,7 +198712,7 @@ } }, { - "id": 15070, + "id": 16854, "properties": { "east": "none", "north": "tall", @@ -183486,7 +198723,7 @@ } }, { - "id": 15071, + "id": 16855, "properties": { "east": "none", "north": "tall", @@ -183497,7 +198734,7 @@ } }, { - "id": 15072, + "id": 16856, "properties": { "east": "none", "north": "tall", @@ -183508,7 +198745,7 @@ } }, { - "id": 15073, + "id": 16857, "properties": { "east": "none", "north": "tall", @@ -183519,7 +198756,7 @@ } }, { - "id": 15074, + "id": 16858, "properties": { "east": "none", "north": "tall", @@ -183530,7 +198767,7 @@ } }, { - "id": 15075, + "id": 16859, "properties": { "east": "none", "north": "tall", @@ -183541,7 +198778,7 @@ } }, { - "id": 15076, + "id": 16860, "properties": { "east": "none", "north": "tall", @@ -183552,7 +198789,7 @@ } }, { - "id": 15077, + "id": 16861, "properties": { "east": "none", "north": "tall", @@ -183563,7 +198800,7 @@ } }, { - "id": 15078, + "id": 16862, "properties": { "east": "none", "north": "tall", @@ -183574,7 +198811,7 @@ } }, { - "id": 15079, + "id": 16863, "properties": { "east": "none", "north": "tall", @@ -183585,7 +198822,7 @@ } }, { - "id": 15080, + "id": 16864, "properties": { "east": "none", "north": "tall", @@ -183596,7 +198833,7 @@ } }, { - "id": 15081, + "id": 16865, "properties": { "east": "none", "north": "tall", @@ -183607,7 +198844,7 @@ } }, { - "id": 15082, + "id": 16866, "properties": { "east": "none", "north": "tall", @@ -183618,7 +198855,7 @@ } }, { - "id": 15083, + "id": 16867, "properties": { "east": "none", "north": "tall", @@ -183629,7 +198866,7 @@ } }, { - "id": 15084, + "id": 16868, "properties": { "east": "none", "north": "tall", @@ -183640,7 +198877,7 @@ } }, { - "id": 15085, + "id": 16869, "properties": { "east": "none", "north": "tall", @@ -183651,7 +198888,7 @@ } }, { - "id": 15086, + "id": 16870, "properties": { "east": "none", "north": "tall", @@ -183662,7 +198899,7 @@ } }, { - "id": 15087, + "id": 16871, "properties": { "east": "none", "north": "tall", @@ -183673,7 +198910,7 @@ } }, { - "id": 15088, + "id": 16872, "properties": { "east": "none", "north": "tall", @@ -183684,7 +198921,7 @@ } }, { - "id": 15089, + "id": 16873, "properties": { "east": "none", "north": "tall", @@ -183695,7 +198932,7 @@ } }, { - "id": 15090, + "id": 16874, "properties": { "east": "none", "north": "tall", @@ -183706,7 +198943,7 @@ } }, { - "id": 15091, + "id": 16875, "properties": { "east": "none", "north": "tall", @@ -183717,7 +198954,7 @@ } }, { - "id": 15092, + "id": 16876, "properties": { "east": "none", "north": "tall", @@ -183728,7 +198965,7 @@ } }, { - "id": 15093, + "id": 16877, "properties": { "east": "none", "north": "tall", @@ -183739,7 +198976,7 @@ } }, { - "id": 15094, + "id": 16878, "properties": { "east": "none", "north": "tall", @@ -183750,7 +198987,7 @@ } }, { - "id": 15095, + "id": 16879, "properties": { "east": "none", "north": "tall", @@ -183761,7 +198998,7 @@ } }, { - "id": 15096, + "id": 16880, "properties": { "east": "low", "north": "none", @@ -183772,7 +199009,7 @@ } }, { - "id": 15097, + "id": 16881, "properties": { "east": "low", "north": "none", @@ -183783,7 +199020,7 @@ } }, { - "id": 15098, + "id": 16882, "properties": { "east": "low", "north": "none", @@ -183794,7 +199031,7 @@ } }, { - "id": 15099, + "id": 16883, "properties": { "east": "low", "north": "none", @@ -183805,7 +199042,7 @@ } }, { - "id": 15100, + "id": 16884, "properties": { "east": "low", "north": "none", @@ -183816,7 +199053,7 @@ } }, { - "id": 15101, + "id": 16885, "properties": { "east": "low", "north": "none", @@ -183827,7 +199064,7 @@ } }, { - "id": 15102, + "id": 16886, "properties": { "east": "low", "north": "none", @@ -183838,7 +199075,7 @@ } }, { - "id": 15103, + "id": 16887, "properties": { "east": "low", "north": "none", @@ -183849,7 +199086,7 @@ } }, { - "id": 15104, + "id": 16888, "properties": { "east": "low", "north": "none", @@ -183860,7 +199097,7 @@ } }, { - "id": 15105, + "id": 16889, "properties": { "east": "low", "north": "none", @@ -183871,7 +199108,7 @@ } }, { - "id": 15106, + "id": 16890, "properties": { "east": "low", "north": "none", @@ -183882,7 +199119,7 @@ } }, { - "id": 15107, + "id": 16891, "properties": { "east": "low", "north": "none", @@ -183893,7 +199130,7 @@ } }, { - "id": 15108, + "id": 16892, "properties": { "east": "low", "north": "none", @@ -183904,7 +199141,7 @@ } }, { - "id": 15109, + "id": 16893, "properties": { "east": "low", "north": "none", @@ -183915,7 +199152,7 @@ } }, { - "id": 15110, + "id": 16894, "properties": { "east": "low", "north": "none", @@ -183926,7 +199163,7 @@ } }, { - "id": 15111, + "id": 16895, "properties": { "east": "low", "north": "none", @@ -183937,7 +199174,7 @@ } }, { - "id": 15112, + "id": 16896, "properties": { "east": "low", "north": "none", @@ -183948,7 +199185,7 @@ } }, { - "id": 15113, + "id": 16897, "properties": { "east": "low", "north": "none", @@ -183959,7 +199196,7 @@ } }, { - "id": 15114, + "id": 16898, "properties": { "east": "low", "north": "none", @@ -183970,7 +199207,7 @@ } }, { - "id": 15115, + "id": 16899, "properties": { "east": "low", "north": "none", @@ -183981,7 +199218,7 @@ } }, { - "id": 15116, + "id": 16900, "properties": { "east": "low", "north": "none", @@ -183992,7 +199229,7 @@ } }, { - "id": 15117, + "id": 16901, "properties": { "east": "low", "north": "none", @@ -184003,7 +199240,7 @@ } }, { - "id": 15118, + "id": 16902, "properties": { "east": "low", "north": "none", @@ -184014,7 +199251,7 @@ } }, { - "id": 15119, + "id": 16903, "properties": { "east": "low", "north": "none", @@ -184025,7 +199262,7 @@ } }, { - "id": 15120, + "id": 16904, "properties": { "east": "low", "north": "none", @@ -184036,7 +199273,7 @@ } }, { - "id": 15121, + "id": 16905, "properties": { "east": "low", "north": "none", @@ -184047,7 +199284,7 @@ } }, { - "id": 15122, + "id": 16906, "properties": { "east": "low", "north": "none", @@ -184058,7 +199295,7 @@ } }, { - "id": 15123, + "id": 16907, "properties": { "east": "low", "north": "none", @@ -184069,7 +199306,7 @@ } }, { - "id": 15124, + "id": 16908, "properties": { "east": "low", "north": "none", @@ -184080,7 +199317,7 @@ } }, { - "id": 15125, + "id": 16909, "properties": { "east": "low", "north": "none", @@ -184091,7 +199328,7 @@ } }, { - "id": 15126, + "id": 16910, "properties": { "east": "low", "north": "none", @@ -184102,7 +199339,7 @@ } }, { - "id": 15127, + "id": 16911, "properties": { "east": "low", "north": "none", @@ -184113,7 +199350,7 @@ } }, { - "id": 15128, + "id": 16912, "properties": { "east": "low", "north": "none", @@ -184124,7 +199361,7 @@ } }, { - "id": 15129, + "id": 16913, "properties": { "east": "low", "north": "none", @@ -184135,7 +199372,7 @@ } }, { - "id": 15130, + "id": 16914, "properties": { "east": "low", "north": "none", @@ -184146,7 +199383,7 @@ } }, { - "id": 15131, + "id": 16915, "properties": { "east": "low", "north": "none", @@ -184157,7 +199394,7 @@ } }, { - "id": 15132, + "id": 16916, "properties": { "east": "low", "north": "low", @@ -184168,7 +199405,7 @@ } }, { - "id": 15133, + "id": 16917, "properties": { "east": "low", "north": "low", @@ -184179,7 +199416,7 @@ } }, { - "id": 15134, + "id": 16918, "properties": { "east": "low", "north": "low", @@ -184190,7 +199427,7 @@ } }, { - "id": 15135, + "id": 16919, "properties": { "east": "low", "north": "low", @@ -184201,7 +199438,7 @@ } }, { - "id": 15136, + "id": 16920, "properties": { "east": "low", "north": "low", @@ -184212,7 +199449,7 @@ } }, { - "id": 15137, + "id": 16921, "properties": { "east": "low", "north": "low", @@ -184223,7 +199460,7 @@ } }, { - "id": 15138, + "id": 16922, "properties": { "east": "low", "north": "low", @@ -184234,7 +199471,7 @@ } }, { - "id": 15139, + "id": 16923, "properties": { "east": "low", "north": "low", @@ -184245,7 +199482,7 @@ } }, { - "id": 15140, + "id": 16924, "properties": { "east": "low", "north": "low", @@ -184256,7 +199493,7 @@ } }, { - "id": 15141, + "id": 16925, "properties": { "east": "low", "north": "low", @@ -184267,7 +199504,7 @@ } }, { - "id": 15142, + "id": 16926, "properties": { "east": "low", "north": "low", @@ -184278,7 +199515,7 @@ } }, { - "id": 15143, + "id": 16927, "properties": { "east": "low", "north": "low", @@ -184289,7 +199526,7 @@ } }, { - "id": 15144, + "id": 16928, "properties": { "east": "low", "north": "low", @@ -184300,7 +199537,7 @@ } }, { - "id": 15145, + "id": 16929, "properties": { "east": "low", "north": "low", @@ -184311,7 +199548,7 @@ } }, { - "id": 15146, + "id": 16930, "properties": { "east": "low", "north": "low", @@ -184322,7 +199559,7 @@ } }, { - "id": 15147, + "id": 16931, "properties": { "east": "low", "north": "low", @@ -184333,7 +199570,7 @@ } }, { - "id": 15148, + "id": 16932, "properties": { "east": "low", "north": "low", @@ -184344,7 +199581,7 @@ } }, { - "id": 15149, + "id": 16933, "properties": { "east": "low", "north": "low", @@ -184355,7 +199592,7 @@ } }, { - "id": 15150, + "id": 16934, "properties": { "east": "low", "north": "low", @@ -184366,7 +199603,7 @@ } }, { - "id": 15151, + "id": 16935, "properties": { "east": "low", "north": "low", @@ -184377,7 +199614,7 @@ } }, { - "id": 15152, + "id": 16936, "properties": { "east": "low", "north": "low", @@ -184388,7 +199625,7 @@ } }, { - "id": 15153, + "id": 16937, "properties": { "east": "low", "north": "low", @@ -184399,7 +199636,7 @@ } }, { - "id": 15154, + "id": 16938, "properties": { "east": "low", "north": "low", @@ -184410,7 +199647,7 @@ } }, { - "id": 15155, + "id": 16939, "properties": { "east": "low", "north": "low", @@ -184421,7 +199658,7 @@ } }, { - "id": 15156, + "id": 16940, "properties": { "east": "low", "north": "low", @@ -184432,7 +199669,7 @@ } }, { - "id": 15157, + "id": 16941, "properties": { "east": "low", "north": "low", @@ -184443,7 +199680,7 @@ } }, { - "id": 15158, + "id": 16942, "properties": { "east": "low", "north": "low", @@ -184454,7 +199691,7 @@ } }, { - "id": 15159, + "id": 16943, "properties": { "east": "low", "north": "low", @@ -184465,7 +199702,7 @@ } }, { - "id": 15160, + "id": 16944, "properties": { "east": "low", "north": "low", @@ -184476,7 +199713,7 @@ } }, { - "id": 15161, + "id": 16945, "properties": { "east": "low", "north": "low", @@ -184487,7 +199724,7 @@ } }, { - "id": 15162, + "id": 16946, "properties": { "east": "low", "north": "low", @@ -184498,7 +199735,7 @@ } }, { - "id": 15163, + "id": 16947, "properties": { "east": "low", "north": "low", @@ -184509,7 +199746,7 @@ } }, { - "id": 15164, + "id": 16948, "properties": { "east": "low", "north": "low", @@ -184520,7 +199757,7 @@ } }, { - "id": 15165, + "id": 16949, "properties": { "east": "low", "north": "low", @@ -184531,7 +199768,7 @@ } }, { - "id": 15166, + "id": 16950, "properties": { "east": "low", "north": "low", @@ -184542,7 +199779,7 @@ } }, { - "id": 15167, + "id": 16951, "properties": { "east": "low", "north": "low", @@ -184553,7 +199790,7 @@ } }, { - "id": 15168, + "id": 16952, "properties": { "east": "low", "north": "tall", @@ -184564,7 +199801,7 @@ } }, { - "id": 15169, + "id": 16953, "properties": { "east": "low", "north": "tall", @@ -184575,7 +199812,7 @@ } }, { - "id": 15170, + "id": 16954, "properties": { "east": "low", "north": "tall", @@ -184586,7 +199823,7 @@ } }, { - "id": 15171, + "id": 16955, "properties": { "east": "low", "north": "tall", @@ -184597,7 +199834,7 @@ } }, { - "id": 15172, + "id": 16956, "properties": { "east": "low", "north": "tall", @@ -184608,7 +199845,7 @@ } }, { - "id": 15173, + "id": 16957, "properties": { "east": "low", "north": "tall", @@ -184619,7 +199856,7 @@ } }, { - "id": 15174, + "id": 16958, "properties": { "east": "low", "north": "tall", @@ -184630,7 +199867,7 @@ } }, { - "id": 15175, + "id": 16959, "properties": { "east": "low", "north": "tall", @@ -184641,7 +199878,7 @@ } }, { - "id": 15176, + "id": 16960, "properties": { "east": "low", "north": "tall", @@ -184652,7 +199889,7 @@ } }, { - "id": 15177, + "id": 16961, "properties": { "east": "low", "north": "tall", @@ -184663,7 +199900,7 @@ } }, { - "id": 15178, + "id": 16962, "properties": { "east": "low", "north": "tall", @@ -184674,7 +199911,7 @@ } }, { - "id": 15179, + "id": 16963, "properties": { "east": "low", "north": "tall", @@ -184685,7 +199922,7 @@ } }, { - "id": 15180, + "id": 16964, "properties": { "east": "low", "north": "tall", @@ -184696,7 +199933,7 @@ } }, { - "id": 15181, + "id": 16965, "properties": { "east": "low", "north": "tall", @@ -184707,7 +199944,7 @@ } }, { - "id": 15182, + "id": 16966, "properties": { "east": "low", "north": "tall", @@ -184718,7 +199955,7 @@ } }, { - "id": 15183, + "id": 16967, "properties": { "east": "low", "north": "tall", @@ -184729,7 +199966,7 @@ } }, { - "id": 15184, + "id": 16968, "properties": { "east": "low", "north": "tall", @@ -184740,7 +199977,7 @@ } }, { - "id": 15185, + "id": 16969, "properties": { "east": "low", "north": "tall", @@ -184751,7 +199988,7 @@ } }, { - "id": 15186, + "id": 16970, "properties": { "east": "low", "north": "tall", @@ -184762,7 +199999,7 @@ } }, { - "id": 15187, + "id": 16971, "properties": { "east": "low", "north": "tall", @@ -184773,7 +200010,7 @@ } }, { - "id": 15188, + "id": 16972, "properties": { "east": "low", "north": "tall", @@ -184784,7 +200021,7 @@ } }, { - "id": 15189, + "id": 16973, "properties": { "east": "low", "north": "tall", @@ -184795,7 +200032,7 @@ } }, { - "id": 15190, + "id": 16974, "properties": { "east": "low", "north": "tall", @@ -184806,7 +200043,7 @@ } }, { - "id": 15191, + "id": 16975, "properties": { "east": "low", "north": "tall", @@ -184817,7 +200054,7 @@ } }, { - "id": 15192, + "id": 16976, "properties": { "east": "low", "north": "tall", @@ -184828,7 +200065,7 @@ } }, { - "id": 15193, + "id": 16977, "properties": { "east": "low", "north": "tall", @@ -184839,7 +200076,7 @@ } }, { - "id": 15194, + "id": 16978, "properties": { "east": "low", "north": "tall", @@ -184850,7 +200087,7 @@ } }, { - "id": 15195, + "id": 16979, "properties": { "east": "low", "north": "tall", @@ -184861,7 +200098,7 @@ } }, { - "id": 15196, + "id": 16980, "properties": { "east": "low", "north": "tall", @@ -184872,7 +200109,7 @@ } }, { - "id": 15197, + "id": 16981, "properties": { "east": "low", "north": "tall", @@ -184883,7 +200120,7 @@ } }, { - "id": 15198, + "id": 16982, "properties": { "east": "low", "north": "tall", @@ -184894,7 +200131,7 @@ } }, { - "id": 15199, + "id": 16983, "properties": { "east": "low", "north": "tall", @@ -184905,7 +200142,7 @@ } }, { - "id": 15200, + "id": 16984, "properties": { "east": "low", "north": "tall", @@ -184916,7 +200153,7 @@ } }, { - "id": 15201, + "id": 16985, "properties": { "east": "low", "north": "tall", @@ -184927,7 +200164,7 @@ } }, { - "id": 15202, + "id": 16986, "properties": { "east": "low", "north": "tall", @@ -184938,7 +200175,7 @@ } }, { - "id": 15203, + "id": 16987, "properties": { "east": "low", "north": "tall", @@ -184949,7 +200186,7 @@ } }, { - "id": 15204, + "id": 16988, "properties": { "east": "tall", "north": "none", @@ -184960,7 +200197,7 @@ } }, { - "id": 15205, + "id": 16989, "properties": { "east": "tall", "north": "none", @@ -184971,7 +200208,7 @@ } }, { - "id": 15206, + "id": 16990, "properties": { "east": "tall", "north": "none", @@ -184982,7 +200219,7 @@ } }, { - "id": 15207, + "id": 16991, "properties": { "east": "tall", "north": "none", @@ -184993,7 +200230,7 @@ } }, { - "id": 15208, + "id": 16992, "properties": { "east": "tall", "north": "none", @@ -185004,7 +200241,7 @@ } }, { - "id": 15209, + "id": 16993, "properties": { "east": "tall", "north": "none", @@ -185015,7 +200252,7 @@ } }, { - "id": 15210, + "id": 16994, "properties": { "east": "tall", "north": "none", @@ -185026,7 +200263,7 @@ } }, { - "id": 15211, + "id": 16995, "properties": { "east": "tall", "north": "none", @@ -185037,7 +200274,7 @@ } }, { - "id": 15212, + "id": 16996, "properties": { "east": "tall", "north": "none", @@ -185048,7 +200285,7 @@ } }, { - "id": 15213, + "id": 16997, "properties": { "east": "tall", "north": "none", @@ -185059,7 +200296,7 @@ } }, { - "id": 15214, + "id": 16998, "properties": { "east": "tall", "north": "none", @@ -185070,7 +200307,7 @@ } }, { - "id": 15215, + "id": 16999, "properties": { "east": "tall", "north": "none", @@ -185081,7 +200318,7 @@ } }, { - "id": 15216, + "id": 17000, "properties": { "east": "tall", "north": "none", @@ -185092,7 +200329,7 @@ } }, { - "id": 15217, + "id": 17001, "properties": { "east": "tall", "north": "none", @@ -185103,7 +200340,7 @@ } }, { - "id": 15218, + "id": 17002, "properties": { "east": "tall", "north": "none", @@ -185114,7 +200351,7 @@ } }, { - "id": 15219, + "id": 17003, "properties": { "east": "tall", "north": "none", @@ -185125,7 +200362,7 @@ } }, { - "id": 15220, + "id": 17004, "properties": { "east": "tall", "north": "none", @@ -185136,7 +200373,7 @@ } }, { - "id": 15221, + "id": 17005, "properties": { "east": "tall", "north": "none", @@ -185147,7 +200384,7 @@ } }, { - "id": 15222, + "id": 17006, "properties": { "east": "tall", "north": "none", @@ -185158,7 +200395,7 @@ } }, { - "id": 15223, + "id": 17007, "properties": { "east": "tall", "north": "none", @@ -185169,7 +200406,7 @@ } }, { - "id": 15224, + "id": 17008, "properties": { "east": "tall", "north": "none", @@ -185180,7 +200417,7 @@ } }, { - "id": 15225, + "id": 17009, "properties": { "east": "tall", "north": "none", @@ -185191,7 +200428,7 @@ } }, { - "id": 15226, + "id": 17010, "properties": { "east": "tall", "north": "none", @@ -185202,7 +200439,7 @@ } }, { - "id": 15227, + "id": 17011, "properties": { "east": "tall", "north": "none", @@ -185213,7 +200450,7 @@ } }, { - "id": 15228, + "id": 17012, "properties": { "east": "tall", "north": "none", @@ -185224,7 +200461,7 @@ } }, { - "id": 15229, + "id": 17013, "properties": { "east": "tall", "north": "none", @@ -185235,7 +200472,7 @@ } }, { - "id": 15230, + "id": 17014, "properties": { "east": "tall", "north": "none", @@ -185246,7 +200483,7 @@ } }, { - "id": 15231, + "id": 17015, "properties": { "east": "tall", "north": "none", @@ -185257,7 +200494,7 @@ } }, { - "id": 15232, + "id": 17016, "properties": { "east": "tall", "north": "none", @@ -185268,7 +200505,7 @@ } }, { - "id": 15233, + "id": 17017, "properties": { "east": "tall", "north": "none", @@ -185279,7 +200516,7 @@ } }, { - "id": 15234, + "id": 17018, "properties": { "east": "tall", "north": "none", @@ -185290,7 +200527,7 @@ } }, { - "id": 15235, + "id": 17019, "properties": { "east": "tall", "north": "none", @@ -185301,7 +200538,7 @@ } }, { - "id": 15236, + "id": 17020, "properties": { "east": "tall", "north": "none", @@ -185312,7 +200549,7 @@ } }, { - "id": 15237, + "id": 17021, "properties": { "east": "tall", "north": "none", @@ -185323,7 +200560,7 @@ } }, { - "id": 15238, + "id": 17022, "properties": { "east": "tall", "north": "none", @@ -185334,7 +200571,7 @@ } }, { - "id": 15239, + "id": 17023, "properties": { "east": "tall", "north": "none", @@ -185345,7 +200582,7 @@ } }, { - "id": 15240, + "id": 17024, "properties": { "east": "tall", "north": "low", @@ -185356,7 +200593,7 @@ } }, { - "id": 15241, + "id": 17025, "properties": { "east": "tall", "north": "low", @@ -185367,7 +200604,7 @@ } }, { - "id": 15242, + "id": 17026, "properties": { "east": "tall", "north": "low", @@ -185378,7 +200615,7 @@ } }, { - "id": 15243, + "id": 17027, "properties": { "east": "tall", "north": "low", @@ -185389,7 +200626,7 @@ } }, { - "id": 15244, + "id": 17028, "properties": { "east": "tall", "north": "low", @@ -185400,7 +200637,7 @@ } }, { - "id": 15245, + "id": 17029, "properties": { "east": "tall", "north": "low", @@ -185411,7 +200648,7 @@ } }, { - "id": 15246, + "id": 17030, "properties": { "east": "tall", "north": "low", @@ -185422,7 +200659,7 @@ } }, { - "id": 15247, + "id": 17031, "properties": { "east": "tall", "north": "low", @@ -185433,7 +200670,7 @@ } }, { - "id": 15248, + "id": 17032, "properties": { "east": "tall", "north": "low", @@ -185444,7 +200681,7 @@ } }, { - "id": 15249, + "id": 17033, "properties": { "east": "tall", "north": "low", @@ -185455,7 +200692,7 @@ } }, { - "id": 15250, + "id": 17034, "properties": { "east": "tall", "north": "low", @@ -185466,7 +200703,7 @@ } }, { - "id": 15251, + "id": 17035, "properties": { "east": "tall", "north": "low", @@ -185477,7 +200714,7 @@ } }, { - "id": 15252, + "id": 17036, "properties": { "east": "tall", "north": "low", @@ -185488,7 +200725,7 @@ } }, { - "id": 15253, + "id": 17037, "properties": { "east": "tall", "north": "low", @@ -185499,7 +200736,7 @@ } }, { - "id": 15254, + "id": 17038, "properties": { "east": "tall", "north": "low", @@ -185510,7 +200747,7 @@ } }, { - "id": 15255, + "id": 17039, "properties": { "east": "tall", "north": "low", @@ -185521,7 +200758,7 @@ } }, { - "id": 15256, + "id": 17040, "properties": { "east": "tall", "north": "low", @@ -185532,7 +200769,7 @@ } }, { - "id": 15257, + "id": 17041, "properties": { "east": "tall", "north": "low", @@ -185543,7 +200780,7 @@ } }, { - "id": 15258, + "id": 17042, "properties": { "east": "tall", "north": "low", @@ -185554,7 +200791,7 @@ } }, { - "id": 15259, + "id": 17043, "properties": { "east": "tall", "north": "low", @@ -185565,7 +200802,7 @@ } }, { - "id": 15260, + "id": 17044, "properties": { "east": "tall", "north": "low", @@ -185576,7 +200813,7 @@ } }, { - "id": 15261, + "id": 17045, "properties": { "east": "tall", "north": "low", @@ -185587,7 +200824,7 @@ } }, { - "id": 15262, + "id": 17046, "properties": { "east": "tall", "north": "low", @@ -185598,7 +200835,7 @@ } }, { - "id": 15263, + "id": 17047, "properties": { "east": "tall", "north": "low", @@ -185609,7 +200846,7 @@ } }, { - "id": 15264, + "id": 17048, "properties": { "east": "tall", "north": "low", @@ -185620,7 +200857,7 @@ } }, { - "id": 15265, + "id": 17049, "properties": { "east": "tall", "north": "low", @@ -185631,7 +200868,7 @@ } }, { - "id": 15266, + "id": 17050, "properties": { "east": "tall", "north": "low", @@ -185642,7 +200879,7 @@ } }, { - "id": 15267, + "id": 17051, "properties": { "east": "tall", "north": "low", @@ -185653,7 +200890,7 @@ } }, { - "id": 15268, + "id": 17052, "properties": { "east": "tall", "north": "low", @@ -185664,7 +200901,7 @@ } }, { - "id": 15269, + "id": 17053, "properties": { "east": "tall", "north": "low", @@ -185675,7 +200912,7 @@ } }, { - "id": 15270, + "id": 17054, "properties": { "east": "tall", "north": "low", @@ -185686,7 +200923,7 @@ } }, { - "id": 15271, + "id": 17055, "properties": { "east": "tall", "north": "low", @@ -185697,7 +200934,7 @@ } }, { - "id": 15272, + "id": 17056, "properties": { "east": "tall", "north": "low", @@ -185708,7 +200945,7 @@ } }, { - "id": 15273, + "id": 17057, "properties": { "east": "tall", "north": "low", @@ -185719,7 +200956,7 @@ } }, { - "id": 15274, + "id": 17058, "properties": { "east": "tall", "north": "low", @@ -185730,7 +200967,7 @@ } }, { - "id": 15275, + "id": 17059, "properties": { "east": "tall", "north": "low", @@ -185741,7 +200978,7 @@ } }, { - "id": 15276, + "id": 17060, "properties": { "east": "tall", "north": "tall", @@ -185752,7 +200989,7 @@ } }, { - "id": 15277, + "id": 17061, "properties": { "east": "tall", "north": "tall", @@ -185763,7 +201000,7 @@ } }, { - "id": 15278, + "id": 17062, "properties": { "east": "tall", "north": "tall", @@ -185774,7 +201011,7 @@ } }, { - "id": 15279, + "id": 17063, "properties": { "east": "tall", "north": "tall", @@ -185785,7 +201022,7 @@ } }, { - "id": 15280, + "id": 17064, "properties": { "east": "tall", "north": "tall", @@ -185796,7 +201033,7 @@ } }, { - "id": 15281, + "id": 17065, "properties": { "east": "tall", "north": "tall", @@ -185807,7 +201044,7 @@ } }, { - "id": 15282, + "id": 17066, "properties": { "east": "tall", "north": "tall", @@ -185818,7 +201055,7 @@ } }, { - "id": 15283, + "id": 17067, "properties": { "east": "tall", "north": "tall", @@ -185829,7 +201066,7 @@ } }, { - "id": 15284, + "id": 17068, "properties": { "east": "tall", "north": "tall", @@ -185840,7 +201077,7 @@ } }, { - "id": 15285, + "id": 17069, "properties": { "east": "tall", "north": "tall", @@ -185851,7 +201088,7 @@ } }, { - "id": 15286, + "id": 17070, "properties": { "east": "tall", "north": "tall", @@ -185862,7 +201099,7 @@ } }, { - "id": 15287, + "id": 17071, "properties": { "east": "tall", "north": "tall", @@ -185873,7 +201110,7 @@ } }, { - "id": 15288, + "id": 17072, "properties": { "east": "tall", "north": "tall", @@ -185884,7 +201121,7 @@ } }, { - "id": 15289, + "id": 17073, "properties": { "east": "tall", "north": "tall", @@ -185895,7 +201132,7 @@ } }, { - "id": 15290, + "id": 17074, "properties": { "east": "tall", "north": "tall", @@ -185906,7 +201143,7 @@ } }, { - "id": 15291, + "id": 17075, "properties": { "east": "tall", "north": "tall", @@ -185917,7 +201154,7 @@ } }, { - "id": 15292, + "id": 17076, "properties": { "east": "tall", "north": "tall", @@ -185928,7 +201165,7 @@ } }, { - "id": 15293, + "id": 17077, "properties": { "east": "tall", "north": "tall", @@ -185939,7 +201176,7 @@ } }, { - "id": 15294, + "id": 17078, "properties": { "east": "tall", "north": "tall", @@ -185950,7 +201187,7 @@ } }, { - "id": 15295, + "id": 17079, "properties": { "east": "tall", "north": "tall", @@ -185961,7 +201198,7 @@ } }, { - "id": 15296, + "id": 17080, "properties": { "east": "tall", "north": "tall", @@ -185972,7 +201209,7 @@ } }, { - "id": 15297, + "id": 17081, "properties": { "east": "tall", "north": "tall", @@ -185983,7 +201220,7 @@ } }, { - "id": 15298, + "id": 17082, "properties": { "east": "tall", "north": "tall", @@ -185994,7 +201231,7 @@ } }, { - "id": 15299, + "id": 17083, "properties": { "east": "tall", "north": "tall", @@ -186005,7 +201242,7 @@ } }, { - "id": 15300, + "id": 17084, "properties": { "east": "tall", "north": "tall", @@ -186016,7 +201253,7 @@ } }, { - "id": 15301, + "id": 17085, "properties": { "east": "tall", "north": "tall", @@ -186027,7 +201264,7 @@ } }, { - "id": 15302, + "id": 17086, "properties": { "east": "tall", "north": "tall", @@ -186038,7 +201275,7 @@ } }, { - "id": 15303, + "id": 17087, "properties": { "east": "tall", "north": "tall", @@ -186049,7 +201286,7 @@ } }, { - "id": 15304, + "id": 17088, "properties": { "east": "tall", "north": "tall", @@ -186060,7 +201297,7 @@ } }, { - "id": 15305, + "id": 17089, "properties": { "east": "tall", "north": "tall", @@ -186071,7 +201308,7 @@ } }, { - "id": 15306, + "id": 17090, "properties": { "east": "tall", "north": "tall", @@ -186082,7 +201319,7 @@ } }, { - "id": 15307, + "id": 17091, "properties": { "east": "tall", "north": "tall", @@ -186093,7 +201330,7 @@ } }, { - "id": 15308, + "id": 17092, "properties": { "east": "tall", "north": "tall", @@ -186104,7 +201341,7 @@ } }, { - "id": 15309, + "id": 17093, "properties": { "east": "tall", "north": "tall", @@ -186115,7 +201352,7 @@ } }, { - "id": 15310, + "id": 17094, "properties": { "east": "tall", "north": "tall", @@ -186126,7 +201363,7 @@ } }, { - "id": 15311, + "id": 17095, "properties": { "east": "tall", "north": "tall", @@ -186161,7 +201398,7 @@ }, "states": [ { - "id": 15960, + "id": 17744, "properties": { "bottom": "true", "distance": "0", @@ -186169,7 +201406,7 @@ } }, { - "id": 15961, + "id": 17745, "properties": { "bottom": "true", "distance": "0", @@ -186177,7 +201414,7 @@ } }, { - "id": 15962, + "id": 17746, "properties": { "bottom": "true", "distance": "1", @@ -186185,7 +201422,7 @@ } }, { - "id": 15963, + "id": 17747, "properties": { "bottom": "true", "distance": "1", @@ -186193,7 +201430,7 @@ } }, { - "id": 15964, + "id": 17748, "properties": { "bottom": "true", "distance": "2", @@ -186201,7 +201438,7 @@ } }, { - "id": 15965, + "id": 17749, "properties": { "bottom": "true", "distance": "2", @@ -186209,7 +201446,7 @@ } }, { - "id": 15966, + "id": 17750, "properties": { "bottom": "true", "distance": "3", @@ -186217,7 +201454,7 @@ } }, { - "id": 15967, + "id": 17751, "properties": { "bottom": "true", "distance": "3", @@ -186225,7 +201462,7 @@ } }, { - "id": 15968, + "id": 17752, "properties": { "bottom": "true", "distance": "4", @@ -186233,7 +201470,7 @@ } }, { - "id": 15969, + "id": 17753, "properties": { "bottom": "true", "distance": "4", @@ -186241,7 +201478,7 @@ } }, { - "id": 15970, + "id": 17754, "properties": { "bottom": "true", "distance": "5", @@ -186249,7 +201486,7 @@ } }, { - "id": 15971, + "id": 17755, "properties": { "bottom": "true", "distance": "5", @@ -186257,7 +201494,7 @@ } }, { - "id": 15972, + "id": 17756, "properties": { "bottom": "true", "distance": "6", @@ -186265,7 +201502,7 @@ } }, { - "id": 15973, + "id": 17757, "properties": { "bottom": "true", "distance": "6", @@ -186273,7 +201510,7 @@ } }, { - "id": 15974, + "id": 17758, "properties": { "bottom": "true", "distance": "7", @@ -186281,7 +201518,7 @@ } }, { - "id": 15975, + "id": 17759, "properties": { "bottom": "true", "distance": "7", @@ -186289,7 +201526,7 @@ } }, { - "id": 15976, + "id": 17760, "properties": { "bottom": "false", "distance": "0", @@ -186297,7 +201534,7 @@ } }, { - "id": 15977, + "id": 17761, "properties": { "bottom": "false", "distance": "0", @@ -186305,7 +201542,7 @@ } }, { - "id": 15978, + "id": 17762, "properties": { "bottom": "false", "distance": "1", @@ -186313,7 +201550,7 @@ } }, { - "id": 15979, + "id": 17763, "properties": { "bottom": "false", "distance": "1", @@ -186321,7 +201558,7 @@ } }, { - "id": 15980, + "id": 17764, "properties": { "bottom": "false", "distance": "2", @@ -186329,7 +201566,7 @@ } }, { - "id": 15981, + "id": 17765, "properties": { "bottom": "false", "distance": "2", @@ -186337,7 +201574,7 @@ } }, { - "id": 15982, + "id": 17766, "properties": { "bottom": "false", "distance": "3", @@ -186345,7 +201582,7 @@ } }, { - "id": 15983, + "id": 17767, "properties": { "bottom": "false", "distance": "3", @@ -186353,7 +201590,7 @@ } }, { - "id": 15984, + "id": 17768, "properties": { "bottom": "false", "distance": "4", @@ -186361,7 +201598,7 @@ } }, { - "id": 15985, + "id": 17769, "properties": { "bottom": "false", "distance": "4", @@ -186369,7 +201606,7 @@ } }, { - "id": 15986, + "id": 17770, "properties": { "bottom": "false", "distance": "5", @@ -186377,7 +201614,7 @@ } }, { - "id": 15987, + "id": 17771, "properties": { "bottom": "false", "distance": "5", @@ -186385,7 +201622,7 @@ } }, { - "id": 15988, + "id": 17772, "properties": { "bottom": "false", "distance": "6", @@ -186393,7 +201630,7 @@ } }, { - "id": 15989, + "id": 17773, "properties": { "bottom": "false", "distance": "6", @@ -186401,7 +201638,7 @@ } }, { - "id": 15990, + "id": 17774, "properties": { "bottom": "false", "distance": "7", @@ -186410,7 +201647,7 @@ }, { "default": true, - "id": 15991, + "id": 17775, "properties": { "bottom": "false", "distance": "7", @@ -186423,7 +201660,7 @@ "states": [ { "default": true, - "id": 18769 + "id": 20553 } ] }, @@ -186436,14 +201673,14 @@ }, "states": [ { - "id": 18898, + "id": 20682, "properties": { "bloom": "true" } }, { "default": true, - "id": 18899, + "id": 20683, "properties": { "bloom": "false" } @@ -186482,7 +201719,7 @@ }, "states": [ { - "id": 18673, + "id": 20457, "properties": { "power": "0", "sculk_sensor_phase": "inactive", @@ -186491,7 +201728,7 @@ }, { "default": true, - "id": 18674, + "id": 20458, "properties": { "power": "0", "sculk_sensor_phase": "inactive", @@ -186499,7 +201736,7 @@ } }, { - "id": 18675, + "id": 20459, "properties": { "power": "0", "sculk_sensor_phase": "active", @@ -186507,7 +201744,7 @@ } }, { - "id": 18676, + "id": 20460, "properties": { "power": "0", "sculk_sensor_phase": "active", @@ -186515,7 +201752,7 @@ } }, { - "id": 18677, + "id": 20461, "properties": { "power": "0", "sculk_sensor_phase": "cooldown", @@ -186523,7 +201760,7 @@ } }, { - "id": 18678, + "id": 20462, "properties": { "power": "0", "sculk_sensor_phase": "cooldown", @@ -186531,7 +201768,7 @@ } }, { - "id": 18679, + "id": 20463, "properties": { "power": "1", "sculk_sensor_phase": "inactive", @@ -186539,7 +201776,7 @@ } }, { - "id": 18680, + "id": 20464, "properties": { "power": "1", "sculk_sensor_phase": "inactive", @@ -186547,7 +201784,7 @@ } }, { - "id": 18681, + "id": 20465, "properties": { "power": "1", "sculk_sensor_phase": "active", @@ -186555,7 +201792,7 @@ } }, { - "id": 18682, + "id": 20466, "properties": { "power": "1", "sculk_sensor_phase": "active", @@ -186563,7 +201800,7 @@ } }, { - "id": 18683, + "id": 20467, "properties": { "power": "1", "sculk_sensor_phase": "cooldown", @@ -186571,7 +201808,7 @@ } }, { - "id": 18684, + "id": 20468, "properties": { "power": "1", "sculk_sensor_phase": "cooldown", @@ -186579,7 +201816,7 @@ } }, { - "id": 18685, + "id": 20469, "properties": { "power": "2", "sculk_sensor_phase": "inactive", @@ -186587,7 +201824,7 @@ } }, { - "id": 18686, + "id": 20470, "properties": { "power": "2", "sculk_sensor_phase": "inactive", @@ -186595,7 +201832,7 @@ } }, { - "id": 18687, + "id": 20471, "properties": { "power": "2", "sculk_sensor_phase": "active", @@ -186603,7 +201840,7 @@ } }, { - "id": 18688, + "id": 20472, "properties": { "power": "2", "sculk_sensor_phase": "active", @@ -186611,7 +201848,7 @@ } }, { - "id": 18689, + "id": 20473, "properties": { "power": "2", "sculk_sensor_phase": "cooldown", @@ -186619,7 +201856,7 @@ } }, { - "id": 18690, + "id": 20474, "properties": { "power": "2", "sculk_sensor_phase": "cooldown", @@ -186627,7 +201864,7 @@ } }, { - "id": 18691, + "id": 20475, "properties": { "power": "3", "sculk_sensor_phase": "inactive", @@ -186635,7 +201872,7 @@ } }, { - "id": 18692, + "id": 20476, "properties": { "power": "3", "sculk_sensor_phase": "inactive", @@ -186643,7 +201880,7 @@ } }, { - "id": 18693, + "id": 20477, "properties": { "power": "3", "sculk_sensor_phase": "active", @@ -186651,7 +201888,7 @@ } }, { - "id": 18694, + "id": 20478, "properties": { "power": "3", "sculk_sensor_phase": "active", @@ -186659,7 +201896,7 @@ } }, { - "id": 18695, + "id": 20479, "properties": { "power": "3", "sculk_sensor_phase": "cooldown", @@ -186667,7 +201904,7 @@ } }, { - "id": 18696, + "id": 20480, "properties": { "power": "3", "sculk_sensor_phase": "cooldown", @@ -186675,7 +201912,7 @@ } }, { - "id": 18697, + "id": 20481, "properties": { "power": "4", "sculk_sensor_phase": "inactive", @@ -186683,7 +201920,7 @@ } }, { - "id": 18698, + "id": 20482, "properties": { "power": "4", "sculk_sensor_phase": "inactive", @@ -186691,7 +201928,7 @@ } }, { - "id": 18699, + "id": 20483, "properties": { "power": "4", "sculk_sensor_phase": "active", @@ -186699,7 +201936,7 @@ } }, { - "id": 18700, + "id": 20484, "properties": { "power": "4", "sculk_sensor_phase": "active", @@ -186707,7 +201944,7 @@ } }, { - "id": 18701, + "id": 20485, "properties": { "power": "4", "sculk_sensor_phase": "cooldown", @@ -186715,7 +201952,7 @@ } }, { - "id": 18702, + "id": 20486, "properties": { "power": "4", "sculk_sensor_phase": "cooldown", @@ -186723,7 +201960,7 @@ } }, { - "id": 18703, + "id": 20487, "properties": { "power": "5", "sculk_sensor_phase": "inactive", @@ -186731,7 +201968,7 @@ } }, { - "id": 18704, + "id": 20488, "properties": { "power": "5", "sculk_sensor_phase": "inactive", @@ -186739,7 +201976,7 @@ } }, { - "id": 18705, + "id": 20489, "properties": { "power": "5", "sculk_sensor_phase": "active", @@ -186747,7 +201984,7 @@ } }, { - "id": 18706, + "id": 20490, "properties": { "power": "5", "sculk_sensor_phase": "active", @@ -186755,7 +201992,7 @@ } }, { - "id": 18707, + "id": 20491, "properties": { "power": "5", "sculk_sensor_phase": "cooldown", @@ -186763,7 +202000,7 @@ } }, { - "id": 18708, + "id": 20492, "properties": { "power": "5", "sculk_sensor_phase": "cooldown", @@ -186771,7 +202008,7 @@ } }, { - "id": 18709, + "id": 20493, "properties": { "power": "6", "sculk_sensor_phase": "inactive", @@ -186779,7 +202016,7 @@ } }, { - "id": 18710, + "id": 20494, "properties": { "power": "6", "sculk_sensor_phase": "inactive", @@ -186787,7 +202024,7 @@ } }, { - "id": 18711, + "id": 20495, "properties": { "power": "6", "sculk_sensor_phase": "active", @@ -186795,7 +202032,7 @@ } }, { - "id": 18712, + "id": 20496, "properties": { "power": "6", "sculk_sensor_phase": "active", @@ -186803,7 +202040,7 @@ } }, { - "id": 18713, + "id": 20497, "properties": { "power": "6", "sculk_sensor_phase": "cooldown", @@ -186811,7 +202048,7 @@ } }, { - "id": 18714, + "id": 20498, "properties": { "power": "6", "sculk_sensor_phase": "cooldown", @@ -186819,7 +202056,7 @@ } }, { - "id": 18715, + "id": 20499, "properties": { "power": "7", "sculk_sensor_phase": "inactive", @@ -186827,7 +202064,7 @@ } }, { - "id": 18716, + "id": 20500, "properties": { "power": "7", "sculk_sensor_phase": "inactive", @@ -186835,7 +202072,7 @@ } }, { - "id": 18717, + "id": 20501, "properties": { "power": "7", "sculk_sensor_phase": "active", @@ -186843,7 +202080,7 @@ } }, { - "id": 18718, + "id": 20502, "properties": { "power": "7", "sculk_sensor_phase": "active", @@ -186851,7 +202088,7 @@ } }, { - "id": 18719, + "id": 20503, "properties": { "power": "7", "sculk_sensor_phase": "cooldown", @@ -186859,7 +202096,7 @@ } }, { - "id": 18720, + "id": 20504, "properties": { "power": "7", "sculk_sensor_phase": "cooldown", @@ -186867,7 +202104,7 @@ } }, { - "id": 18721, + "id": 20505, "properties": { "power": "8", "sculk_sensor_phase": "inactive", @@ -186875,7 +202112,7 @@ } }, { - "id": 18722, + "id": 20506, "properties": { "power": "8", "sculk_sensor_phase": "inactive", @@ -186883,7 +202120,7 @@ } }, { - "id": 18723, + "id": 20507, "properties": { "power": "8", "sculk_sensor_phase": "active", @@ -186891,7 +202128,7 @@ } }, { - "id": 18724, + "id": 20508, "properties": { "power": "8", "sculk_sensor_phase": "active", @@ -186899,7 +202136,7 @@ } }, { - "id": 18725, + "id": 20509, "properties": { "power": "8", "sculk_sensor_phase": "cooldown", @@ -186907,7 +202144,7 @@ } }, { - "id": 18726, + "id": 20510, "properties": { "power": "8", "sculk_sensor_phase": "cooldown", @@ -186915,7 +202152,7 @@ } }, { - "id": 18727, + "id": 20511, "properties": { "power": "9", "sculk_sensor_phase": "inactive", @@ -186923,7 +202160,7 @@ } }, { - "id": 18728, + "id": 20512, "properties": { "power": "9", "sculk_sensor_phase": "inactive", @@ -186931,7 +202168,7 @@ } }, { - "id": 18729, + "id": 20513, "properties": { "power": "9", "sculk_sensor_phase": "active", @@ -186939,7 +202176,7 @@ } }, { - "id": 18730, + "id": 20514, "properties": { "power": "9", "sculk_sensor_phase": "active", @@ -186947,7 +202184,7 @@ } }, { - "id": 18731, + "id": 20515, "properties": { "power": "9", "sculk_sensor_phase": "cooldown", @@ -186955,7 +202192,7 @@ } }, { - "id": 18732, + "id": 20516, "properties": { "power": "9", "sculk_sensor_phase": "cooldown", @@ -186963,7 +202200,7 @@ } }, { - "id": 18733, + "id": 20517, "properties": { "power": "10", "sculk_sensor_phase": "inactive", @@ -186971,7 +202208,7 @@ } }, { - "id": 18734, + "id": 20518, "properties": { "power": "10", "sculk_sensor_phase": "inactive", @@ -186979,7 +202216,7 @@ } }, { - "id": 18735, + "id": 20519, "properties": { "power": "10", "sculk_sensor_phase": "active", @@ -186987,7 +202224,7 @@ } }, { - "id": 18736, + "id": 20520, "properties": { "power": "10", "sculk_sensor_phase": "active", @@ -186995,7 +202232,7 @@ } }, { - "id": 18737, + "id": 20521, "properties": { "power": "10", "sculk_sensor_phase": "cooldown", @@ -187003,7 +202240,7 @@ } }, { - "id": 18738, + "id": 20522, "properties": { "power": "10", "sculk_sensor_phase": "cooldown", @@ -187011,7 +202248,7 @@ } }, { - "id": 18739, + "id": 20523, "properties": { "power": "11", "sculk_sensor_phase": "inactive", @@ -187019,7 +202256,7 @@ } }, { - "id": 18740, + "id": 20524, "properties": { "power": "11", "sculk_sensor_phase": "inactive", @@ -187027,7 +202264,7 @@ } }, { - "id": 18741, + "id": 20525, "properties": { "power": "11", "sculk_sensor_phase": "active", @@ -187035,7 +202272,7 @@ } }, { - "id": 18742, + "id": 20526, "properties": { "power": "11", "sculk_sensor_phase": "active", @@ -187043,7 +202280,7 @@ } }, { - "id": 18743, + "id": 20527, "properties": { "power": "11", "sculk_sensor_phase": "cooldown", @@ -187051,7 +202288,7 @@ } }, { - "id": 18744, + "id": 20528, "properties": { "power": "11", "sculk_sensor_phase": "cooldown", @@ -187059,7 +202296,7 @@ } }, { - "id": 18745, + "id": 20529, "properties": { "power": "12", "sculk_sensor_phase": "inactive", @@ -187067,7 +202304,7 @@ } }, { - "id": 18746, + "id": 20530, "properties": { "power": "12", "sculk_sensor_phase": "inactive", @@ -187075,7 +202312,7 @@ } }, { - "id": 18747, + "id": 20531, "properties": { "power": "12", "sculk_sensor_phase": "active", @@ -187083,7 +202320,7 @@ } }, { - "id": 18748, + "id": 20532, "properties": { "power": "12", "sculk_sensor_phase": "active", @@ -187091,7 +202328,7 @@ } }, { - "id": 18749, + "id": 20533, "properties": { "power": "12", "sculk_sensor_phase": "cooldown", @@ -187099,7 +202336,7 @@ } }, { - "id": 18750, + "id": 20534, "properties": { "power": "12", "sculk_sensor_phase": "cooldown", @@ -187107,7 +202344,7 @@ } }, { - "id": 18751, + "id": 20535, "properties": { "power": "13", "sculk_sensor_phase": "inactive", @@ -187115,7 +202352,7 @@ } }, { - "id": 18752, + "id": 20536, "properties": { "power": "13", "sculk_sensor_phase": "inactive", @@ -187123,7 +202360,7 @@ } }, { - "id": 18753, + "id": 20537, "properties": { "power": "13", "sculk_sensor_phase": "active", @@ -187131,7 +202368,7 @@ } }, { - "id": 18754, + "id": 20538, "properties": { "power": "13", "sculk_sensor_phase": "active", @@ -187139,7 +202376,7 @@ } }, { - "id": 18755, + "id": 20539, "properties": { "power": "13", "sculk_sensor_phase": "cooldown", @@ -187147,7 +202384,7 @@ } }, { - "id": 18756, + "id": 20540, "properties": { "power": "13", "sculk_sensor_phase": "cooldown", @@ -187155,7 +202392,7 @@ } }, { - "id": 18757, + "id": 20541, "properties": { "power": "14", "sculk_sensor_phase": "inactive", @@ -187163,7 +202400,7 @@ } }, { - "id": 18758, + "id": 20542, "properties": { "power": "14", "sculk_sensor_phase": "inactive", @@ -187171,7 +202408,7 @@ } }, { - "id": 18759, + "id": 20543, "properties": { "power": "14", "sculk_sensor_phase": "active", @@ -187179,7 +202416,7 @@ } }, { - "id": 18760, + "id": 20544, "properties": { "power": "14", "sculk_sensor_phase": "active", @@ -187187,7 +202424,7 @@ } }, { - "id": 18761, + "id": 20545, "properties": { "power": "14", "sculk_sensor_phase": "cooldown", @@ -187195,7 +202432,7 @@ } }, { - "id": 18762, + "id": 20546, "properties": { "power": "14", "sculk_sensor_phase": "cooldown", @@ -187203,7 +202440,7 @@ } }, { - "id": 18763, + "id": 20547, "properties": { "power": "15", "sculk_sensor_phase": "inactive", @@ -187211,7 +202448,7 @@ } }, { - "id": 18764, + "id": 20548, "properties": { "power": "15", "sculk_sensor_phase": "inactive", @@ -187219,7 +202456,7 @@ } }, { - "id": 18765, + "id": 20549, "properties": { "power": "15", "sculk_sensor_phase": "active", @@ -187227,7 +202464,7 @@ } }, { - "id": 18766, + "id": 20550, "properties": { "power": "15", "sculk_sensor_phase": "active", @@ -187235,7 +202472,7 @@ } }, { - "id": 18767, + "id": 20551, "properties": { "power": "15", "sculk_sensor_phase": "cooldown", @@ -187243,7 +202480,7 @@ } }, { - "id": 18768, + "id": 20552, "properties": { "power": "15", "sculk_sensor_phase": "cooldown", @@ -187269,7 +202506,7 @@ }, "states": [ { - "id": 18900, + "id": 20684, "properties": { "can_summon": "true", "shrieking": "true", @@ -187277,7 +202514,7 @@ } }, { - "id": 18901, + "id": 20685, "properties": { "can_summon": "true", "shrieking": "true", @@ -187285,7 +202522,7 @@ } }, { - "id": 18902, + "id": 20686, "properties": { "can_summon": "true", "shrieking": "false", @@ -187293,7 +202530,7 @@ } }, { - "id": 18903, + "id": 20687, "properties": { "can_summon": "true", "shrieking": "false", @@ -187301,7 +202538,7 @@ } }, { - "id": 18904, + "id": 20688, "properties": { "can_summon": "false", "shrieking": "true", @@ -187309,7 +202546,7 @@ } }, { - "id": 18905, + "id": 20689, "properties": { "can_summon": "false", "shrieking": "true", @@ -187317,7 +202554,7 @@ } }, { - "id": 18906, + "id": 20690, "properties": { "can_summon": "false", "shrieking": "false", @@ -187326,7 +202563,7 @@ }, { "default": true, - "id": 18907, + "id": 20691, "properties": { "can_summon": "false", "shrieking": "false", @@ -187368,7 +202605,7 @@ }, "states": [ { - "id": 18770, + "id": 20554, "properties": { "down": "true", "east": "true", @@ -187380,7 +202617,7 @@ } }, { - "id": 18771, + "id": 20555, "properties": { "down": "true", "east": "true", @@ -187392,7 +202629,7 @@ } }, { - "id": 18772, + "id": 20556, "properties": { "down": "true", "east": "true", @@ -187404,7 +202641,7 @@ } }, { - "id": 18773, + "id": 20557, "properties": { "down": "true", "east": "true", @@ -187416,7 +202653,7 @@ } }, { - "id": 18774, + "id": 20558, "properties": { "down": "true", "east": "true", @@ -187428,7 +202665,7 @@ } }, { - "id": 18775, + "id": 20559, "properties": { "down": "true", "east": "true", @@ -187440,7 +202677,7 @@ } }, { - "id": 18776, + "id": 20560, "properties": { "down": "true", "east": "true", @@ -187452,7 +202689,7 @@ } }, { - "id": 18777, + "id": 20561, "properties": { "down": "true", "east": "true", @@ -187464,7 +202701,7 @@ } }, { - "id": 18778, + "id": 20562, "properties": { "down": "true", "east": "true", @@ -187476,7 +202713,7 @@ } }, { - "id": 18779, + "id": 20563, "properties": { "down": "true", "east": "true", @@ -187488,7 +202725,7 @@ } }, { - "id": 18780, + "id": 20564, "properties": { "down": "true", "east": "true", @@ -187500,7 +202737,7 @@ } }, { - "id": 18781, + "id": 20565, "properties": { "down": "true", "east": "true", @@ -187512,7 +202749,7 @@ } }, { - "id": 18782, + "id": 20566, "properties": { "down": "true", "east": "true", @@ -187524,7 +202761,7 @@ } }, { - "id": 18783, + "id": 20567, "properties": { "down": "true", "east": "true", @@ -187536,7 +202773,7 @@ } }, { - "id": 18784, + "id": 20568, "properties": { "down": "true", "east": "true", @@ -187548,7 +202785,7 @@ } }, { - "id": 18785, + "id": 20569, "properties": { "down": "true", "east": "true", @@ -187560,7 +202797,7 @@ } }, { - "id": 18786, + "id": 20570, "properties": { "down": "true", "east": "true", @@ -187572,7 +202809,7 @@ } }, { - "id": 18787, + "id": 20571, "properties": { "down": "true", "east": "true", @@ -187584,7 +202821,7 @@ } }, { - "id": 18788, + "id": 20572, "properties": { "down": "true", "east": "true", @@ -187596,7 +202833,7 @@ } }, { - "id": 18789, + "id": 20573, "properties": { "down": "true", "east": "true", @@ -187608,7 +202845,7 @@ } }, { - "id": 18790, + "id": 20574, "properties": { "down": "true", "east": "true", @@ -187620,7 +202857,7 @@ } }, { - "id": 18791, + "id": 20575, "properties": { "down": "true", "east": "true", @@ -187632,7 +202869,7 @@ } }, { - "id": 18792, + "id": 20576, "properties": { "down": "true", "east": "true", @@ -187644,7 +202881,7 @@ } }, { - "id": 18793, + "id": 20577, "properties": { "down": "true", "east": "true", @@ -187656,7 +202893,7 @@ } }, { - "id": 18794, + "id": 20578, "properties": { "down": "true", "east": "true", @@ -187668,7 +202905,7 @@ } }, { - "id": 18795, + "id": 20579, "properties": { "down": "true", "east": "true", @@ -187680,7 +202917,7 @@ } }, { - "id": 18796, + "id": 20580, "properties": { "down": "true", "east": "true", @@ -187692,7 +202929,7 @@ } }, { - "id": 18797, + "id": 20581, "properties": { "down": "true", "east": "true", @@ -187704,7 +202941,7 @@ } }, { - "id": 18798, + "id": 20582, "properties": { "down": "true", "east": "true", @@ -187716,7 +202953,7 @@ } }, { - "id": 18799, + "id": 20583, "properties": { "down": "true", "east": "true", @@ -187728,7 +202965,7 @@ } }, { - "id": 18800, + "id": 20584, "properties": { "down": "true", "east": "true", @@ -187740,7 +202977,7 @@ } }, { - "id": 18801, + "id": 20585, "properties": { "down": "true", "east": "true", @@ -187752,7 +202989,7 @@ } }, { - "id": 18802, + "id": 20586, "properties": { "down": "true", "east": "false", @@ -187764,7 +203001,7 @@ } }, { - "id": 18803, + "id": 20587, "properties": { "down": "true", "east": "false", @@ -187776,7 +203013,7 @@ } }, { - "id": 18804, + "id": 20588, "properties": { "down": "true", "east": "false", @@ -187788,7 +203025,7 @@ } }, { - "id": 18805, + "id": 20589, "properties": { "down": "true", "east": "false", @@ -187800,7 +203037,7 @@ } }, { - "id": 18806, + "id": 20590, "properties": { "down": "true", "east": "false", @@ -187812,7 +203049,7 @@ } }, { - "id": 18807, + "id": 20591, "properties": { "down": "true", "east": "false", @@ -187824,7 +203061,7 @@ } }, { - "id": 18808, + "id": 20592, "properties": { "down": "true", "east": "false", @@ -187836,7 +203073,7 @@ } }, { - "id": 18809, + "id": 20593, "properties": { "down": "true", "east": "false", @@ -187848,7 +203085,7 @@ } }, { - "id": 18810, + "id": 20594, "properties": { "down": "true", "east": "false", @@ -187860,7 +203097,7 @@ } }, { - "id": 18811, + "id": 20595, "properties": { "down": "true", "east": "false", @@ -187872,7 +203109,7 @@ } }, { - "id": 18812, + "id": 20596, "properties": { "down": "true", "east": "false", @@ -187884,7 +203121,7 @@ } }, { - "id": 18813, + "id": 20597, "properties": { "down": "true", "east": "false", @@ -187896,7 +203133,7 @@ } }, { - "id": 18814, + "id": 20598, "properties": { "down": "true", "east": "false", @@ -187908,7 +203145,7 @@ } }, { - "id": 18815, + "id": 20599, "properties": { "down": "true", "east": "false", @@ -187920,7 +203157,7 @@ } }, { - "id": 18816, + "id": 20600, "properties": { "down": "true", "east": "false", @@ -187932,7 +203169,7 @@ } }, { - "id": 18817, + "id": 20601, "properties": { "down": "true", "east": "false", @@ -187944,7 +203181,7 @@ } }, { - "id": 18818, + "id": 20602, "properties": { "down": "true", "east": "false", @@ -187956,7 +203193,7 @@ } }, { - "id": 18819, + "id": 20603, "properties": { "down": "true", "east": "false", @@ -187968,7 +203205,7 @@ } }, { - "id": 18820, + "id": 20604, "properties": { "down": "true", "east": "false", @@ -187980,7 +203217,7 @@ } }, { - "id": 18821, + "id": 20605, "properties": { "down": "true", "east": "false", @@ -187992,7 +203229,7 @@ } }, { - "id": 18822, + "id": 20606, "properties": { "down": "true", "east": "false", @@ -188004,7 +203241,7 @@ } }, { - "id": 18823, + "id": 20607, "properties": { "down": "true", "east": "false", @@ -188016,7 +203253,7 @@ } }, { - "id": 18824, + "id": 20608, "properties": { "down": "true", "east": "false", @@ -188028,7 +203265,7 @@ } }, { - "id": 18825, + "id": 20609, "properties": { "down": "true", "east": "false", @@ -188040,7 +203277,7 @@ } }, { - "id": 18826, + "id": 20610, "properties": { "down": "true", "east": "false", @@ -188052,7 +203289,7 @@ } }, { - "id": 18827, + "id": 20611, "properties": { "down": "true", "east": "false", @@ -188064,7 +203301,7 @@ } }, { - "id": 18828, + "id": 20612, "properties": { "down": "true", "east": "false", @@ -188076,7 +203313,7 @@ } }, { - "id": 18829, + "id": 20613, "properties": { "down": "true", "east": "false", @@ -188088,7 +203325,7 @@ } }, { - "id": 18830, + "id": 20614, "properties": { "down": "true", "east": "false", @@ -188100,7 +203337,7 @@ } }, { - "id": 18831, + "id": 20615, "properties": { "down": "true", "east": "false", @@ -188112,7 +203349,7 @@ } }, { - "id": 18832, + "id": 20616, "properties": { "down": "true", "east": "false", @@ -188124,7 +203361,7 @@ } }, { - "id": 18833, + "id": 20617, "properties": { "down": "true", "east": "false", @@ -188136,7 +203373,7 @@ } }, { - "id": 18834, + "id": 20618, "properties": { "down": "false", "east": "true", @@ -188148,7 +203385,7 @@ } }, { - "id": 18835, + "id": 20619, "properties": { "down": "false", "east": "true", @@ -188160,7 +203397,7 @@ } }, { - "id": 18836, + "id": 20620, "properties": { "down": "false", "east": "true", @@ -188172,7 +203409,7 @@ } }, { - "id": 18837, + "id": 20621, "properties": { "down": "false", "east": "true", @@ -188184,7 +203421,7 @@ } }, { - "id": 18838, + "id": 20622, "properties": { "down": "false", "east": "true", @@ -188196,7 +203433,7 @@ } }, { - "id": 18839, + "id": 20623, "properties": { "down": "false", "east": "true", @@ -188208,7 +203445,7 @@ } }, { - "id": 18840, + "id": 20624, "properties": { "down": "false", "east": "true", @@ -188220,7 +203457,7 @@ } }, { - "id": 18841, + "id": 20625, "properties": { "down": "false", "east": "true", @@ -188232,7 +203469,7 @@ } }, { - "id": 18842, + "id": 20626, "properties": { "down": "false", "east": "true", @@ -188244,7 +203481,7 @@ } }, { - "id": 18843, + "id": 20627, "properties": { "down": "false", "east": "true", @@ -188256,7 +203493,7 @@ } }, { - "id": 18844, + "id": 20628, "properties": { "down": "false", "east": "true", @@ -188268,7 +203505,7 @@ } }, { - "id": 18845, + "id": 20629, "properties": { "down": "false", "east": "true", @@ -188280,7 +203517,7 @@ } }, { - "id": 18846, + "id": 20630, "properties": { "down": "false", "east": "true", @@ -188292,7 +203529,7 @@ } }, { - "id": 18847, + "id": 20631, "properties": { "down": "false", "east": "true", @@ -188304,7 +203541,7 @@ } }, { - "id": 18848, + "id": 20632, "properties": { "down": "false", "east": "true", @@ -188316,7 +203553,7 @@ } }, { - "id": 18849, + "id": 20633, "properties": { "down": "false", "east": "true", @@ -188328,7 +203565,7 @@ } }, { - "id": 18850, + "id": 20634, "properties": { "down": "false", "east": "true", @@ -188340,7 +203577,7 @@ } }, { - "id": 18851, + "id": 20635, "properties": { "down": "false", "east": "true", @@ -188352,7 +203589,7 @@ } }, { - "id": 18852, + "id": 20636, "properties": { "down": "false", "east": "true", @@ -188364,7 +203601,7 @@ } }, { - "id": 18853, + "id": 20637, "properties": { "down": "false", "east": "true", @@ -188376,7 +203613,7 @@ } }, { - "id": 18854, + "id": 20638, "properties": { "down": "false", "east": "true", @@ -188388,7 +203625,7 @@ } }, { - "id": 18855, + "id": 20639, "properties": { "down": "false", "east": "true", @@ -188400,7 +203637,7 @@ } }, { - "id": 18856, + "id": 20640, "properties": { "down": "false", "east": "true", @@ -188412,7 +203649,7 @@ } }, { - "id": 18857, + "id": 20641, "properties": { "down": "false", "east": "true", @@ -188424,7 +203661,7 @@ } }, { - "id": 18858, + "id": 20642, "properties": { "down": "false", "east": "true", @@ -188436,7 +203673,7 @@ } }, { - "id": 18859, + "id": 20643, "properties": { "down": "false", "east": "true", @@ -188448,7 +203685,7 @@ } }, { - "id": 18860, + "id": 20644, "properties": { "down": "false", "east": "true", @@ -188460,7 +203697,7 @@ } }, { - "id": 18861, + "id": 20645, "properties": { "down": "false", "east": "true", @@ -188472,7 +203709,7 @@ } }, { - "id": 18862, + "id": 20646, "properties": { "down": "false", "east": "true", @@ -188484,7 +203721,7 @@ } }, { - "id": 18863, + "id": 20647, "properties": { "down": "false", "east": "true", @@ -188496,7 +203733,7 @@ } }, { - "id": 18864, + "id": 20648, "properties": { "down": "false", "east": "true", @@ -188508,7 +203745,7 @@ } }, { - "id": 18865, + "id": 20649, "properties": { "down": "false", "east": "true", @@ -188520,7 +203757,7 @@ } }, { - "id": 18866, + "id": 20650, "properties": { "down": "false", "east": "false", @@ -188532,7 +203769,7 @@ } }, { - "id": 18867, + "id": 20651, "properties": { "down": "false", "east": "false", @@ -188544,7 +203781,7 @@ } }, { - "id": 18868, + "id": 20652, "properties": { "down": "false", "east": "false", @@ -188556,7 +203793,7 @@ } }, { - "id": 18869, + "id": 20653, "properties": { "down": "false", "east": "false", @@ -188568,7 +203805,7 @@ } }, { - "id": 18870, + "id": 20654, "properties": { "down": "false", "east": "false", @@ -188580,7 +203817,7 @@ } }, { - "id": 18871, + "id": 20655, "properties": { "down": "false", "east": "false", @@ -188592,7 +203829,7 @@ } }, { - "id": 18872, + "id": 20656, "properties": { "down": "false", "east": "false", @@ -188604,7 +203841,7 @@ } }, { - "id": 18873, + "id": 20657, "properties": { "down": "false", "east": "false", @@ -188616,7 +203853,7 @@ } }, { - "id": 18874, + "id": 20658, "properties": { "down": "false", "east": "false", @@ -188628,7 +203865,7 @@ } }, { - "id": 18875, + "id": 20659, "properties": { "down": "false", "east": "false", @@ -188640,7 +203877,7 @@ } }, { - "id": 18876, + "id": 20660, "properties": { "down": "false", "east": "false", @@ -188652,7 +203889,7 @@ } }, { - "id": 18877, + "id": 20661, "properties": { "down": "false", "east": "false", @@ -188664,7 +203901,7 @@ } }, { - "id": 18878, + "id": 20662, "properties": { "down": "false", "east": "false", @@ -188676,7 +203913,7 @@ } }, { - "id": 18879, + "id": 20663, "properties": { "down": "false", "east": "false", @@ -188688,7 +203925,7 @@ } }, { - "id": 18880, + "id": 20664, "properties": { "down": "false", "east": "false", @@ -188700,7 +203937,7 @@ } }, { - "id": 18881, + "id": 20665, "properties": { "down": "false", "east": "false", @@ -188712,7 +203949,7 @@ } }, { - "id": 18882, + "id": 20666, "properties": { "down": "false", "east": "false", @@ -188724,7 +203961,7 @@ } }, { - "id": 18883, + "id": 20667, "properties": { "down": "false", "east": "false", @@ -188736,7 +203973,7 @@ } }, { - "id": 18884, + "id": 20668, "properties": { "down": "false", "east": "false", @@ -188748,7 +203985,7 @@ } }, { - "id": 18885, + "id": 20669, "properties": { "down": "false", "east": "false", @@ -188760,7 +203997,7 @@ } }, { - "id": 18886, + "id": 20670, "properties": { "down": "false", "east": "false", @@ -188772,7 +204009,7 @@ } }, { - "id": 18887, + "id": 20671, "properties": { "down": "false", "east": "false", @@ -188784,7 +204021,7 @@ } }, { - "id": 18888, + "id": 20672, "properties": { "down": "false", "east": "false", @@ -188796,7 +204033,7 @@ } }, { - "id": 18889, + "id": 20673, "properties": { "down": "false", "east": "false", @@ -188808,7 +204045,7 @@ } }, { - "id": 18890, + "id": 20674, "properties": { "down": "false", "east": "false", @@ -188820,7 +204057,7 @@ } }, { - "id": 18891, + "id": 20675, "properties": { "down": "false", "east": "false", @@ -188832,7 +204069,7 @@ } }, { - "id": 18892, + "id": 20676, "properties": { "down": "false", "east": "false", @@ -188844,7 +204081,7 @@ } }, { - "id": 18893, + "id": 20677, "properties": { "down": "false", "east": "false", @@ -188856,7 +204093,7 @@ } }, { - "id": 18894, + "id": 20678, "properties": { "down": "false", "east": "false", @@ -188868,7 +204105,7 @@ } }, { - "id": 18895, + "id": 20679, "properties": { "down": "false", "east": "false", @@ -188880,7 +204117,7 @@ } }, { - "id": 18896, + "id": 20680, "properties": { "down": "false", "east": "false", @@ -188893,7 +204130,7 @@ }, { "default": true, - "id": 18897, + "id": 20681, "properties": { "down": "false", "east": "false", @@ -188910,7 +204147,7 @@ "states": [ { "default": true, - "id": 8603 + "id": 10247 } ] }, @@ -188930,56 +204167,56 @@ "states": [ { "default": true, - "id": 10521, + "id": 12305, "properties": { "pickles": "1", "waterlogged": "true" } }, { - "id": 10522, + "id": 12306, "properties": { "pickles": "1", "waterlogged": "false" } }, { - "id": 10523, + "id": 12307, "properties": { "pickles": "2", "waterlogged": "true" } }, { - "id": 10524, + "id": 12308, "properties": { "pickles": "2", "waterlogged": "false" } }, { - "id": 10525, + "id": 12309, "properties": { "pickles": "3", "waterlogged": "true" } }, { - "id": 10526, + "id": 12310, "properties": { "pickles": "3", "waterlogged": "false" } }, { - "id": 10527, + "id": 12311, "properties": { "pickles": "4", "waterlogged": "true" } }, { - "id": 10528, + "id": 12312, "properties": { "pickles": "4", "waterlogged": "false" @@ -188991,7 +204228,7 @@ "states": [ { "default": true, - "id": 1599 + "id": 1957 } ] }, @@ -188999,7 +204236,7 @@ "states": [ { "default": true, - "id": 16198 + "id": 17982 } ] }, @@ -189016,38 +204253,38 @@ }, "states": [ { - "id": 10153, + "id": 11937, "properties": { "facing": "north" } }, { - "id": 10154, + "id": 11938, "properties": { "facing": "east" } }, { - "id": 10155, + "id": 11939, "properties": { "facing": "south" } }, { - "id": 10156, + "id": 11940, "properties": { "facing": "west" } }, { "default": true, - "id": 10157, + "id": 11941, "properties": { "facing": "up" } }, { - "id": 10158, + "id": 11942, "properties": { "facing": "down" } @@ -189078,97 +204315,97 @@ "states": [ { "default": true, - "id": 7107, + "id": 8571, "properties": { "rotation": "0" } }, { - "id": 7108, + "id": 8572, "properties": { "rotation": "1" } }, { - "id": 7109, + "id": 8573, "properties": { "rotation": "2" } }, { - "id": 7110, + "id": 8574, "properties": { "rotation": "3" } }, { - "id": 7111, + "id": 8575, "properties": { "rotation": "4" } }, { - "id": 7112, + "id": 8576, "properties": { "rotation": "5" } }, { - "id": 7113, + "id": 8577, "properties": { "rotation": "6" } }, { - "id": 7114, + "id": 8578, "properties": { "rotation": "7" } }, { - "id": 7115, + "id": 8579, "properties": { "rotation": "8" } }, { - "id": 7116, + "id": 8580, "properties": { "rotation": "9" } }, { - "id": 7117, + "id": 8581, "properties": { "rotation": "10" } }, { - "id": 7118, + "id": 8582, "properties": { "rotation": "11" } }, { - "id": 7119, + "id": 8583, "properties": { "rotation": "12" } }, { - "id": 7120, + "id": 8584, "properties": { "rotation": "13" } }, { - "id": 7121, + "id": 8585, "properties": { "rotation": "14" } }, { - "id": 7122, + "id": 8586, "properties": { "rotation": "15" } @@ -189187,25 +204424,25 @@ "states": [ { "default": true, - "id": 7123, + "id": 8587, "properties": { "facing": "north" } }, { - "id": 7124, + "id": 8588, "properties": { "facing": "south" } }, { - "id": 7125, + "id": 8589, "properties": { "facing": "west" } }, { - "id": 7126, + "id": 8590, "properties": { "facing": "east" } @@ -189216,7 +204453,7 @@ "states": [ { "default": true, - "id": 8244 + "id": 9888 } ] }, @@ -189237,63 +204474,63 @@ }, "states": [ { - "id": 18657, + "id": 20441, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 18658, + "id": 20442, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 18659, + "id": 20443, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 18660, + "id": 20444, "properties": { "facing": "east", "waterlogged": "false" } }, { - "id": 18661, + "id": 20445, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 18662, + "id": 20446, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 18663, + "id": 20447, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 18664, + "id": 20448, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 18665, + "id": 20449, "properties": { "facing": "up", "waterlogged": "true" @@ -189301,21 +204538,21 @@ }, { "default": true, - "id": 18666, + "id": 20450, "properties": { "facing": "up", "waterlogged": "false" } }, { - "id": 18667, + "id": 20451, "properties": { "facing": "down", "waterlogged": "true" } }, { - "id": 18668, + "id": 20452, "properties": { "facing": "down", "waterlogged": "false" @@ -189342,7 +204579,7 @@ }, "states": [ { - "id": 19758, + "id": 21542, "properties": { "facing": "north", "half": "upper", @@ -189350,7 +204587,7 @@ } }, { - "id": 19759, + "id": 21543, "properties": { "facing": "north", "half": "upper", @@ -189358,7 +204595,7 @@ } }, { - "id": 19760, + "id": 21544, "properties": { "facing": "north", "half": "lower", @@ -189367,7 +204604,7 @@ }, { "default": true, - "id": 19761, + "id": 21545, "properties": { "facing": "north", "half": "lower", @@ -189375,7 +204612,7 @@ } }, { - "id": 19762, + "id": 21546, "properties": { "facing": "south", "half": "upper", @@ -189383,7 +204620,7 @@ } }, { - "id": 19763, + "id": 21547, "properties": { "facing": "south", "half": "upper", @@ -189391,7 +204628,7 @@ } }, { - "id": 19764, + "id": 21548, "properties": { "facing": "south", "half": "lower", @@ -189399,7 +204636,7 @@ } }, { - "id": 19765, + "id": 21549, "properties": { "facing": "south", "half": "lower", @@ -189407,7 +204644,7 @@ } }, { - "id": 19766, + "id": 21550, "properties": { "facing": "west", "half": "upper", @@ -189415,7 +204652,7 @@ } }, { - "id": 19767, + "id": 21551, "properties": { "facing": "west", "half": "upper", @@ -189423,7 +204660,7 @@ } }, { - "id": 19768, + "id": 21552, "properties": { "facing": "west", "half": "lower", @@ -189431,7 +204668,7 @@ } }, { - "id": 19769, + "id": 21553, "properties": { "facing": "west", "half": "lower", @@ -189439,7 +204676,7 @@ } }, { - "id": 19770, + "id": 21554, "properties": { "facing": "east", "half": "upper", @@ -189447,7 +204684,7 @@ } }, { - "id": 19771, + "id": 21555, "properties": { "facing": "east", "half": "upper", @@ -189455,7 +204692,7 @@ } }, { - "id": 19772, + "id": 21556, "properties": { "facing": "east", "half": "lower", @@ -189463,7 +204700,7 @@ } }, { - "id": 19773, + "id": 21557, "properties": { "facing": "east", "half": "lower", @@ -189476,7 +204713,7 @@ "states": [ { "default": true, - "id": 16054 + "id": 17838 } ] }, @@ -189495,7 +204732,7 @@ }, "states": [ { - "id": 16008, + "id": 17792, "properties": { "facing": "north", "lit": "true" @@ -189503,49 +204740,49 @@ }, { "default": true, - "id": 16009, + "id": 17793, "properties": { "facing": "north", "lit": "false" } }, { - "id": 16010, + "id": 17794, "properties": { "facing": "south", "lit": "true" } }, { - "id": 16011, + "id": 17795, "properties": { "facing": "south", "lit": "false" } }, { - "id": 16012, + "id": 17796, "properties": { "facing": "west", "lit": "true" } }, { - "id": 16013, + "id": 17797, "properties": { "facing": "west", "lit": "false" } }, { - "id": 16014, + "id": 17798, "properties": { "facing": "east", "lit": "true" } }, { - "id": 16015, + "id": 17799, "properties": { "facing": "east", "lit": "false" @@ -189557,7 +204794,7 @@ "states": [ { "default": true, - "id": 21431 + "id": 23215 } ] }, @@ -189565,7 +204802,7 @@ "states": [ { "default": true, - "id": 9169 + "id": 10825 } ] }, @@ -189583,21 +204820,21 @@ }, "states": [ { - "id": 11712, + "id": 13496, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11713, + "id": 13497, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11714, + "id": 13498, "properties": { "type": "bottom", "waterlogged": "true" @@ -189605,21 +204842,21 @@ }, { "default": true, - "id": 11715, + "id": 13499, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11716, + "id": 13500, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11717, + "id": 13501, "properties": { "type": "double", "waterlogged": "false" @@ -189653,7 +204890,7 @@ }, "states": [ { - "id": 11190, + "id": 12974, "properties": { "facing": "north", "half": "top", @@ -189662,7 +204899,7 @@ } }, { - "id": 11191, + "id": 12975, "properties": { "facing": "north", "half": "top", @@ -189671,7 +204908,7 @@ } }, { - "id": 11192, + "id": 12976, "properties": { "facing": "north", "half": "top", @@ -189680,7 +204917,7 @@ } }, { - "id": 11193, + "id": 12977, "properties": { "facing": "north", "half": "top", @@ -189689,7 +204926,7 @@ } }, { - "id": 11194, + "id": 12978, "properties": { "facing": "north", "half": "top", @@ -189698,7 +204935,7 @@ } }, { - "id": 11195, + "id": 12979, "properties": { "facing": "north", "half": "top", @@ -189707,7 +204944,7 @@ } }, { - "id": 11196, + "id": 12980, "properties": { "facing": "north", "half": "top", @@ -189716,7 +204953,7 @@ } }, { - "id": 11197, + "id": 12981, "properties": { "facing": "north", "half": "top", @@ -189725,7 +204962,7 @@ } }, { - "id": 11198, + "id": 12982, "properties": { "facing": "north", "half": "top", @@ -189734,7 +204971,7 @@ } }, { - "id": 11199, + "id": 12983, "properties": { "facing": "north", "half": "top", @@ -189743,7 +204980,7 @@ } }, { - "id": 11200, + "id": 12984, "properties": { "facing": "north", "half": "bottom", @@ -189753,7 +204990,7 @@ }, { "default": true, - "id": 11201, + "id": 12985, "properties": { "facing": "north", "half": "bottom", @@ -189762,7 +204999,7 @@ } }, { - "id": 11202, + "id": 12986, "properties": { "facing": "north", "half": "bottom", @@ -189771,7 +205008,7 @@ } }, { - "id": 11203, + "id": 12987, "properties": { "facing": "north", "half": "bottom", @@ -189780,7 +205017,7 @@ } }, { - "id": 11204, + "id": 12988, "properties": { "facing": "north", "half": "bottom", @@ -189789,7 +205026,7 @@ } }, { - "id": 11205, + "id": 12989, "properties": { "facing": "north", "half": "bottom", @@ -189798,7 +205035,7 @@ } }, { - "id": 11206, + "id": 12990, "properties": { "facing": "north", "half": "bottom", @@ -189807,7 +205044,7 @@ } }, { - "id": 11207, + "id": 12991, "properties": { "facing": "north", "half": "bottom", @@ -189816,7 +205053,7 @@ } }, { - "id": 11208, + "id": 12992, "properties": { "facing": "north", "half": "bottom", @@ -189825,7 +205062,7 @@ } }, { - "id": 11209, + "id": 12993, "properties": { "facing": "north", "half": "bottom", @@ -189834,7 +205071,7 @@ } }, { - "id": 11210, + "id": 12994, "properties": { "facing": "south", "half": "top", @@ -189843,7 +205080,7 @@ } }, { - "id": 11211, + "id": 12995, "properties": { "facing": "south", "half": "top", @@ -189852,7 +205089,7 @@ } }, { - "id": 11212, + "id": 12996, "properties": { "facing": "south", "half": "top", @@ -189861,7 +205098,7 @@ } }, { - "id": 11213, + "id": 12997, "properties": { "facing": "south", "half": "top", @@ -189870,7 +205107,7 @@ } }, { - "id": 11214, + "id": 12998, "properties": { "facing": "south", "half": "top", @@ -189879,7 +205116,7 @@ } }, { - "id": 11215, + "id": 12999, "properties": { "facing": "south", "half": "top", @@ -189888,7 +205125,7 @@ } }, { - "id": 11216, + "id": 13000, "properties": { "facing": "south", "half": "top", @@ -189897,7 +205134,7 @@ } }, { - "id": 11217, + "id": 13001, "properties": { "facing": "south", "half": "top", @@ -189906,7 +205143,7 @@ } }, { - "id": 11218, + "id": 13002, "properties": { "facing": "south", "half": "top", @@ -189915,7 +205152,7 @@ } }, { - "id": 11219, + "id": 13003, "properties": { "facing": "south", "half": "top", @@ -189924,7 +205161,7 @@ } }, { - "id": 11220, + "id": 13004, "properties": { "facing": "south", "half": "bottom", @@ -189933,7 +205170,7 @@ } }, { - "id": 11221, + "id": 13005, "properties": { "facing": "south", "half": "bottom", @@ -189942,7 +205179,7 @@ } }, { - "id": 11222, + "id": 13006, "properties": { "facing": "south", "half": "bottom", @@ -189951,7 +205188,7 @@ } }, { - "id": 11223, + "id": 13007, "properties": { "facing": "south", "half": "bottom", @@ -189960,7 +205197,7 @@ } }, { - "id": 11224, + "id": 13008, "properties": { "facing": "south", "half": "bottom", @@ -189969,7 +205206,7 @@ } }, { - "id": 11225, + "id": 13009, "properties": { "facing": "south", "half": "bottom", @@ -189978,7 +205215,7 @@ } }, { - "id": 11226, + "id": 13010, "properties": { "facing": "south", "half": "bottom", @@ -189987,7 +205224,7 @@ } }, { - "id": 11227, + "id": 13011, "properties": { "facing": "south", "half": "bottom", @@ -189996,7 +205233,7 @@ } }, { - "id": 11228, + "id": 13012, "properties": { "facing": "south", "half": "bottom", @@ -190005,7 +205242,7 @@ } }, { - "id": 11229, + "id": 13013, "properties": { "facing": "south", "half": "bottom", @@ -190014,7 +205251,7 @@ } }, { - "id": 11230, + "id": 13014, "properties": { "facing": "west", "half": "top", @@ -190023,7 +205260,7 @@ } }, { - "id": 11231, + "id": 13015, "properties": { "facing": "west", "half": "top", @@ -190032,7 +205269,7 @@ } }, { - "id": 11232, + "id": 13016, "properties": { "facing": "west", "half": "top", @@ -190041,7 +205278,7 @@ } }, { - "id": 11233, + "id": 13017, "properties": { "facing": "west", "half": "top", @@ -190050,7 +205287,7 @@ } }, { - "id": 11234, + "id": 13018, "properties": { "facing": "west", "half": "top", @@ -190059,7 +205296,7 @@ } }, { - "id": 11235, + "id": 13019, "properties": { "facing": "west", "half": "top", @@ -190068,7 +205305,7 @@ } }, { - "id": 11236, + "id": 13020, "properties": { "facing": "west", "half": "top", @@ -190077,7 +205314,7 @@ } }, { - "id": 11237, + "id": 13021, "properties": { "facing": "west", "half": "top", @@ -190086,7 +205323,7 @@ } }, { - "id": 11238, + "id": 13022, "properties": { "facing": "west", "half": "top", @@ -190095,7 +205332,7 @@ } }, { - "id": 11239, + "id": 13023, "properties": { "facing": "west", "half": "top", @@ -190104,7 +205341,7 @@ } }, { - "id": 11240, + "id": 13024, "properties": { "facing": "west", "half": "bottom", @@ -190113,7 +205350,7 @@ } }, { - "id": 11241, + "id": 13025, "properties": { "facing": "west", "half": "bottom", @@ -190122,7 +205359,7 @@ } }, { - "id": 11242, + "id": 13026, "properties": { "facing": "west", "half": "bottom", @@ -190131,7 +205368,7 @@ } }, { - "id": 11243, + "id": 13027, "properties": { "facing": "west", "half": "bottom", @@ -190140,7 +205377,7 @@ } }, { - "id": 11244, + "id": 13028, "properties": { "facing": "west", "half": "bottom", @@ -190149,7 +205386,7 @@ } }, { - "id": 11245, + "id": 13029, "properties": { "facing": "west", "half": "bottom", @@ -190158,7 +205395,7 @@ } }, { - "id": 11246, + "id": 13030, "properties": { "facing": "west", "half": "bottom", @@ -190167,7 +205404,7 @@ } }, { - "id": 11247, + "id": 13031, "properties": { "facing": "west", "half": "bottom", @@ -190176,7 +205413,7 @@ } }, { - "id": 11248, + "id": 13032, "properties": { "facing": "west", "half": "bottom", @@ -190185,7 +205422,7 @@ } }, { - "id": 11249, + "id": 13033, "properties": { "facing": "west", "half": "bottom", @@ -190194,7 +205431,7 @@ } }, { - "id": 11250, + "id": 13034, "properties": { "facing": "east", "half": "top", @@ -190203,7 +205440,7 @@ } }, { - "id": 11251, + "id": 13035, "properties": { "facing": "east", "half": "top", @@ -190212,7 +205449,7 @@ } }, { - "id": 11252, + "id": 13036, "properties": { "facing": "east", "half": "top", @@ -190221,7 +205458,7 @@ } }, { - "id": 11253, + "id": 13037, "properties": { "facing": "east", "half": "top", @@ -190230,7 +205467,7 @@ } }, { - "id": 11254, + "id": 13038, "properties": { "facing": "east", "half": "top", @@ -190239,7 +205476,7 @@ } }, { - "id": 11255, + "id": 13039, "properties": { "facing": "east", "half": "top", @@ -190248,7 +205485,7 @@ } }, { - "id": 11256, + "id": 13040, "properties": { "facing": "east", "half": "top", @@ -190257,7 +205494,7 @@ } }, { - "id": 11257, + "id": 13041, "properties": { "facing": "east", "half": "top", @@ -190266,7 +205503,7 @@ } }, { - "id": 11258, + "id": 13042, "properties": { "facing": "east", "half": "top", @@ -190275,7 +205512,7 @@ } }, { - "id": 11259, + "id": 13043, "properties": { "facing": "east", "half": "top", @@ -190284,7 +205521,7 @@ } }, { - "id": 11260, + "id": 13044, "properties": { "facing": "east", "half": "bottom", @@ -190293,7 +205530,7 @@ } }, { - "id": 11261, + "id": 13045, "properties": { "facing": "east", "half": "bottom", @@ -190302,7 +205539,7 @@ } }, { - "id": 11262, + "id": 13046, "properties": { "facing": "east", "half": "bottom", @@ -190311,7 +205548,7 @@ } }, { - "id": 11263, + "id": 13047, "properties": { "facing": "east", "half": "bottom", @@ -190320,7 +205557,7 @@ } }, { - "id": 11264, + "id": 13048, "properties": { "facing": "east", "half": "bottom", @@ -190329,7 +205566,7 @@ } }, { - "id": 11265, + "id": 13049, "properties": { "facing": "east", "half": "bottom", @@ -190338,7 +205575,7 @@ } }, { - "id": 11266, + "id": 13050, "properties": { "facing": "east", "half": "bottom", @@ -190347,7 +205584,7 @@ } }, { - "id": 11267, + "id": 13051, "properties": { "facing": "east", "half": "bottom", @@ -190356,7 +205593,7 @@ } }, { - "id": 11268, + "id": 13052, "properties": { "facing": "east", "half": "bottom", @@ -190365,7 +205602,7 @@ } }, { - "id": 11269, + "id": 13053, "properties": { "facing": "east", "half": "bottom", @@ -190379,7 +205616,7 @@ "states": [ { "default": true, - "id": 9170 + "id": 10826 } ] }, @@ -190397,21 +205634,21 @@ }, "states": [ { - "id": 11676, + "id": 13460, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11677, + "id": 13461, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11678, + "id": 13462, "properties": { "type": "bottom", "waterlogged": "true" @@ -190419,21 +205656,21 @@ }, { "default": true, - "id": 11679, + "id": 13463, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11680, + "id": 13464, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11681, + "id": 13465, "properties": { "type": "double", "waterlogged": "false" @@ -190467,7 +205704,7 @@ }, "states": [ { - "id": 10630, + "id": 12414, "properties": { "facing": "north", "half": "top", @@ -190476,7 +205713,7 @@ } }, { - "id": 10631, + "id": 12415, "properties": { "facing": "north", "half": "top", @@ -190485,7 +205722,7 @@ } }, { - "id": 10632, + "id": 12416, "properties": { "facing": "north", "half": "top", @@ -190494,7 +205731,7 @@ } }, { - "id": 10633, + "id": 12417, "properties": { "facing": "north", "half": "top", @@ -190503,7 +205740,7 @@ } }, { - "id": 10634, + "id": 12418, "properties": { "facing": "north", "half": "top", @@ -190512,7 +205749,7 @@ } }, { - "id": 10635, + "id": 12419, "properties": { "facing": "north", "half": "top", @@ -190521,7 +205758,7 @@ } }, { - "id": 10636, + "id": 12420, "properties": { "facing": "north", "half": "top", @@ -190530,7 +205767,7 @@ } }, { - "id": 10637, + "id": 12421, "properties": { "facing": "north", "half": "top", @@ -190539,7 +205776,7 @@ } }, { - "id": 10638, + "id": 12422, "properties": { "facing": "north", "half": "top", @@ -190548,7 +205785,7 @@ } }, { - "id": 10639, + "id": 12423, "properties": { "facing": "north", "half": "top", @@ -190557,7 +205794,7 @@ } }, { - "id": 10640, + "id": 12424, "properties": { "facing": "north", "half": "bottom", @@ -190567,7 +205804,7 @@ }, { "default": true, - "id": 10641, + "id": 12425, "properties": { "facing": "north", "half": "bottom", @@ -190576,7 +205813,7 @@ } }, { - "id": 10642, + "id": 12426, "properties": { "facing": "north", "half": "bottom", @@ -190585,7 +205822,7 @@ } }, { - "id": 10643, + "id": 12427, "properties": { "facing": "north", "half": "bottom", @@ -190594,7 +205831,7 @@ } }, { - "id": 10644, + "id": 12428, "properties": { "facing": "north", "half": "bottom", @@ -190603,7 +205840,7 @@ } }, { - "id": 10645, + "id": 12429, "properties": { "facing": "north", "half": "bottom", @@ -190612,7 +205849,7 @@ } }, { - "id": 10646, + "id": 12430, "properties": { "facing": "north", "half": "bottom", @@ -190621,7 +205858,7 @@ } }, { - "id": 10647, + "id": 12431, "properties": { "facing": "north", "half": "bottom", @@ -190630,7 +205867,7 @@ } }, { - "id": 10648, + "id": 12432, "properties": { "facing": "north", "half": "bottom", @@ -190639,7 +205876,7 @@ } }, { - "id": 10649, + "id": 12433, "properties": { "facing": "north", "half": "bottom", @@ -190648,7 +205885,7 @@ } }, { - "id": 10650, + "id": 12434, "properties": { "facing": "south", "half": "top", @@ -190657,7 +205894,7 @@ } }, { - "id": 10651, + "id": 12435, "properties": { "facing": "south", "half": "top", @@ -190666,7 +205903,7 @@ } }, { - "id": 10652, + "id": 12436, "properties": { "facing": "south", "half": "top", @@ -190675,7 +205912,7 @@ } }, { - "id": 10653, + "id": 12437, "properties": { "facing": "south", "half": "top", @@ -190684,7 +205921,7 @@ } }, { - "id": 10654, + "id": 12438, "properties": { "facing": "south", "half": "top", @@ -190693,7 +205930,7 @@ } }, { - "id": 10655, + "id": 12439, "properties": { "facing": "south", "half": "top", @@ -190702,7 +205939,7 @@ } }, { - "id": 10656, + "id": 12440, "properties": { "facing": "south", "half": "top", @@ -190711,7 +205948,7 @@ } }, { - "id": 10657, + "id": 12441, "properties": { "facing": "south", "half": "top", @@ -190720,7 +205957,7 @@ } }, { - "id": 10658, + "id": 12442, "properties": { "facing": "south", "half": "top", @@ -190729,7 +205966,7 @@ } }, { - "id": 10659, + "id": 12443, "properties": { "facing": "south", "half": "top", @@ -190738,7 +205975,7 @@ } }, { - "id": 10660, + "id": 12444, "properties": { "facing": "south", "half": "bottom", @@ -190747,7 +205984,7 @@ } }, { - "id": 10661, + "id": 12445, "properties": { "facing": "south", "half": "bottom", @@ -190756,7 +205993,7 @@ } }, { - "id": 10662, + "id": 12446, "properties": { "facing": "south", "half": "bottom", @@ -190765,7 +206002,7 @@ } }, { - "id": 10663, + "id": 12447, "properties": { "facing": "south", "half": "bottom", @@ -190774,7 +206011,7 @@ } }, { - "id": 10664, + "id": 12448, "properties": { "facing": "south", "half": "bottom", @@ -190783,7 +206020,7 @@ } }, { - "id": 10665, + "id": 12449, "properties": { "facing": "south", "half": "bottom", @@ -190792,7 +206029,7 @@ } }, { - "id": 10666, + "id": 12450, "properties": { "facing": "south", "half": "bottom", @@ -190801,7 +206038,7 @@ } }, { - "id": 10667, + "id": 12451, "properties": { "facing": "south", "half": "bottom", @@ -190810,7 +206047,7 @@ } }, { - "id": 10668, + "id": 12452, "properties": { "facing": "south", "half": "bottom", @@ -190819,7 +206056,7 @@ } }, { - "id": 10669, + "id": 12453, "properties": { "facing": "south", "half": "bottom", @@ -190828,7 +206065,7 @@ } }, { - "id": 10670, + "id": 12454, "properties": { "facing": "west", "half": "top", @@ -190837,7 +206074,7 @@ } }, { - "id": 10671, + "id": 12455, "properties": { "facing": "west", "half": "top", @@ -190846,7 +206083,7 @@ } }, { - "id": 10672, + "id": 12456, "properties": { "facing": "west", "half": "top", @@ -190855,7 +206092,7 @@ } }, { - "id": 10673, + "id": 12457, "properties": { "facing": "west", "half": "top", @@ -190864,7 +206101,7 @@ } }, { - "id": 10674, + "id": 12458, "properties": { "facing": "west", "half": "top", @@ -190873,7 +206110,7 @@ } }, { - "id": 10675, + "id": 12459, "properties": { "facing": "west", "half": "top", @@ -190882,7 +206119,7 @@ } }, { - "id": 10676, + "id": 12460, "properties": { "facing": "west", "half": "top", @@ -190891,7 +206128,7 @@ } }, { - "id": 10677, + "id": 12461, "properties": { "facing": "west", "half": "top", @@ -190900,7 +206137,7 @@ } }, { - "id": 10678, + "id": 12462, "properties": { "facing": "west", "half": "top", @@ -190909,7 +206146,7 @@ } }, { - "id": 10679, + "id": 12463, "properties": { "facing": "west", "half": "top", @@ -190918,7 +206155,7 @@ } }, { - "id": 10680, + "id": 12464, "properties": { "facing": "west", "half": "bottom", @@ -190927,7 +206164,7 @@ } }, { - "id": 10681, + "id": 12465, "properties": { "facing": "west", "half": "bottom", @@ -190936,7 +206173,7 @@ } }, { - "id": 10682, + "id": 12466, "properties": { "facing": "west", "half": "bottom", @@ -190945,7 +206182,7 @@ } }, { - "id": 10683, + "id": 12467, "properties": { "facing": "west", "half": "bottom", @@ -190954,7 +206191,7 @@ } }, { - "id": 10684, + "id": 12468, "properties": { "facing": "west", "half": "bottom", @@ -190963,7 +206200,7 @@ } }, { - "id": 10685, + "id": 12469, "properties": { "facing": "west", "half": "bottom", @@ -190972,7 +206209,7 @@ } }, { - "id": 10686, + "id": 12470, "properties": { "facing": "west", "half": "bottom", @@ -190981,7 +206218,7 @@ } }, { - "id": 10687, + "id": 12471, "properties": { "facing": "west", "half": "bottom", @@ -190990,7 +206227,7 @@ } }, { - "id": 10688, + "id": 12472, "properties": { "facing": "west", "half": "bottom", @@ -190999,7 +206236,7 @@ } }, { - "id": 10689, + "id": 12473, "properties": { "facing": "west", "half": "bottom", @@ -191008,7 +206245,7 @@ } }, { - "id": 10690, + "id": 12474, "properties": { "facing": "east", "half": "top", @@ -191017,7 +206254,7 @@ } }, { - "id": 10691, + "id": 12475, "properties": { "facing": "east", "half": "top", @@ -191026,7 +206263,7 @@ } }, { - "id": 10692, + "id": 12476, "properties": { "facing": "east", "half": "top", @@ -191035,7 +206272,7 @@ } }, { - "id": 10693, + "id": 12477, "properties": { "facing": "east", "half": "top", @@ -191044,7 +206281,7 @@ } }, { - "id": 10694, + "id": 12478, "properties": { "facing": "east", "half": "top", @@ -191053,7 +206290,7 @@ } }, { - "id": 10695, + "id": 12479, "properties": { "facing": "east", "half": "top", @@ -191062,7 +206299,7 @@ } }, { - "id": 10696, + "id": 12480, "properties": { "facing": "east", "half": "top", @@ -191071,7 +206308,7 @@ } }, { - "id": 10697, + "id": 12481, "properties": { "facing": "east", "half": "top", @@ -191080,7 +206317,7 @@ } }, { - "id": 10698, + "id": 12482, "properties": { "facing": "east", "half": "top", @@ -191089,7 +206326,7 @@ } }, { - "id": 10699, + "id": 12483, "properties": { "facing": "east", "half": "top", @@ -191098,7 +206335,7 @@ } }, { - "id": 10700, + "id": 12484, "properties": { "facing": "east", "half": "bottom", @@ -191107,7 +206344,7 @@ } }, { - "id": 10701, + "id": 12485, "properties": { "facing": "east", "half": "bottom", @@ -191116,7 +206353,7 @@ } }, { - "id": 10702, + "id": 12486, "properties": { "facing": "east", "half": "bottom", @@ -191125,7 +206362,7 @@ } }, { - "id": 10703, + "id": 12487, "properties": { "facing": "east", "half": "bottom", @@ -191134,7 +206371,7 @@ } }, { - "id": 10704, + "id": 12488, "properties": { "facing": "east", "half": "bottom", @@ -191143,7 +206380,7 @@ } }, { - "id": 10705, + "id": 12489, "properties": { "facing": "east", "half": "bottom", @@ -191152,7 +206389,7 @@ } }, { - "id": 10706, + "id": 12490, "properties": { "facing": "east", "half": "bottom", @@ -191161,7 +206398,7 @@ } }, { - "id": 10707, + "id": 12491, "properties": { "facing": "east", "half": "bottom", @@ -191170,7 +206407,7 @@ } }, { - "id": 10708, + "id": 12492, "properties": { "facing": "east", "half": "bottom", @@ -191179,7 +206416,7 @@ } }, { - "id": 10709, + "id": 12493, "properties": { "facing": "east", "half": "bottom", @@ -191193,7 +206430,7 @@ "states": [ { "default": true, - "id": 9168 + "id": 10824 } ] }, @@ -191211,21 +206448,21 @@ }, "states": [ { - "id": 11706, + "id": 13490, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11707, + "id": 13491, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11708, + "id": 13492, "properties": { "type": "bottom", "waterlogged": "true" @@ -191233,21 +206470,21 @@ }, { "default": true, - "id": 11709, + "id": 13493, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11710, + "id": 13494, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11711, + "id": 13495, "properties": { "type": "double", "waterlogged": "false" @@ -191281,7 +206518,7 @@ }, "states": [ { - "id": 11110, + "id": 12894, "properties": { "facing": "north", "half": "top", @@ -191290,7 +206527,7 @@ } }, { - "id": 11111, + "id": 12895, "properties": { "facing": "north", "half": "top", @@ -191299,7 +206536,7 @@ } }, { - "id": 11112, + "id": 12896, "properties": { "facing": "north", "half": "top", @@ -191308,7 +206545,7 @@ } }, { - "id": 11113, + "id": 12897, "properties": { "facing": "north", "half": "top", @@ -191317,7 +206554,7 @@ } }, { - "id": 11114, + "id": 12898, "properties": { "facing": "north", "half": "top", @@ -191326,7 +206563,7 @@ } }, { - "id": 11115, + "id": 12899, "properties": { "facing": "north", "half": "top", @@ -191335,7 +206572,7 @@ } }, { - "id": 11116, + "id": 12900, "properties": { "facing": "north", "half": "top", @@ -191344,7 +206581,7 @@ } }, { - "id": 11117, + "id": 12901, "properties": { "facing": "north", "half": "top", @@ -191353,7 +206590,7 @@ } }, { - "id": 11118, + "id": 12902, "properties": { "facing": "north", "half": "top", @@ -191362,7 +206599,7 @@ } }, { - "id": 11119, + "id": 12903, "properties": { "facing": "north", "half": "top", @@ -191371,7 +206608,7 @@ } }, { - "id": 11120, + "id": 12904, "properties": { "facing": "north", "half": "bottom", @@ -191381,7 +206618,7 @@ }, { "default": true, - "id": 11121, + "id": 12905, "properties": { "facing": "north", "half": "bottom", @@ -191390,7 +206627,7 @@ } }, { - "id": 11122, + "id": 12906, "properties": { "facing": "north", "half": "bottom", @@ -191399,7 +206636,7 @@ } }, { - "id": 11123, + "id": 12907, "properties": { "facing": "north", "half": "bottom", @@ -191408,7 +206645,7 @@ } }, { - "id": 11124, + "id": 12908, "properties": { "facing": "north", "half": "bottom", @@ -191417,7 +206654,7 @@ } }, { - "id": 11125, + "id": 12909, "properties": { "facing": "north", "half": "bottom", @@ -191426,7 +206663,7 @@ } }, { - "id": 11126, + "id": 12910, "properties": { "facing": "north", "half": "bottom", @@ -191435,7 +206672,7 @@ } }, { - "id": 11127, + "id": 12911, "properties": { "facing": "north", "half": "bottom", @@ -191444,7 +206681,7 @@ } }, { - "id": 11128, + "id": 12912, "properties": { "facing": "north", "half": "bottom", @@ -191453,7 +206690,7 @@ } }, { - "id": 11129, + "id": 12913, "properties": { "facing": "north", "half": "bottom", @@ -191462,7 +206699,7 @@ } }, { - "id": 11130, + "id": 12914, "properties": { "facing": "south", "half": "top", @@ -191471,7 +206708,7 @@ } }, { - "id": 11131, + "id": 12915, "properties": { "facing": "south", "half": "top", @@ -191480,7 +206717,7 @@ } }, { - "id": 11132, + "id": 12916, "properties": { "facing": "south", "half": "top", @@ -191489,7 +206726,7 @@ } }, { - "id": 11133, + "id": 12917, "properties": { "facing": "south", "half": "top", @@ -191498,7 +206735,7 @@ } }, { - "id": 11134, + "id": 12918, "properties": { "facing": "south", "half": "top", @@ -191507,7 +206744,7 @@ } }, { - "id": 11135, + "id": 12919, "properties": { "facing": "south", "half": "top", @@ -191516,7 +206753,7 @@ } }, { - "id": 11136, + "id": 12920, "properties": { "facing": "south", "half": "top", @@ -191525,7 +206762,7 @@ } }, { - "id": 11137, + "id": 12921, "properties": { "facing": "south", "half": "top", @@ -191534,7 +206771,7 @@ } }, { - "id": 11138, + "id": 12922, "properties": { "facing": "south", "half": "top", @@ -191543,7 +206780,7 @@ } }, { - "id": 11139, + "id": 12923, "properties": { "facing": "south", "half": "top", @@ -191552,7 +206789,7 @@ } }, { - "id": 11140, + "id": 12924, "properties": { "facing": "south", "half": "bottom", @@ -191561,7 +206798,7 @@ } }, { - "id": 11141, + "id": 12925, "properties": { "facing": "south", "half": "bottom", @@ -191570,7 +206807,7 @@ } }, { - "id": 11142, + "id": 12926, "properties": { "facing": "south", "half": "bottom", @@ -191579,7 +206816,7 @@ } }, { - "id": 11143, + "id": 12927, "properties": { "facing": "south", "half": "bottom", @@ -191588,7 +206825,7 @@ } }, { - "id": 11144, + "id": 12928, "properties": { "facing": "south", "half": "bottom", @@ -191597,7 +206834,7 @@ } }, { - "id": 11145, + "id": 12929, "properties": { "facing": "south", "half": "bottom", @@ -191606,7 +206843,7 @@ } }, { - "id": 11146, + "id": 12930, "properties": { "facing": "south", "half": "bottom", @@ -191615,7 +206852,7 @@ } }, { - "id": 11147, + "id": 12931, "properties": { "facing": "south", "half": "bottom", @@ -191624,7 +206861,7 @@ } }, { - "id": 11148, + "id": 12932, "properties": { "facing": "south", "half": "bottom", @@ -191633,7 +206870,7 @@ } }, { - "id": 11149, + "id": 12933, "properties": { "facing": "south", "half": "bottom", @@ -191642,7 +206879,7 @@ } }, { - "id": 11150, + "id": 12934, "properties": { "facing": "west", "half": "top", @@ -191651,7 +206888,7 @@ } }, { - "id": 11151, + "id": 12935, "properties": { "facing": "west", "half": "top", @@ -191660,7 +206897,7 @@ } }, { - "id": 11152, + "id": 12936, "properties": { "facing": "west", "half": "top", @@ -191669,7 +206906,7 @@ } }, { - "id": 11153, + "id": 12937, "properties": { "facing": "west", "half": "top", @@ -191678,7 +206915,7 @@ } }, { - "id": 11154, + "id": 12938, "properties": { "facing": "west", "half": "top", @@ -191687,7 +206924,7 @@ } }, { - "id": 11155, + "id": 12939, "properties": { "facing": "west", "half": "top", @@ -191696,7 +206933,7 @@ } }, { - "id": 11156, + "id": 12940, "properties": { "facing": "west", "half": "top", @@ -191705,7 +206942,7 @@ } }, { - "id": 11157, + "id": 12941, "properties": { "facing": "west", "half": "top", @@ -191714,7 +206951,7 @@ } }, { - "id": 11158, + "id": 12942, "properties": { "facing": "west", "half": "top", @@ -191723,7 +206960,7 @@ } }, { - "id": 11159, + "id": 12943, "properties": { "facing": "west", "half": "top", @@ -191732,7 +206969,7 @@ } }, { - "id": 11160, + "id": 12944, "properties": { "facing": "west", "half": "bottom", @@ -191741,7 +206978,7 @@ } }, { - "id": 11161, + "id": 12945, "properties": { "facing": "west", "half": "bottom", @@ -191750,7 +206987,7 @@ } }, { - "id": 11162, + "id": 12946, "properties": { "facing": "west", "half": "bottom", @@ -191759,7 +206996,7 @@ } }, { - "id": 11163, + "id": 12947, "properties": { "facing": "west", "half": "bottom", @@ -191768,7 +207005,7 @@ } }, { - "id": 11164, + "id": 12948, "properties": { "facing": "west", "half": "bottom", @@ -191777,7 +207014,7 @@ } }, { - "id": 11165, + "id": 12949, "properties": { "facing": "west", "half": "bottom", @@ -191786,7 +207023,7 @@ } }, { - "id": 11166, + "id": 12950, "properties": { "facing": "west", "half": "bottom", @@ -191795,7 +207032,7 @@ } }, { - "id": 11167, + "id": 12951, "properties": { "facing": "west", "half": "bottom", @@ -191804,7 +207041,7 @@ } }, { - "id": 11168, + "id": 12952, "properties": { "facing": "west", "half": "bottom", @@ -191813,7 +207050,7 @@ } }, { - "id": 11169, + "id": 12953, "properties": { "facing": "west", "half": "bottom", @@ -191822,7 +207059,7 @@ } }, { - "id": 11170, + "id": 12954, "properties": { "facing": "east", "half": "top", @@ -191831,7 +207068,7 @@ } }, { - "id": 11171, + "id": 12955, "properties": { "facing": "east", "half": "top", @@ -191840,7 +207077,7 @@ } }, { - "id": 11172, + "id": 12956, "properties": { "facing": "east", "half": "top", @@ -191849,7 +207086,7 @@ } }, { - "id": 11173, + "id": 12957, "properties": { "facing": "east", "half": "top", @@ -191858,7 +207095,7 @@ } }, { - "id": 11174, + "id": 12958, "properties": { "facing": "east", "half": "top", @@ -191867,7 +207104,7 @@ } }, { - "id": 11175, + "id": 12959, "properties": { "facing": "east", "half": "top", @@ -191876,7 +207113,7 @@ } }, { - "id": 11176, + "id": 12960, "properties": { "facing": "east", "half": "top", @@ -191885,7 +207122,7 @@ } }, { - "id": 11177, + "id": 12961, "properties": { "facing": "east", "half": "top", @@ -191894,7 +207131,7 @@ } }, { - "id": 11178, + "id": 12962, "properties": { "facing": "east", "half": "top", @@ -191903,7 +207140,7 @@ } }, { - "id": 11179, + "id": 12963, "properties": { "facing": "east", "half": "top", @@ -191912,7 +207149,7 @@ } }, { - "id": 11180, + "id": 12964, "properties": { "facing": "east", "half": "bottom", @@ -191921,7 +207158,7 @@ } }, { - "id": 11181, + "id": 12965, "properties": { "facing": "east", "half": "bottom", @@ -191930,7 +207167,7 @@ } }, { - "id": 11182, + "id": 12966, "properties": { "facing": "east", "half": "bottom", @@ -191939,7 +207176,7 @@ } }, { - "id": 11183, + "id": 12967, "properties": { "facing": "east", "half": "bottom", @@ -191948,7 +207185,7 @@ } }, { - "id": 11184, + "id": 12968, "properties": { "facing": "east", "half": "bottom", @@ -191957,7 +207194,7 @@ } }, { - "id": 11185, + "id": 12969, "properties": { "facing": "east", "half": "bottom", @@ -191966,7 +207203,7 @@ } }, { - "id": 11186, + "id": 12970, "properties": { "facing": "east", "half": "bottom", @@ -191975,7 +207212,7 @@ } }, { - "id": 11187, + "id": 12971, "properties": { "facing": "east", "half": "bottom", @@ -191984,7 +207221,7 @@ } }, { - "id": 11188, + "id": 12972, "properties": { "facing": "east", "half": "bottom", @@ -191993,7 +207230,7 @@ } }, { - "id": 11189, + "id": 12973, "properties": { "facing": "east", "half": "bottom", @@ -192007,7 +207244,7 @@ "states": [ { "default": true, - "id": 9167 + "id": 10823 } ] }, @@ -192025,21 +207262,21 @@ }, "states": [ { - "id": 9089, + "id": 10745, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 9090, + "id": 10746, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 9091, + "id": 10747, "properties": { "type": "bottom", "waterlogged": "true" @@ -192047,21 +207284,21 @@ }, { "default": true, - "id": 9092, + "id": 10748, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 9093, + "id": 10749, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 9094, + "id": 10750, "properties": { "type": "double", "waterlogged": "false" @@ -192085,49 +207322,49 @@ "states": [ { "default": true, - "id": 4230, + "id": 5606, "properties": { "layers": "1" } }, { - "id": 4231, + "id": 5607, "properties": { "layers": "2" } }, { - "id": 4232, + "id": 5608, "properties": { "layers": "3" } }, { - "id": 4233, + "id": 5609, "properties": { "layers": "4" } }, { - "id": 4234, + "id": 5610, "properties": { "layers": "5" } }, { - "id": 4235, + "id": 5611, "properties": { "layers": "6" } }, { - "id": 4236, + "id": 5612, "properties": { "layers": "7" } }, { - "id": 4237, + "id": 5613, "properties": { "layers": "8" } @@ -192138,7 +207375,7 @@ "states": [ { "default": true, - "id": 4239 + "id": 5615 } ] }, @@ -192165,7 +207402,7 @@ }, "states": [ { - "id": 16131, + "id": 17915, "properties": { "facing": "north", "lit": "true", @@ -192174,7 +207411,7 @@ } }, { - "id": 16132, + "id": 17916, "properties": { "facing": "north", "lit": "true", @@ -192183,7 +207420,7 @@ } }, { - "id": 16133, + "id": 17917, "properties": { "facing": "north", "lit": "true", @@ -192193,7 +207430,7 @@ }, { "default": true, - "id": 16134, + "id": 17918, "properties": { "facing": "north", "lit": "true", @@ -192202,7 +207439,7 @@ } }, { - "id": 16135, + "id": 17919, "properties": { "facing": "north", "lit": "false", @@ -192211,7 +207448,7 @@ } }, { - "id": 16136, + "id": 17920, "properties": { "facing": "north", "lit": "false", @@ -192220,7 +207457,7 @@ } }, { - "id": 16137, + "id": 17921, "properties": { "facing": "north", "lit": "false", @@ -192229,7 +207466,7 @@ } }, { - "id": 16138, + "id": 17922, "properties": { "facing": "north", "lit": "false", @@ -192238,7 +207475,7 @@ } }, { - "id": 16139, + "id": 17923, "properties": { "facing": "south", "lit": "true", @@ -192247,7 +207484,7 @@ } }, { - "id": 16140, + "id": 17924, "properties": { "facing": "south", "lit": "true", @@ -192256,7 +207493,7 @@ } }, { - "id": 16141, + "id": 17925, "properties": { "facing": "south", "lit": "true", @@ -192265,7 +207502,7 @@ } }, { - "id": 16142, + "id": 17926, "properties": { "facing": "south", "lit": "true", @@ -192274,7 +207511,7 @@ } }, { - "id": 16143, + "id": 17927, "properties": { "facing": "south", "lit": "false", @@ -192283,7 +207520,7 @@ } }, { - "id": 16144, + "id": 17928, "properties": { "facing": "south", "lit": "false", @@ -192292,7 +207529,7 @@ } }, { - "id": 16145, + "id": 17929, "properties": { "facing": "south", "lit": "false", @@ -192301,7 +207538,7 @@ } }, { - "id": 16146, + "id": 17930, "properties": { "facing": "south", "lit": "false", @@ -192310,7 +207547,7 @@ } }, { - "id": 16147, + "id": 17931, "properties": { "facing": "west", "lit": "true", @@ -192319,7 +207556,7 @@ } }, { - "id": 16148, + "id": 17932, "properties": { "facing": "west", "lit": "true", @@ -192328,7 +207565,7 @@ } }, { - "id": 16149, + "id": 17933, "properties": { "facing": "west", "lit": "true", @@ -192337,7 +207574,7 @@ } }, { - "id": 16150, + "id": 17934, "properties": { "facing": "west", "lit": "true", @@ -192346,7 +207583,7 @@ } }, { - "id": 16151, + "id": 17935, "properties": { "facing": "west", "lit": "false", @@ -192355,7 +207592,7 @@ } }, { - "id": 16152, + "id": 17936, "properties": { "facing": "west", "lit": "false", @@ -192364,7 +207601,7 @@ } }, { - "id": 16153, + "id": 17937, "properties": { "facing": "west", "lit": "false", @@ -192373,7 +207610,7 @@ } }, { - "id": 16154, + "id": 17938, "properties": { "facing": "west", "lit": "false", @@ -192382,7 +207619,7 @@ } }, { - "id": 16155, + "id": 17939, "properties": { "facing": "east", "lit": "true", @@ -192391,7 +207628,7 @@ } }, { - "id": 16156, + "id": 17940, "properties": { "facing": "east", "lit": "true", @@ -192400,7 +207637,7 @@ } }, { - "id": 16157, + "id": 17941, "properties": { "facing": "east", "lit": "true", @@ -192409,7 +207646,7 @@ } }, { - "id": 16158, + "id": 17942, "properties": { "facing": "east", "lit": "true", @@ -192418,7 +207655,7 @@ } }, { - "id": 16159, + "id": 17943, "properties": { "facing": "east", "lit": "false", @@ -192427,7 +207664,7 @@ } }, { - "id": 16160, + "id": 17944, "properties": { "facing": "east", "lit": "false", @@ -192436,7 +207673,7 @@ } }, { - "id": 16161, + "id": 17945, "properties": { "facing": "east", "lit": "false", @@ -192445,7 +207682,7 @@ } }, { - "id": 16162, + "id": 17946, "properties": { "facing": "east", "lit": "false", @@ -192459,7 +207696,7 @@ "states": [ { "default": true, - "id": 2206 + "id": 2820 } ] }, @@ -192476,21 +207713,21 @@ }, "states": [ { - "id": 16095, + "id": 17879, "properties": { "hanging": "true", "waterlogged": "true" } }, { - "id": 16096, + "id": 17880, "properties": { "hanging": "true", "waterlogged": "false" } }, { - "id": 16097, + "id": 17881, "properties": { "hanging": "false", "waterlogged": "true" @@ -192498,7 +207735,7 @@ }, { "default": true, - "id": 16098, + "id": 17882, "properties": { "hanging": "false", "waterlogged": "false" @@ -192510,7 +207747,7 @@ "states": [ { "default": true, - "id": 4309 + "id": 5685 } ] }, @@ -192518,7 +207755,7 @@ "states": [ { "default": true, - "id": 4310 + "id": 5686 } ] }, @@ -192526,7 +207763,7 @@ "states": [ { "default": true, - "id": 4317 + "id": 5693 } ] }, @@ -192542,25 +207779,25 @@ "states": [ { "default": true, - "id": 4318, + "id": 5694, "properties": { "facing": "north" } }, { - "id": 4319, + "id": 5695, "properties": { "facing": "south" } }, { - "id": 4320, + "id": 5696, "properties": { "facing": "west" } }, { - "id": 4321, + "id": 5697, "properties": { "facing": "east" } @@ -192571,7 +207808,7 @@ "states": [ { "default": true, - "id": 2207 + "id": 2821 } ] }, @@ -192579,7 +207816,7 @@ "states": [ { "default": true, - "id": 458 + "id": 466 } ] }, @@ -192587,7 +207824,7 @@ "states": [ { "default": true, - "id": 19713 + "id": 21497 } ] }, @@ -192611,7 +207848,7 @@ }, "states": [ { - "id": 6963, + "id": 8403, "properties": { "face": "floor", "facing": "north", @@ -192619,7 +207856,7 @@ } }, { - "id": 6964, + "id": 8404, "properties": { "face": "floor", "facing": "north", @@ -192627,7 +207864,7 @@ } }, { - "id": 6965, + "id": 8405, "properties": { "face": "floor", "facing": "south", @@ -192635,7 +207872,7 @@ } }, { - "id": 6966, + "id": 8406, "properties": { "face": "floor", "facing": "south", @@ -192643,7 +207880,7 @@ } }, { - "id": 6967, + "id": 8407, "properties": { "face": "floor", "facing": "west", @@ -192651,7 +207888,7 @@ } }, { - "id": 6968, + "id": 8408, "properties": { "face": "floor", "facing": "west", @@ -192659,7 +207896,7 @@ } }, { - "id": 6969, + "id": 8409, "properties": { "face": "floor", "facing": "east", @@ -192667,7 +207904,7 @@ } }, { - "id": 6970, + "id": 8410, "properties": { "face": "floor", "facing": "east", @@ -192675,7 +207912,7 @@ } }, { - "id": 6971, + "id": 8411, "properties": { "face": "wall", "facing": "north", @@ -192684,7 +207921,7 @@ }, { "default": true, - "id": 6972, + "id": 8412, "properties": { "face": "wall", "facing": "north", @@ -192692,7 +207929,7 @@ } }, { - "id": 6973, + "id": 8413, "properties": { "face": "wall", "facing": "south", @@ -192700,7 +207937,7 @@ } }, { - "id": 6974, + "id": 8414, "properties": { "face": "wall", "facing": "south", @@ -192708,7 +207945,7 @@ } }, { - "id": 6975, + "id": 8415, "properties": { "face": "wall", "facing": "west", @@ -192716,7 +207953,7 @@ } }, { - "id": 6976, + "id": 8416, "properties": { "face": "wall", "facing": "west", @@ -192724,7 +207961,7 @@ } }, { - "id": 6977, + "id": 8417, "properties": { "face": "wall", "facing": "east", @@ -192732,7 +207969,7 @@ } }, { - "id": 6978, + "id": 8418, "properties": { "face": "wall", "facing": "east", @@ -192740,7 +207977,7 @@ } }, { - "id": 6979, + "id": 8419, "properties": { "face": "ceiling", "facing": "north", @@ -192748,7 +207985,7 @@ } }, { - "id": 6980, + "id": 8420, "properties": { "face": "ceiling", "facing": "north", @@ -192756,7 +207993,7 @@ } }, { - "id": 6981, + "id": 8421, "properties": { "face": "ceiling", "facing": "south", @@ -192764,7 +208001,7 @@ } }, { - "id": 6982, + "id": 8422, "properties": { "face": "ceiling", "facing": "south", @@ -192772,7 +208009,7 @@ } }, { - "id": 6983, + "id": 8423, "properties": { "face": "ceiling", "facing": "west", @@ -192780,7 +208017,7 @@ } }, { - "id": 6984, + "id": 8424, "properties": { "face": "ceiling", "facing": "west", @@ -192788,7 +208025,7 @@ } }, { - "id": 6985, + "id": 8425, "properties": { "face": "ceiling", "facing": "east", @@ -192796,7 +208033,7 @@ } }, { - "id": 6986, + "id": 8426, "properties": { "face": "ceiling", "facing": "east", @@ -192832,7 +208069,7 @@ }, "states": [ { - "id": 9555, + "id": 11275, "properties": { "facing": "north", "half": "upper", @@ -192842,7 +208079,7 @@ } }, { - "id": 9556, + "id": 11276, "properties": { "facing": "north", "half": "upper", @@ -192852,7 +208089,7 @@ } }, { - "id": 9557, + "id": 11277, "properties": { "facing": "north", "half": "upper", @@ -192862,7 +208099,7 @@ } }, { - "id": 9558, + "id": 11278, "properties": { "facing": "north", "half": "upper", @@ -192872,7 +208109,7 @@ } }, { - "id": 9559, + "id": 11279, "properties": { "facing": "north", "half": "upper", @@ -192882,7 +208119,7 @@ } }, { - "id": 9560, + "id": 11280, "properties": { "facing": "north", "half": "upper", @@ -192892,7 +208129,7 @@ } }, { - "id": 9561, + "id": 11281, "properties": { "facing": "north", "half": "upper", @@ -192902,7 +208139,7 @@ } }, { - "id": 9562, + "id": 11282, "properties": { "facing": "north", "half": "upper", @@ -192912,7 +208149,7 @@ } }, { - "id": 9563, + "id": 11283, "properties": { "facing": "north", "half": "lower", @@ -192922,7 +208159,7 @@ } }, { - "id": 9564, + "id": 11284, "properties": { "facing": "north", "half": "lower", @@ -192932,7 +208169,7 @@ } }, { - "id": 9565, + "id": 11285, "properties": { "facing": "north", "half": "lower", @@ -192943,7 +208180,7 @@ }, { "default": true, - "id": 9566, + "id": 11286, "properties": { "facing": "north", "half": "lower", @@ -192953,7 +208190,7 @@ } }, { - "id": 9567, + "id": 11287, "properties": { "facing": "north", "half": "lower", @@ -192963,7 +208200,7 @@ } }, { - "id": 9568, + "id": 11288, "properties": { "facing": "north", "half": "lower", @@ -192973,7 +208210,7 @@ } }, { - "id": 9569, + "id": 11289, "properties": { "facing": "north", "half": "lower", @@ -192983,7 +208220,7 @@ } }, { - "id": 9570, + "id": 11290, "properties": { "facing": "north", "half": "lower", @@ -192993,7 +208230,7 @@ } }, { - "id": 9571, + "id": 11291, "properties": { "facing": "south", "half": "upper", @@ -193003,7 +208240,7 @@ } }, { - "id": 9572, + "id": 11292, "properties": { "facing": "south", "half": "upper", @@ -193013,7 +208250,7 @@ } }, { - "id": 9573, + "id": 11293, "properties": { "facing": "south", "half": "upper", @@ -193023,7 +208260,7 @@ } }, { - "id": 9574, + "id": 11294, "properties": { "facing": "south", "half": "upper", @@ -193033,7 +208270,7 @@ } }, { - "id": 9575, + "id": 11295, "properties": { "facing": "south", "half": "upper", @@ -193043,7 +208280,7 @@ } }, { - "id": 9576, + "id": 11296, "properties": { "facing": "south", "half": "upper", @@ -193053,7 +208290,7 @@ } }, { - "id": 9577, + "id": 11297, "properties": { "facing": "south", "half": "upper", @@ -193063,7 +208300,7 @@ } }, { - "id": 9578, + "id": 11298, "properties": { "facing": "south", "half": "upper", @@ -193073,7 +208310,7 @@ } }, { - "id": 9579, + "id": 11299, "properties": { "facing": "south", "half": "lower", @@ -193083,7 +208320,7 @@ } }, { - "id": 9580, + "id": 11300, "properties": { "facing": "south", "half": "lower", @@ -193093,7 +208330,7 @@ } }, { - "id": 9581, + "id": 11301, "properties": { "facing": "south", "half": "lower", @@ -193103,7 +208340,7 @@ } }, { - "id": 9582, + "id": 11302, "properties": { "facing": "south", "half": "lower", @@ -193113,7 +208350,7 @@ } }, { - "id": 9583, + "id": 11303, "properties": { "facing": "south", "half": "lower", @@ -193123,7 +208360,7 @@ } }, { - "id": 9584, + "id": 11304, "properties": { "facing": "south", "half": "lower", @@ -193133,7 +208370,7 @@ } }, { - "id": 9585, + "id": 11305, "properties": { "facing": "south", "half": "lower", @@ -193143,7 +208380,7 @@ } }, { - "id": 9586, + "id": 11306, "properties": { "facing": "south", "half": "lower", @@ -193153,7 +208390,7 @@ } }, { - "id": 9587, + "id": 11307, "properties": { "facing": "west", "half": "upper", @@ -193163,7 +208400,7 @@ } }, { - "id": 9588, + "id": 11308, "properties": { "facing": "west", "half": "upper", @@ -193173,7 +208410,7 @@ } }, { - "id": 9589, + "id": 11309, "properties": { "facing": "west", "half": "upper", @@ -193183,7 +208420,7 @@ } }, { - "id": 9590, + "id": 11310, "properties": { "facing": "west", "half": "upper", @@ -193193,7 +208430,7 @@ } }, { - "id": 9591, + "id": 11311, "properties": { "facing": "west", "half": "upper", @@ -193203,7 +208440,7 @@ } }, { - "id": 9592, + "id": 11312, "properties": { "facing": "west", "half": "upper", @@ -193213,7 +208450,7 @@ } }, { - "id": 9593, + "id": 11313, "properties": { "facing": "west", "half": "upper", @@ -193223,7 +208460,7 @@ } }, { - "id": 9594, + "id": 11314, "properties": { "facing": "west", "half": "upper", @@ -193233,7 +208470,7 @@ } }, { - "id": 9595, + "id": 11315, "properties": { "facing": "west", "half": "lower", @@ -193243,7 +208480,7 @@ } }, { - "id": 9596, + "id": 11316, "properties": { "facing": "west", "half": "lower", @@ -193253,7 +208490,7 @@ } }, { - "id": 9597, + "id": 11317, "properties": { "facing": "west", "half": "lower", @@ -193263,7 +208500,7 @@ } }, { - "id": 9598, + "id": 11318, "properties": { "facing": "west", "half": "lower", @@ -193273,7 +208510,7 @@ } }, { - "id": 9599, + "id": 11319, "properties": { "facing": "west", "half": "lower", @@ -193283,7 +208520,7 @@ } }, { - "id": 9600, + "id": 11320, "properties": { "facing": "west", "half": "lower", @@ -193293,7 +208530,7 @@ } }, { - "id": 9601, + "id": 11321, "properties": { "facing": "west", "half": "lower", @@ -193303,7 +208540,7 @@ } }, { - "id": 9602, + "id": 11322, "properties": { "facing": "west", "half": "lower", @@ -193313,7 +208550,7 @@ } }, { - "id": 9603, + "id": 11323, "properties": { "facing": "east", "half": "upper", @@ -193323,7 +208560,7 @@ } }, { - "id": 9604, + "id": 11324, "properties": { "facing": "east", "half": "upper", @@ -193333,7 +208570,7 @@ } }, { - "id": 9605, + "id": 11325, "properties": { "facing": "east", "half": "upper", @@ -193343,7 +208580,7 @@ } }, { - "id": 9606, + "id": 11326, "properties": { "facing": "east", "half": "upper", @@ -193353,7 +208590,7 @@ } }, { - "id": 9607, + "id": 11327, "properties": { "facing": "east", "half": "upper", @@ -193363,7 +208600,7 @@ } }, { - "id": 9608, + "id": 11328, "properties": { "facing": "east", "half": "upper", @@ -193373,7 +208610,7 @@ } }, { - "id": 9609, + "id": 11329, "properties": { "facing": "east", "half": "upper", @@ -193383,7 +208620,7 @@ } }, { - "id": 9610, + "id": 11330, "properties": { "facing": "east", "half": "upper", @@ -193393,7 +208630,7 @@ } }, { - "id": 9611, + "id": 11331, "properties": { "facing": "east", "half": "lower", @@ -193403,7 +208640,7 @@ } }, { - "id": 9612, + "id": 11332, "properties": { "facing": "east", "half": "lower", @@ -193413,7 +208650,7 @@ } }, { - "id": 9613, + "id": 11333, "properties": { "facing": "east", "half": "lower", @@ -193423,7 +208660,7 @@ } }, { - "id": 9614, + "id": 11334, "properties": { "facing": "east", "half": "lower", @@ -193433,7 +208670,7 @@ } }, { - "id": 9615, + "id": 11335, "properties": { "facing": "east", "half": "lower", @@ -193443,7 +208680,7 @@ } }, { - "id": 9616, + "id": 11336, "properties": { "facing": "east", "half": "lower", @@ -193453,7 +208690,7 @@ } }, { - "id": 9617, + "id": 11337, "properties": { "facing": "east", "half": "lower", @@ -193463,7 +208700,7 @@ } }, { - "id": 9618, + "id": 11338, "properties": { "facing": "east", "half": "lower", @@ -193499,7 +208736,7 @@ }, "states": [ { - "id": 9363, + "id": 11051, "properties": { "east": "true", "north": "true", @@ -193509,7 +208746,7 @@ } }, { - "id": 9364, + "id": 11052, "properties": { "east": "true", "north": "true", @@ -193519,7 +208756,7 @@ } }, { - "id": 9365, + "id": 11053, "properties": { "east": "true", "north": "true", @@ -193529,7 +208766,7 @@ } }, { - "id": 9366, + "id": 11054, "properties": { "east": "true", "north": "true", @@ -193539,7 +208776,7 @@ } }, { - "id": 9367, + "id": 11055, "properties": { "east": "true", "north": "true", @@ -193549,7 +208786,7 @@ } }, { - "id": 9368, + "id": 11056, "properties": { "east": "true", "north": "true", @@ -193559,7 +208796,7 @@ } }, { - "id": 9369, + "id": 11057, "properties": { "east": "true", "north": "true", @@ -193569,7 +208806,7 @@ } }, { - "id": 9370, + "id": 11058, "properties": { "east": "true", "north": "true", @@ -193579,7 +208816,7 @@ } }, { - "id": 9371, + "id": 11059, "properties": { "east": "true", "north": "false", @@ -193589,7 +208826,7 @@ } }, { - "id": 9372, + "id": 11060, "properties": { "east": "true", "north": "false", @@ -193599,7 +208836,7 @@ } }, { - "id": 9373, + "id": 11061, "properties": { "east": "true", "north": "false", @@ -193609,7 +208846,7 @@ } }, { - "id": 9374, + "id": 11062, "properties": { "east": "true", "north": "false", @@ -193619,7 +208856,7 @@ } }, { - "id": 9375, + "id": 11063, "properties": { "east": "true", "north": "false", @@ -193629,7 +208866,7 @@ } }, { - "id": 9376, + "id": 11064, "properties": { "east": "true", "north": "false", @@ -193639,7 +208876,7 @@ } }, { - "id": 9377, + "id": 11065, "properties": { "east": "true", "north": "false", @@ -193649,7 +208886,7 @@ } }, { - "id": 9378, + "id": 11066, "properties": { "east": "true", "north": "false", @@ -193659,7 +208896,7 @@ } }, { - "id": 9379, + "id": 11067, "properties": { "east": "false", "north": "true", @@ -193669,7 +208906,7 @@ } }, { - "id": 9380, + "id": 11068, "properties": { "east": "false", "north": "true", @@ -193679,7 +208916,7 @@ } }, { - "id": 9381, + "id": 11069, "properties": { "east": "false", "north": "true", @@ -193689,7 +208926,7 @@ } }, { - "id": 9382, + "id": 11070, "properties": { "east": "false", "north": "true", @@ -193699,7 +208936,7 @@ } }, { - "id": 9383, + "id": 11071, "properties": { "east": "false", "north": "true", @@ -193709,7 +208946,7 @@ } }, { - "id": 9384, + "id": 11072, "properties": { "east": "false", "north": "true", @@ -193719,7 +208956,7 @@ } }, { - "id": 9385, + "id": 11073, "properties": { "east": "false", "north": "true", @@ -193729,7 +208966,7 @@ } }, { - "id": 9386, + "id": 11074, "properties": { "east": "false", "north": "true", @@ -193739,7 +208976,7 @@ } }, { - "id": 9387, + "id": 11075, "properties": { "east": "false", "north": "false", @@ -193749,7 +208986,7 @@ } }, { - "id": 9388, + "id": 11076, "properties": { "east": "false", "north": "false", @@ -193759,7 +208996,7 @@ } }, { - "id": 9389, + "id": 11077, "properties": { "east": "false", "north": "false", @@ -193769,7 +209006,7 @@ } }, { - "id": 9390, + "id": 11078, "properties": { "east": "false", "north": "false", @@ -193779,7 +209016,7 @@ } }, { - "id": 9391, + "id": 11079, "properties": { "east": "false", "north": "false", @@ -193789,7 +209026,7 @@ } }, { - "id": 9392, + "id": 11080, "properties": { "east": "false", "north": "false", @@ -193799,7 +209036,7 @@ } }, { - "id": 9393, + "id": 11081, "properties": { "east": "false", "north": "false", @@ -193810,7 +209047,7 @@ }, { "default": true, - "id": 9394, + "id": 11082, "properties": { "east": "false", "north": "false", @@ -193844,7 +209081,7 @@ }, "states": [ { - "id": 9171, + "id": 10827, "properties": { "facing": "north", "in_wall": "true", @@ -193853,7 +209090,7 @@ } }, { - "id": 9172, + "id": 10828, "properties": { "facing": "north", "in_wall": "true", @@ -193862,7 +209099,7 @@ } }, { - "id": 9173, + "id": 10829, "properties": { "facing": "north", "in_wall": "true", @@ -193871,7 +209108,7 @@ } }, { - "id": 9174, + "id": 10830, "properties": { "facing": "north", "in_wall": "true", @@ -193880,7 +209117,7 @@ } }, { - "id": 9175, + "id": 10831, "properties": { "facing": "north", "in_wall": "false", @@ -193889,7 +209126,7 @@ } }, { - "id": 9176, + "id": 10832, "properties": { "facing": "north", "in_wall": "false", @@ -193898,7 +209135,7 @@ } }, { - "id": 9177, + "id": 10833, "properties": { "facing": "north", "in_wall": "false", @@ -193908,7 +209145,7 @@ }, { "default": true, - "id": 9178, + "id": 10834, "properties": { "facing": "north", "in_wall": "false", @@ -193917,7 +209154,7 @@ } }, { - "id": 9179, + "id": 10835, "properties": { "facing": "south", "in_wall": "true", @@ -193926,7 +209163,7 @@ } }, { - "id": 9180, + "id": 10836, "properties": { "facing": "south", "in_wall": "true", @@ -193935,7 +209172,7 @@ } }, { - "id": 9181, + "id": 10837, "properties": { "facing": "south", "in_wall": "true", @@ -193944,7 +209181,7 @@ } }, { - "id": 9182, + "id": 10838, "properties": { "facing": "south", "in_wall": "true", @@ -193953,7 +209190,7 @@ } }, { - "id": 9183, + "id": 10839, "properties": { "facing": "south", "in_wall": "false", @@ -193962,7 +209199,7 @@ } }, { - "id": 9184, + "id": 10840, "properties": { "facing": "south", "in_wall": "false", @@ -193971,7 +209208,7 @@ } }, { - "id": 9185, + "id": 10841, "properties": { "facing": "south", "in_wall": "false", @@ -193980,7 +209217,7 @@ } }, { - "id": 9186, + "id": 10842, "properties": { "facing": "south", "in_wall": "false", @@ -193989,7 +209226,7 @@ } }, { - "id": 9187, + "id": 10843, "properties": { "facing": "west", "in_wall": "true", @@ -193998,7 +209235,7 @@ } }, { - "id": 9188, + "id": 10844, "properties": { "facing": "west", "in_wall": "true", @@ -194007,7 +209244,7 @@ } }, { - "id": 9189, + "id": 10845, "properties": { "facing": "west", "in_wall": "true", @@ -194016,7 +209253,7 @@ } }, { - "id": 9190, + "id": 10846, "properties": { "facing": "west", "in_wall": "true", @@ -194025,7 +209262,7 @@ } }, { - "id": 9191, + "id": 10847, "properties": { "facing": "west", "in_wall": "false", @@ -194034,7 +209271,7 @@ } }, { - "id": 9192, + "id": 10848, "properties": { "facing": "west", "in_wall": "false", @@ -194043,7 +209280,7 @@ } }, { - "id": 9193, + "id": 10849, "properties": { "facing": "west", "in_wall": "false", @@ -194052,7 +209289,7 @@ } }, { - "id": 9194, + "id": 10850, "properties": { "facing": "west", "in_wall": "false", @@ -194061,7 +209298,7 @@ } }, { - "id": 9195, + "id": 10851, "properties": { "facing": "east", "in_wall": "true", @@ -194070,7 +209307,7 @@ } }, { - "id": 9196, + "id": 10852, "properties": { "facing": "east", "in_wall": "true", @@ -194079,7 +209316,7 @@ } }, { - "id": 9197, + "id": 10853, "properties": { "facing": "east", "in_wall": "true", @@ -194088,7 +209325,7 @@ } }, { - "id": 9198, + "id": 10854, "properties": { "facing": "east", "in_wall": "true", @@ -194097,7 +209334,7 @@ } }, { - "id": 9199, + "id": 10855, "properties": { "facing": "east", "in_wall": "false", @@ -194106,7 +209343,7 @@ } }, { - "id": 9200, + "id": 10856, "properties": { "facing": "east", "in_wall": "false", @@ -194115,7 +209352,7 @@ } }, { - "id": 9201, + "id": 10857, "properties": { "facing": "east", "in_wall": "false", @@ -194124,7 +209361,7 @@ } }, { - "id": 9202, + "id": 10858, "properties": { "facing": "east", "in_wall": "false", @@ -194134,6 +209371,551 @@ } ] }, + "minecraft:spruce_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4806, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 4807, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4808, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4809, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4810, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4811, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4812, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4813, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4814, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4815, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4816, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4817, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4818, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4819, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4820, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4821, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4822, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4823, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4824, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4825, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4826, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4827, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4828, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4829, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4830, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4831, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4832, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4833, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4834, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4835, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4836, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4837, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 4838, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4839, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4840, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4841, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4842, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4843, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4844, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4845, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4846, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4847, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4848, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4849, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4850, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4851, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4852, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4853, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4854, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4855, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4856, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4857, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4858, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4859, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4860, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4861, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4862, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4863, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4864, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4865, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4866, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4867, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4868, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4869, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, "minecraft:spruce_leaves": { "properties": { "distance": [ @@ -194155,74 +209937,10 @@ ] }, "states": [ - { - "id": 234, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 235, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 236, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 237, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 238, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 239, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 240, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 241, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, { "id": 242, "properties": { - "distance": "3", + "distance": "1", "persistent": "true", "waterlogged": "true" } @@ -194230,7 +209948,7 @@ { "id": 243, "properties": { - "distance": "3", + "distance": "1", "persistent": "true", "waterlogged": "false" } @@ -194238,7 +209956,7 @@ { "id": 244, "properties": { - "distance": "3", + "distance": "1", "persistent": "false", "waterlogged": "true" } @@ -194246,7 +209964,7 @@ { "id": 245, "properties": { - "distance": "3", + "distance": "1", "persistent": "false", "waterlogged": "false" } @@ -194254,7 +209972,7 @@ { "id": 246, "properties": { - "distance": "4", + "distance": "2", "persistent": "true", "waterlogged": "true" } @@ -194262,7 +209980,7 @@ { "id": 247, "properties": { - "distance": "4", + "distance": "2", "persistent": "true", "waterlogged": "false" } @@ -194270,7 +209988,7 @@ { "id": 248, "properties": { - "distance": "4", + "distance": "2", "persistent": "false", "waterlogged": "true" } @@ -194278,7 +209996,7 @@ { "id": 249, "properties": { - "distance": "4", + "distance": "2", "persistent": "false", "waterlogged": "false" } @@ -194286,7 +210004,7 @@ { "id": 250, "properties": { - "distance": "5", + "distance": "3", "persistent": "true", "waterlogged": "true" } @@ -194294,7 +210012,7 @@ { "id": 251, "properties": { - "distance": "5", + "distance": "3", "persistent": "true", "waterlogged": "false" } @@ -194302,7 +210020,7 @@ { "id": 252, "properties": { - "distance": "5", + "distance": "3", "persistent": "false", "waterlogged": "true" } @@ -194310,7 +210028,7 @@ { "id": 253, "properties": { - "distance": "5", + "distance": "3", "persistent": "false", "waterlogged": "false" } @@ -194318,7 +210036,7 @@ { "id": 254, "properties": { - "distance": "6", + "distance": "4", "persistent": "true", "waterlogged": "true" } @@ -194326,7 +210044,7 @@ { "id": 255, "properties": { - "distance": "6", + "distance": "4", "persistent": "true", "waterlogged": "false" } @@ -194334,7 +210052,7 @@ { "id": 256, "properties": { - "distance": "6", + "distance": "4", "persistent": "false", "waterlogged": "true" } @@ -194342,7 +210060,7 @@ { "id": 257, "properties": { - "distance": "6", + "distance": "4", "persistent": "false", "waterlogged": "false" } @@ -194350,7 +210068,7 @@ { "id": 258, "properties": { - "distance": "7", + "distance": "5", "persistent": "true", "waterlogged": "true" } @@ -194358,13 +210076,77 @@ { "id": 259, "properties": { - "distance": "7", + "distance": "5", "persistent": "true", "waterlogged": "false" } }, { "id": 260, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 261, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 262, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 263, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 264, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 265, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 266, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 267, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 268, "properties": { "distance": "7", "persistent": "false", @@ -194373,7 +210155,7 @@ }, { "default": true, - "id": 261, + "id": 269, "properties": { "distance": "7", "persistent": "false", @@ -194392,20 +210174,20 @@ }, "states": [ { - "id": 120, + "id": 122, "properties": { "axis": "x" } }, { "default": true, - "id": 121, + "id": 123, "properties": { "axis": "y" } }, { - "id": 122, + "id": 124, "properties": { "axis": "z" } @@ -194429,14 +210211,14 @@ }, "states": [ { - "id": 4180, + "id": 5554, "properties": { "powered": "true" } }, { "default": true, - "id": 4181, + "id": 5555, "properties": { "powered": "false" } @@ -194453,13 +210235,13 @@ "states": [ { "default": true, - "id": 24, + "id": 26, "properties": { "stage": "0" } }, { - "id": 25, + "id": 27, "properties": { "stage": "1" } @@ -194493,7 +210275,7 @@ }, "states": [ { - "id": 3668, + "id": 4282, "properties": { "rotation": "0", "waterlogged": "true" @@ -194501,217 +210283,217 @@ }, { "default": true, - "id": 3669, + "id": 4283, "properties": { "rotation": "0", "waterlogged": "false" } }, { - "id": 3670, + "id": 4284, "properties": { "rotation": "1", "waterlogged": "true" } }, { - "id": 3671, + "id": 4285, "properties": { "rotation": "1", "waterlogged": "false" } }, { - "id": 3672, + "id": 4286, "properties": { "rotation": "2", "waterlogged": "true" } }, { - "id": 3673, + "id": 4287, "properties": { "rotation": "2", "waterlogged": "false" } }, { - "id": 3674, + "id": 4288, "properties": { "rotation": "3", "waterlogged": "true" } }, { - "id": 3675, + "id": 4289, "properties": { "rotation": "3", "waterlogged": "false" } }, { - "id": 3676, + "id": 4290, "properties": { "rotation": "4", "waterlogged": "true" } }, { - "id": 3677, + "id": 4291, "properties": { "rotation": "4", "waterlogged": "false" } }, { - "id": 3678, + "id": 4292, "properties": { "rotation": "5", "waterlogged": "true" } }, { - "id": 3679, + "id": 4293, "properties": { "rotation": "5", "waterlogged": "false" } }, { - "id": 3680, + "id": 4294, "properties": { "rotation": "6", "waterlogged": "true" } }, { - "id": 3681, + "id": 4295, "properties": { "rotation": "6", "waterlogged": "false" } }, { - "id": 3682, + "id": 4296, "properties": { "rotation": "7", "waterlogged": "true" } }, { - "id": 3683, + "id": 4297, "properties": { "rotation": "7", "waterlogged": "false" } }, { - "id": 3684, + "id": 4298, "properties": { "rotation": "8", "waterlogged": "true" } }, { - "id": 3685, + "id": 4299, "properties": { "rotation": "8", "waterlogged": "false" } }, { - "id": 3686, + "id": 4300, "properties": { "rotation": "9", "waterlogged": "true" } }, { - "id": 3687, + "id": 4301, "properties": { "rotation": "9", "waterlogged": "false" } }, { - "id": 3688, + "id": 4302, "properties": { "rotation": "10", "waterlogged": "true" } }, { - "id": 3689, + "id": 4303, "properties": { "rotation": "10", "waterlogged": "false" } }, { - "id": 3690, + "id": 4304, "properties": { "rotation": "11", "waterlogged": "true" } }, { - "id": 3691, + "id": 4305, "properties": { "rotation": "11", "waterlogged": "false" } }, { - "id": 3692, + "id": 4306, "properties": { "rotation": "12", "waterlogged": "true" } }, { - "id": 3693, + "id": 4307, "properties": { "rotation": "12", "waterlogged": "false" } }, { - "id": 3694, + "id": 4308, "properties": { "rotation": "13", "waterlogged": "true" } }, { - "id": 3695, + "id": 4309, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 3696, + "id": 4310, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 3697, + "id": 4311, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 3698, + "id": 4312, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 3699, + "id": 4313, "properties": { "rotation": "15", "waterlogged": "false" @@ -194733,21 +210515,21 @@ }, "states": [ { - "id": 9047, + "id": 10691, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 9048, + "id": 10692, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 9049, + "id": 10693, "properties": { "type": "bottom", "waterlogged": "true" @@ -194755,21 +210537,21 @@ }, { "default": true, - "id": 9050, + "id": 10694, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 9051, + "id": 10695, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 9052, + "id": 10696, "properties": { "type": "double", "waterlogged": "false" @@ -194803,7 +210585,7 @@ }, "states": [ { - "id": 5996, + "id": 7436, "properties": { "facing": "north", "half": "top", @@ -194812,7 +210594,7 @@ } }, { - "id": 5997, + "id": 7437, "properties": { "facing": "north", "half": "top", @@ -194821,7 +210603,7 @@ } }, { - "id": 5998, + "id": 7438, "properties": { "facing": "north", "half": "top", @@ -194830,7 +210612,7 @@ } }, { - "id": 5999, + "id": 7439, "properties": { "facing": "north", "half": "top", @@ -194839,7 +210621,7 @@ } }, { - "id": 6000, + "id": 7440, "properties": { "facing": "north", "half": "top", @@ -194848,7 +210630,7 @@ } }, { - "id": 6001, + "id": 7441, "properties": { "facing": "north", "half": "top", @@ -194857,7 +210639,7 @@ } }, { - "id": 6002, + "id": 7442, "properties": { "facing": "north", "half": "top", @@ -194866,7 +210648,7 @@ } }, { - "id": 6003, + "id": 7443, "properties": { "facing": "north", "half": "top", @@ -194875,7 +210657,7 @@ } }, { - "id": 6004, + "id": 7444, "properties": { "facing": "north", "half": "top", @@ -194884,7 +210666,7 @@ } }, { - "id": 6005, + "id": 7445, "properties": { "facing": "north", "half": "top", @@ -194893,7 +210675,7 @@ } }, { - "id": 6006, + "id": 7446, "properties": { "facing": "north", "half": "bottom", @@ -194903,7 +210685,7 @@ }, { "default": true, - "id": 6007, + "id": 7447, "properties": { "facing": "north", "half": "bottom", @@ -194912,7 +210694,7 @@ } }, { - "id": 6008, + "id": 7448, "properties": { "facing": "north", "half": "bottom", @@ -194921,7 +210703,7 @@ } }, { - "id": 6009, + "id": 7449, "properties": { "facing": "north", "half": "bottom", @@ -194930,7 +210712,7 @@ } }, { - "id": 6010, + "id": 7450, "properties": { "facing": "north", "half": "bottom", @@ -194939,7 +210721,7 @@ } }, { - "id": 6011, + "id": 7451, "properties": { "facing": "north", "half": "bottom", @@ -194948,7 +210730,7 @@ } }, { - "id": 6012, + "id": 7452, "properties": { "facing": "north", "half": "bottom", @@ -194957,7 +210739,7 @@ } }, { - "id": 6013, + "id": 7453, "properties": { "facing": "north", "half": "bottom", @@ -194966,7 +210748,7 @@ } }, { - "id": 6014, + "id": 7454, "properties": { "facing": "north", "half": "bottom", @@ -194975,7 +210757,7 @@ } }, { - "id": 6015, + "id": 7455, "properties": { "facing": "north", "half": "bottom", @@ -194984,7 +210766,7 @@ } }, { - "id": 6016, + "id": 7456, "properties": { "facing": "south", "half": "top", @@ -194993,7 +210775,7 @@ } }, { - "id": 6017, + "id": 7457, "properties": { "facing": "south", "half": "top", @@ -195002,7 +210784,7 @@ } }, { - "id": 6018, + "id": 7458, "properties": { "facing": "south", "half": "top", @@ -195011,7 +210793,7 @@ } }, { - "id": 6019, + "id": 7459, "properties": { "facing": "south", "half": "top", @@ -195020,7 +210802,7 @@ } }, { - "id": 6020, + "id": 7460, "properties": { "facing": "south", "half": "top", @@ -195029,7 +210811,7 @@ } }, { - "id": 6021, + "id": 7461, "properties": { "facing": "south", "half": "top", @@ -195038,7 +210820,7 @@ } }, { - "id": 6022, + "id": 7462, "properties": { "facing": "south", "half": "top", @@ -195047,7 +210829,7 @@ } }, { - "id": 6023, + "id": 7463, "properties": { "facing": "south", "half": "top", @@ -195056,7 +210838,7 @@ } }, { - "id": 6024, + "id": 7464, "properties": { "facing": "south", "half": "top", @@ -195065,7 +210847,7 @@ } }, { - "id": 6025, + "id": 7465, "properties": { "facing": "south", "half": "top", @@ -195074,7 +210856,7 @@ } }, { - "id": 6026, + "id": 7466, "properties": { "facing": "south", "half": "bottom", @@ -195083,7 +210865,7 @@ } }, { - "id": 6027, + "id": 7467, "properties": { "facing": "south", "half": "bottom", @@ -195092,7 +210874,7 @@ } }, { - "id": 6028, + "id": 7468, "properties": { "facing": "south", "half": "bottom", @@ -195101,7 +210883,7 @@ } }, { - "id": 6029, + "id": 7469, "properties": { "facing": "south", "half": "bottom", @@ -195110,7 +210892,7 @@ } }, { - "id": 6030, + "id": 7470, "properties": { "facing": "south", "half": "bottom", @@ -195119,7 +210901,7 @@ } }, { - "id": 6031, + "id": 7471, "properties": { "facing": "south", "half": "bottom", @@ -195128,7 +210910,7 @@ } }, { - "id": 6032, + "id": 7472, "properties": { "facing": "south", "half": "bottom", @@ -195137,7 +210919,7 @@ } }, { - "id": 6033, + "id": 7473, "properties": { "facing": "south", "half": "bottom", @@ -195146,7 +210928,7 @@ } }, { - "id": 6034, + "id": 7474, "properties": { "facing": "south", "half": "bottom", @@ -195155,7 +210937,7 @@ } }, { - "id": 6035, + "id": 7475, "properties": { "facing": "south", "half": "bottom", @@ -195164,7 +210946,7 @@ } }, { - "id": 6036, + "id": 7476, "properties": { "facing": "west", "half": "top", @@ -195173,7 +210955,7 @@ } }, { - "id": 6037, + "id": 7477, "properties": { "facing": "west", "half": "top", @@ -195182,7 +210964,7 @@ } }, { - "id": 6038, + "id": 7478, "properties": { "facing": "west", "half": "top", @@ -195191,7 +210973,7 @@ } }, { - "id": 6039, + "id": 7479, "properties": { "facing": "west", "half": "top", @@ -195200,7 +210982,7 @@ } }, { - "id": 6040, + "id": 7480, "properties": { "facing": "west", "half": "top", @@ -195209,7 +210991,7 @@ } }, { - "id": 6041, + "id": 7481, "properties": { "facing": "west", "half": "top", @@ -195218,7 +211000,7 @@ } }, { - "id": 6042, + "id": 7482, "properties": { "facing": "west", "half": "top", @@ -195227,7 +211009,7 @@ } }, { - "id": 6043, + "id": 7483, "properties": { "facing": "west", "half": "top", @@ -195236,7 +211018,7 @@ } }, { - "id": 6044, + "id": 7484, "properties": { "facing": "west", "half": "top", @@ -195245,7 +211027,7 @@ } }, { - "id": 6045, + "id": 7485, "properties": { "facing": "west", "half": "top", @@ -195254,7 +211036,7 @@ } }, { - "id": 6046, + "id": 7486, "properties": { "facing": "west", "half": "bottom", @@ -195263,7 +211045,7 @@ } }, { - "id": 6047, + "id": 7487, "properties": { "facing": "west", "half": "bottom", @@ -195272,7 +211054,7 @@ } }, { - "id": 6048, + "id": 7488, "properties": { "facing": "west", "half": "bottom", @@ -195281,7 +211063,7 @@ } }, { - "id": 6049, + "id": 7489, "properties": { "facing": "west", "half": "bottom", @@ -195290,7 +211072,7 @@ } }, { - "id": 6050, + "id": 7490, "properties": { "facing": "west", "half": "bottom", @@ -195299,7 +211081,7 @@ } }, { - "id": 6051, + "id": 7491, "properties": { "facing": "west", "half": "bottom", @@ -195308,7 +211090,7 @@ } }, { - "id": 6052, + "id": 7492, "properties": { "facing": "west", "half": "bottom", @@ -195317,7 +211099,7 @@ } }, { - "id": 6053, + "id": 7493, "properties": { "facing": "west", "half": "bottom", @@ -195326,7 +211108,7 @@ } }, { - "id": 6054, + "id": 7494, "properties": { "facing": "west", "half": "bottom", @@ -195335,7 +211117,7 @@ } }, { - "id": 6055, + "id": 7495, "properties": { "facing": "west", "half": "bottom", @@ -195344,7 +211126,7 @@ } }, { - "id": 6056, + "id": 7496, "properties": { "facing": "east", "half": "top", @@ -195353,7 +211135,7 @@ } }, { - "id": 6057, + "id": 7497, "properties": { "facing": "east", "half": "top", @@ -195362,7 +211144,7 @@ } }, { - "id": 6058, + "id": 7498, "properties": { "facing": "east", "half": "top", @@ -195371,7 +211153,7 @@ } }, { - "id": 6059, + "id": 7499, "properties": { "facing": "east", "half": "top", @@ -195380,7 +211162,7 @@ } }, { - "id": 6060, + "id": 7500, "properties": { "facing": "east", "half": "top", @@ -195389,7 +211171,7 @@ } }, { - "id": 6061, + "id": 7501, "properties": { "facing": "east", "half": "top", @@ -195398,7 +211180,7 @@ } }, { - "id": 6062, + "id": 7502, "properties": { "facing": "east", "half": "top", @@ -195407,7 +211189,7 @@ } }, { - "id": 6063, + "id": 7503, "properties": { "facing": "east", "half": "top", @@ -195416,7 +211198,7 @@ } }, { - "id": 6064, + "id": 7504, "properties": { "facing": "east", "half": "top", @@ -195425,7 +211207,7 @@ } }, { - "id": 6065, + "id": 7505, "properties": { "facing": "east", "half": "top", @@ -195434,7 +211216,7 @@ } }, { - "id": 6066, + "id": 7506, "properties": { "facing": "east", "half": "bottom", @@ -195443,7 +211225,7 @@ } }, { - "id": 6067, + "id": 7507, "properties": { "facing": "east", "half": "bottom", @@ -195452,7 +211234,7 @@ } }, { - "id": 6068, + "id": 7508, "properties": { "facing": "east", "half": "bottom", @@ -195461,7 +211243,7 @@ } }, { - "id": 6069, + "id": 7509, "properties": { "facing": "east", "half": "bottom", @@ -195470,7 +211252,7 @@ } }, { - "id": 6070, + "id": 7510, "properties": { "facing": "east", "half": "bottom", @@ -195479,7 +211261,7 @@ } }, { - "id": 6071, + "id": 7511, "properties": { "facing": "east", "half": "bottom", @@ -195488,7 +211270,7 @@ } }, { - "id": 6072, + "id": 7512, "properties": { "facing": "east", "half": "bottom", @@ -195497,7 +211279,7 @@ } }, { - "id": 6073, + "id": 7513, "properties": { "facing": "east", "half": "bottom", @@ -195506,7 +211288,7 @@ } }, { - "id": 6074, + "id": 7514, "properties": { "facing": "east", "half": "bottom", @@ -195515,7 +211297,7 @@ } }, { - "id": 6075, + "id": 7515, "properties": { "facing": "east", "half": "bottom", @@ -195552,7 +211334,7 @@ }, "states": [ { - "id": 4484, + "id": 5860, "properties": { "facing": "north", "half": "top", @@ -195562,7 +211344,7 @@ } }, { - "id": 4485, + "id": 5861, "properties": { "facing": "north", "half": "top", @@ -195572,7 +211354,7 @@ } }, { - "id": 4486, + "id": 5862, "properties": { "facing": "north", "half": "top", @@ -195582,7 +211364,7 @@ } }, { - "id": 4487, + "id": 5863, "properties": { "facing": "north", "half": "top", @@ -195592,7 +211374,7 @@ } }, { - "id": 4488, + "id": 5864, "properties": { "facing": "north", "half": "top", @@ -195602,7 +211384,7 @@ } }, { - "id": 4489, + "id": 5865, "properties": { "facing": "north", "half": "top", @@ -195612,7 +211394,7 @@ } }, { - "id": 4490, + "id": 5866, "properties": { "facing": "north", "half": "top", @@ -195622,7 +211404,7 @@ } }, { - "id": 4491, + "id": 5867, "properties": { "facing": "north", "half": "top", @@ -195632,7 +211414,7 @@ } }, { - "id": 4492, + "id": 5868, "properties": { "facing": "north", "half": "bottom", @@ -195642,7 +211424,7 @@ } }, { - "id": 4493, + "id": 5869, "properties": { "facing": "north", "half": "bottom", @@ -195652,7 +211434,7 @@ } }, { - "id": 4494, + "id": 5870, "properties": { "facing": "north", "half": "bottom", @@ -195662,7 +211444,7 @@ } }, { - "id": 4495, + "id": 5871, "properties": { "facing": "north", "half": "bottom", @@ -195672,7 +211454,7 @@ } }, { - "id": 4496, + "id": 5872, "properties": { "facing": "north", "half": "bottom", @@ -195682,7 +211464,7 @@ } }, { - "id": 4497, + "id": 5873, "properties": { "facing": "north", "half": "bottom", @@ -195692,7 +211474,7 @@ } }, { - "id": 4498, + "id": 5874, "properties": { "facing": "north", "half": "bottom", @@ -195703,7 +211485,7 @@ }, { "default": true, - "id": 4499, + "id": 5875, "properties": { "facing": "north", "half": "bottom", @@ -195713,7 +211495,7 @@ } }, { - "id": 4500, + "id": 5876, "properties": { "facing": "south", "half": "top", @@ -195723,7 +211505,7 @@ } }, { - "id": 4501, + "id": 5877, "properties": { "facing": "south", "half": "top", @@ -195733,7 +211515,7 @@ } }, { - "id": 4502, + "id": 5878, "properties": { "facing": "south", "half": "top", @@ -195743,7 +211525,7 @@ } }, { - "id": 4503, + "id": 5879, "properties": { "facing": "south", "half": "top", @@ -195753,7 +211535,7 @@ } }, { - "id": 4504, + "id": 5880, "properties": { "facing": "south", "half": "top", @@ -195763,7 +211545,7 @@ } }, { - "id": 4505, + "id": 5881, "properties": { "facing": "south", "half": "top", @@ -195773,7 +211555,7 @@ } }, { - "id": 4506, + "id": 5882, "properties": { "facing": "south", "half": "top", @@ -195783,7 +211565,7 @@ } }, { - "id": 4507, + "id": 5883, "properties": { "facing": "south", "half": "top", @@ -195793,7 +211575,7 @@ } }, { - "id": 4508, + "id": 5884, "properties": { "facing": "south", "half": "bottom", @@ -195803,7 +211585,7 @@ } }, { - "id": 4509, + "id": 5885, "properties": { "facing": "south", "half": "bottom", @@ -195813,7 +211595,7 @@ } }, { - "id": 4510, + "id": 5886, "properties": { "facing": "south", "half": "bottom", @@ -195823,7 +211605,7 @@ } }, { - "id": 4511, + "id": 5887, "properties": { "facing": "south", "half": "bottom", @@ -195833,7 +211615,7 @@ } }, { - "id": 4512, + "id": 5888, "properties": { "facing": "south", "half": "bottom", @@ -195843,7 +211625,7 @@ } }, { - "id": 4513, + "id": 5889, "properties": { "facing": "south", "half": "bottom", @@ -195853,7 +211635,7 @@ } }, { - "id": 4514, + "id": 5890, "properties": { "facing": "south", "half": "bottom", @@ -195863,7 +211645,7 @@ } }, { - "id": 4515, + "id": 5891, "properties": { "facing": "south", "half": "bottom", @@ -195873,7 +211655,7 @@ } }, { - "id": 4516, + "id": 5892, "properties": { "facing": "west", "half": "top", @@ -195883,7 +211665,7 @@ } }, { - "id": 4517, + "id": 5893, "properties": { "facing": "west", "half": "top", @@ -195893,7 +211675,7 @@ } }, { - "id": 4518, + "id": 5894, "properties": { "facing": "west", "half": "top", @@ -195903,7 +211685,7 @@ } }, { - "id": 4519, + "id": 5895, "properties": { "facing": "west", "half": "top", @@ -195913,7 +211695,7 @@ } }, { - "id": 4520, + "id": 5896, "properties": { "facing": "west", "half": "top", @@ -195923,7 +211705,7 @@ } }, { - "id": 4521, + "id": 5897, "properties": { "facing": "west", "half": "top", @@ -195933,7 +211715,7 @@ } }, { - "id": 4522, + "id": 5898, "properties": { "facing": "west", "half": "top", @@ -195943,7 +211725,7 @@ } }, { - "id": 4523, + "id": 5899, "properties": { "facing": "west", "half": "top", @@ -195953,7 +211735,7 @@ } }, { - "id": 4524, + "id": 5900, "properties": { "facing": "west", "half": "bottom", @@ -195963,7 +211745,7 @@ } }, { - "id": 4525, + "id": 5901, "properties": { "facing": "west", "half": "bottom", @@ -195973,7 +211755,7 @@ } }, { - "id": 4526, + "id": 5902, "properties": { "facing": "west", "half": "bottom", @@ -195983,7 +211765,7 @@ } }, { - "id": 4527, + "id": 5903, "properties": { "facing": "west", "half": "bottom", @@ -195993,7 +211775,7 @@ } }, { - "id": 4528, + "id": 5904, "properties": { "facing": "west", "half": "bottom", @@ -196003,7 +211785,7 @@ } }, { - "id": 4529, + "id": 5905, "properties": { "facing": "west", "half": "bottom", @@ -196013,7 +211795,7 @@ } }, { - "id": 4530, + "id": 5906, "properties": { "facing": "west", "half": "bottom", @@ -196023,7 +211805,7 @@ } }, { - "id": 4531, + "id": 5907, "properties": { "facing": "west", "half": "bottom", @@ -196033,7 +211815,7 @@ } }, { - "id": 4532, + "id": 5908, "properties": { "facing": "east", "half": "top", @@ -196043,7 +211825,7 @@ } }, { - "id": 4533, + "id": 5909, "properties": { "facing": "east", "half": "top", @@ -196053,7 +211835,7 @@ } }, { - "id": 4534, + "id": 5910, "properties": { "facing": "east", "half": "top", @@ -196063,7 +211845,7 @@ } }, { - "id": 4535, + "id": 5911, "properties": { "facing": "east", "half": "top", @@ -196073,7 +211855,7 @@ } }, { - "id": 4536, + "id": 5912, "properties": { "facing": "east", "half": "top", @@ -196083,7 +211865,7 @@ } }, { - "id": 4537, + "id": 5913, "properties": { "facing": "east", "half": "top", @@ -196093,7 +211875,7 @@ } }, { - "id": 4538, + "id": 5914, "properties": { "facing": "east", "half": "top", @@ -196103,7 +211885,7 @@ } }, { - "id": 4539, + "id": 5915, "properties": { "facing": "east", "half": "top", @@ -196113,7 +211895,7 @@ } }, { - "id": 4540, + "id": 5916, "properties": { "facing": "east", "half": "bottom", @@ -196123,7 +211905,7 @@ } }, { - "id": 4541, + "id": 5917, "properties": { "facing": "east", "half": "bottom", @@ -196133,7 +211915,7 @@ } }, { - "id": 4542, + "id": 5918, "properties": { "facing": "east", "half": "bottom", @@ -196143,7 +211925,7 @@ } }, { - "id": 4543, + "id": 5919, "properties": { "facing": "east", "half": "bottom", @@ -196153,7 +211935,7 @@ } }, { - "id": 4544, + "id": 5920, "properties": { "facing": "east", "half": "bottom", @@ -196163,7 +211945,7 @@ } }, { - "id": 4545, + "id": 5921, "properties": { "facing": "east", "half": "bottom", @@ -196173,7 +211955,7 @@ } }, { - "id": 4546, + "id": 5922, "properties": { "facing": "east", "half": "bottom", @@ -196183,7 +211965,7 @@ } }, { - "id": 4547, + "id": 5923, "properties": { "facing": "east", "half": "bottom", @@ -196194,6 +211976,79 @@ } ] }, + "minecraft:spruce_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5390, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5391, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5392, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5393, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5394, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5395, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5396, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5397, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, "minecraft:spruce_wall_sign": { "properties": { "facing": [ @@ -196209,7 +212064,7 @@ }, "states": [ { - "id": 4040, + "id": 4686, "properties": { "facing": "north", "waterlogged": "true" @@ -196217,49 +212072,49 @@ }, { "default": true, - "id": 4041, + "id": 4687, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 4042, + "id": 4688, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 4043, + "id": 4689, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 4044, + "id": 4690, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 4045, + "id": 4691, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 4046, + "id": 4692, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4047, + "id": 4693, "properties": { "facing": "east", "waterlogged": "false" @@ -196277,20 +212132,20 @@ }, "states": [ { - "id": 167, + "id": 175, "properties": { "axis": "x" } }, { "default": true, - "id": 168, + "id": 176, "properties": { "axis": "y" } }, { - "id": 169, + "id": 177, "properties": { "axis": "z" } @@ -196314,42 +212169,42 @@ }, "states": [ { - "id": 1583, + "id": 1941, "properties": { "extended": "true", "facing": "north" } }, { - "id": 1584, + "id": 1942, "properties": { "extended": "true", "facing": "east" } }, { - "id": 1585, + "id": 1943, "properties": { "extended": "true", "facing": "south" } }, { - "id": 1586, + "id": 1944, "properties": { "extended": "true", "facing": "west" } }, { - "id": 1587, + "id": 1945, "properties": { "extended": "true", "facing": "up" } }, { - "id": 1588, + "id": 1946, "properties": { "extended": "true", "facing": "down" @@ -196357,42 +212212,42 @@ }, { "default": true, - "id": 1589, + "id": 1947, "properties": { "extended": "false", "facing": "north" } }, { - "id": 1590, + "id": 1948, "properties": { "extended": "false", "facing": "east" } }, { - "id": 1591, + "id": 1949, "properties": { "extended": "false", "facing": "south" } }, { - "id": 1592, + "id": 1950, "properties": { "extended": "false", "facing": "west" } }, { - "id": 1593, + "id": 1951, "properties": { "extended": "false", "facing": "up" } }, { - "id": 1594, + "id": 1952, "properties": { "extended": "false", "facing": "down" @@ -196422,21 +212277,21 @@ }, "states": [ { - "id": 9125, + "id": 10781, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 9126, + "id": 10782, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 9127, + "id": 10783, "properties": { "type": "bottom", "waterlogged": "true" @@ -196444,21 +212299,21 @@ }, { "default": true, - "id": 9128, + "id": 10784, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 9129, + "id": 10785, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 9130, + "id": 10786, "properties": { "type": "double", "waterlogged": "false" @@ -196492,7 +212347,7 @@ }, "states": [ { - "id": 5439, + "id": 6879, "properties": { "facing": "north", "half": "top", @@ -196501,7 +212356,7 @@ } }, { - "id": 5440, + "id": 6880, "properties": { "facing": "north", "half": "top", @@ -196510,7 +212365,7 @@ } }, { - "id": 5441, + "id": 6881, "properties": { "facing": "north", "half": "top", @@ -196519,7 +212374,7 @@ } }, { - "id": 5442, + "id": 6882, "properties": { "facing": "north", "half": "top", @@ -196528,7 +212383,7 @@ } }, { - "id": 5443, + "id": 6883, "properties": { "facing": "north", "half": "top", @@ -196537,7 +212392,7 @@ } }, { - "id": 5444, + "id": 6884, "properties": { "facing": "north", "half": "top", @@ -196546,7 +212401,7 @@ } }, { - "id": 5445, + "id": 6885, "properties": { "facing": "north", "half": "top", @@ -196555,7 +212410,7 @@ } }, { - "id": 5446, + "id": 6886, "properties": { "facing": "north", "half": "top", @@ -196564,7 +212419,7 @@ } }, { - "id": 5447, + "id": 6887, "properties": { "facing": "north", "half": "top", @@ -196573,7 +212428,7 @@ } }, { - "id": 5448, + "id": 6888, "properties": { "facing": "north", "half": "top", @@ -196582,7 +212437,7 @@ } }, { - "id": 5449, + "id": 6889, "properties": { "facing": "north", "half": "bottom", @@ -196592,7 +212447,7 @@ }, { "default": true, - "id": 5450, + "id": 6890, "properties": { "facing": "north", "half": "bottom", @@ -196601,7 +212456,7 @@ } }, { - "id": 5451, + "id": 6891, "properties": { "facing": "north", "half": "bottom", @@ -196610,7 +212465,7 @@ } }, { - "id": 5452, + "id": 6892, "properties": { "facing": "north", "half": "bottom", @@ -196619,7 +212474,7 @@ } }, { - "id": 5453, + "id": 6893, "properties": { "facing": "north", "half": "bottom", @@ -196628,7 +212483,7 @@ } }, { - "id": 5454, + "id": 6894, "properties": { "facing": "north", "half": "bottom", @@ -196637,7 +212492,7 @@ } }, { - "id": 5455, + "id": 6895, "properties": { "facing": "north", "half": "bottom", @@ -196646,7 +212501,7 @@ } }, { - "id": 5456, + "id": 6896, "properties": { "facing": "north", "half": "bottom", @@ -196655,7 +212510,7 @@ } }, { - "id": 5457, + "id": 6897, "properties": { "facing": "north", "half": "bottom", @@ -196664,7 +212519,7 @@ } }, { - "id": 5458, + "id": 6898, "properties": { "facing": "north", "half": "bottom", @@ -196673,7 +212528,7 @@ } }, { - "id": 5459, + "id": 6899, "properties": { "facing": "south", "half": "top", @@ -196682,7 +212537,7 @@ } }, { - "id": 5460, + "id": 6900, "properties": { "facing": "south", "half": "top", @@ -196691,7 +212546,7 @@ } }, { - "id": 5461, + "id": 6901, "properties": { "facing": "south", "half": "top", @@ -196700,7 +212555,7 @@ } }, { - "id": 5462, + "id": 6902, "properties": { "facing": "south", "half": "top", @@ -196709,7 +212564,7 @@ } }, { - "id": 5463, + "id": 6903, "properties": { "facing": "south", "half": "top", @@ -196718,7 +212573,7 @@ } }, { - "id": 5464, + "id": 6904, "properties": { "facing": "south", "half": "top", @@ -196727,7 +212582,7 @@ } }, { - "id": 5465, + "id": 6905, "properties": { "facing": "south", "half": "top", @@ -196736,7 +212591,7 @@ } }, { - "id": 5466, + "id": 6906, "properties": { "facing": "south", "half": "top", @@ -196745,7 +212600,7 @@ } }, { - "id": 5467, + "id": 6907, "properties": { "facing": "south", "half": "top", @@ -196754,7 +212609,7 @@ } }, { - "id": 5468, + "id": 6908, "properties": { "facing": "south", "half": "top", @@ -196763,7 +212618,7 @@ } }, { - "id": 5469, + "id": 6909, "properties": { "facing": "south", "half": "bottom", @@ -196772,7 +212627,7 @@ } }, { - "id": 5470, + "id": 6910, "properties": { "facing": "south", "half": "bottom", @@ -196781,7 +212636,7 @@ } }, { - "id": 5471, + "id": 6911, "properties": { "facing": "south", "half": "bottom", @@ -196790,7 +212645,7 @@ } }, { - "id": 5472, + "id": 6912, "properties": { "facing": "south", "half": "bottom", @@ -196799,7 +212654,7 @@ } }, { - "id": 5473, + "id": 6913, "properties": { "facing": "south", "half": "bottom", @@ -196808,7 +212663,7 @@ } }, { - "id": 5474, + "id": 6914, "properties": { "facing": "south", "half": "bottom", @@ -196817,7 +212672,7 @@ } }, { - "id": 5475, + "id": 6915, "properties": { "facing": "south", "half": "bottom", @@ -196826,7 +212681,7 @@ } }, { - "id": 5476, + "id": 6916, "properties": { "facing": "south", "half": "bottom", @@ -196835,7 +212690,7 @@ } }, { - "id": 5477, + "id": 6917, "properties": { "facing": "south", "half": "bottom", @@ -196844,7 +212699,7 @@ } }, { - "id": 5478, + "id": 6918, "properties": { "facing": "south", "half": "bottom", @@ -196853,7 +212708,7 @@ } }, { - "id": 5479, + "id": 6919, "properties": { "facing": "west", "half": "top", @@ -196862,7 +212717,7 @@ } }, { - "id": 5480, + "id": 6920, "properties": { "facing": "west", "half": "top", @@ -196871,7 +212726,7 @@ } }, { - "id": 5481, + "id": 6921, "properties": { "facing": "west", "half": "top", @@ -196880,7 +212735,7 @@ } }, { - "id": 5482, + "id": 6922, "properties": { "facing": "west", "half": "top", @@ -196889,7 +212744,7 @@ } }, { - "id": 5483, + "id": 6923, "properties": { "facing": "west", "half": "top", @@ -196898,7 +212753,7 @@ } }, { - "id": 5484, + "id": 6924, "properties": { "facing": "west", "half": "top", @@ -196907,7 +212762,7 @@ } }, { - "id": 5485, + "id": 6925, "properties": { "facing": "west", "half": "top", @@ -196916,7 +212771,7 @@ } }, { - "id": 5486, + "id": 6926, "properties": { "facing": "west", "half": "top", @@ -196925,7 +212780,7 @@ } }, { - "id": 5487, + "id": 6927, "properties": { "facing": "west", "half": "top", @@ -196934,7 +212789,7 @@ } }, { - "id": 5488, + "id": 6928, "properties": { "facing": "west", "half": "top", @@ -196943,7 +212798,7 @@ } }, { - "id": 5489, + "id": 6929, "properties": { "facing": "west", "half": "bottom", @@ -196952,7 +212807,7 @@ } }, { - "id": 5490, + "id": 6930, "properties": { "facing": "west", "half": "bottom", @@ -196961,7 +212816,7 @@ } }, { - "id": 5491, + "id": 6931, "properties": { "facing": "west", "half": "bottom", @@ -196970,7 +212825,7 @@ } }, { - "id": 5492, + "id": 6932, "properties": { "facing": "west", "half": "bottom", @@ -196979,7 +212834,7 @@ } }, { - "id": 5493, + "id": 6933, "properties": { "facing": "west", "half": "bottom", @@ -196988,7 +212843,7 @@ } }, { - "id": 5494, + "id": 6934, "properties": { "facing": "west", "half": "bottom", @@ -196997,7 +212852,7 @@ } }, { - "id": 5495, + "id": 6935, "properties": { "facing": "west", "half": "bottom", @@ -197006,7 +212861,7 @@ } }, { - "id": 5496, + "id": 6936, "properties": { "facing": "west", "half": "bottom", @@ -197015,7 +212870,7 @@ } }, { - "id": 5497, + "id": 6937, "properties": { "facing": "west", "half": "bottom", @@ -197024,7 +212879,7 @@ } }, { - "id": 5498, + "id": 6938, "properties": { "facing": "west", "half": "bottom", @@ -197033,7 +212888,7 @@ } }, { - "id": 5499, + "id": 6939, "properties": { "facing": "east", "half": "top", @@ -197042,7 +212897,7 @@ } }, { - "id": 5500, + "id": 6940, "properties": { "facing": "east", "half": "top", @@ -197051,7 +212906,7 @@ } }, { - "id": 5501, + "id": 6941, "properties": { "facing": "east", "half": "top", @@ -197060,7 +212915,7 @@ } }, { - "id": 5502, + "id": 6942, "properties": { "facing": "east", "half": "top", @@ -197069,7 +212924,7 @@ } }, { - "id": 5503, + "id": 6943, "properties": { "facing": "east", "half": "top", @@ -197078,7 +212933,7 @@ } }, { - "id": 5504, + "id": 6944, "properties": { "facing": "east", "half": "top", @@ -197087,7 +212942,7 @@ } }, { - "id": 5505, + "id": 6945, "properties": { "facing": "east", "half": "top", @@ -197096,7 +212951,7 @@ } }, { - "id": 5506, + "id": 6946, "properties": { "facing": "east", "half": "top", @@ -197105,7 +212960,7 @@ } }, { - "id": 5507, + "id": 6947, "properties": { "facing": "east", "half": "top", @@ -197114,7 +212969,7 @@ } }, { - "id": 5508, + "id": 6948, "properties": { "facing": "east", "half": "top", @@ -197123,7 +212978,7 @@ } }, { - "id": 5509, + "id": 6949, "properties": { "facing": "east", "half": "bottom", @@ -197132,7 +212987,7 @@ } }, { - "id": 5510, + "id": 6950, "properties": { "facing": "east", "half": "bottom", @@ -197141,7 +212996,7 @@ } }, { - "id": 5511, + "id": 6951, "properties": { "facing": "east", "half": "bottom", @@ -197150,7 +213005,7 @@ } }, { - "id": 5512, + "id": 6952, "properties": { "facing": "east", "half": "bottom", @@ -197159,7 +213014,7 @@ } }, { - "id": 5513, + "id": 6953, "properties": { "facing": "east", "half": "bottom", @@ -197168,7 +213023,7 @@ } }, { - "id": 5514, + "id": 6954, "properties": { "facing": "east", "half": "bottom", @@ -197177,7 +213032,7 @@ } }, { - "id": 5515, + "id": 6955, "properties": { "facing": "east", "half": "bottom", @@ -197186,7 +213041,7 @@ } }, { - "id": 5516, + "id": 6956, "properties": { "facing": "east", "half": "bottom", @@ -197195,7 +213050,7 @@ } }, { - "id": 5517, + "id": 6957, "properties": { "facing": "east", "half": "bottom", @@ -197204,7 +213059,7 @@ } }, { - "id": 5518, + "id": 6958, "properties": { "facing": "east", "half": "bottom", @@ -197247,7 +213102,7 @@ }, "states": [ { - "id": 13368, + "id": 15152, "properties": { "east": "none", "north": "none", @@ -197258,7 +213113,7 @@ } }, { - "id": 13369, + "id": 15153, "properties": { "east": "none", "north": "none", @@ -197269,7 +213124,7 @@ } }, { - "id": 13370, + "id": 15154, "properties": { "east": "none", "north": "none", @@ -197281,7 +213136,7 @@ }, { "default": true, - "id": 13371, + "id": 15155, "properties": { "east": "none", "north": "none", @@ -197292,7 +213147,7 @@ } }, { - "id": 13372, + "id": 15156, "properties": { "east": "none", "north": "none", @@ -197303,7 +213158,7 @@ } }, { - "id": 13373, + "id": 15157, "properties": { "east": "none", "north": "none", @@ -197314,7 +213169,7 @@ } }, { - "id": 13374, + "id": 15158, "properties": { "east": "none", "north": "none", @@ -197325,7 +213180,7 @@ } }, { - "id": 13375, + "id": 15159, "properties": { "east": "none", "north": "none", @@ -197336,7 +213191,7 @@ } }, { - "id": 13376, + "id": 15160, "properties": { "east": "none", "north": "none", @@ -197347,7 +213202,7 @@ } }, { - "id": 13377, + "id": 15161, "properties": { "east": "none", "north": "none", @@ -197358,7 +213213,7 @@ } }, { - "id": 13378, + "id": 15162, "properties": { "east": "none", "north": "none", @@ -197369,7 +213224,7 @@ } }, { - "id": 13379, + "id": 15163, "properties": { "east": "none", "north": "none", @@ -197380,7 +213235,7 @@ } }, { - "id": 13380, + "id": 15164, "properties": { "east": "none", "north": "none", @@ -197391,7 +213246,7 @@ } }, { - "id": 13381, + "id": 15165, "properties": { "east": "none", "north": "none", @@ -197402,7 +213257,7 @@ } }, { - "id": 13382, + "id": 15166, "properties": { "east": "none", "north": "none", @@ -197413,7 +213268,7 @@ } }, { - "id": 13383, + "id": 15167, "properties": { "east": "none", "north": "none", @@ -197424,7 +213279,7 @@ } }, { - "id": 13384, + "id": 15168, "properties": { "east": "none", "north": "none", @@ -197435,7 +213290,7 @@ } }, { - "id": 13385, + "id": 15169, "properties": { "east": "none", "north": "none", @@ -197446,7 +213301,7 @@ } }, { - "id": 13386, + "id": 15170, "properties": { "east": "none", "north": "none", @@ -197457,7 +213312,7 @@ } }, { - "id": 13387, + "id": 15171, "properties": { "east": "none", "north": "none", @@ -197468,7 +213323,7 @@ } }, { - "id": 13388, + "id": 15172, "properties": { "east": "none", "north": "none", @@ -197479,7 +213334,7 @@ } }, { - "id": 13389, + "id": 15173, "properties": { "east": "none", "north": "none", @@ -197490,7 +213345,7 @@ } }, { - "id": 13390, + "id": 15174, "properties": { "east": "none", "north": "none", @@ -197501,7 +213356,7 @@ } }, { - "id": 13391, + "id": 15175, "properties": { "east": "none", "north": "none", @@ -197512,7 +213367,7 @@ } }, { - "id": 13392, + "id": 15176, "properties": { "east": "none", "north": "none", @@ -197523,7 +213378,7 @@ } }, { - "id": 13393, + "id": 15177, "properties": { "east": "none", "north": "none", @@ -197534,7 +213389,7 @@ } }, { - "id": 13394, + "id": 15178, "properties": { "east": "none", "north": "none", @@ -197545,7 +213400,7 @@ } }, { - "id": 13395, + "id": 15179, "properties": { "east": "none", "north": "none", @@ -197556,7 +213411,7 @@ } }, { - "id": 13396, + "id": 15180, "properties": { "east": "none", "north": "none", @@ -197567,7 +213422,7 @@ } }, { - "id": 13397, + "id": 15181, "properties": { "east": "none", "north": "none", @@ -197578,7 +213433,7 @@ } }, { - "id": 13398, + "id": 15182, "properties": { "east": "none", "north": "none", @@ -197589,7 +213444,7 @@ } }, { - "id": 13399, + "id": 15183, "properties": { "east": "none", "north": "none", @@ -197600,7 +213455,7 @@ } }, { - "id": 13400, + "id": 15184, "properties": { "east": "none", "north": "none", @@ -197611,7 +213466,7 @@ } }, { - "id": 13401, + "id": 15185, "properties": { "east": "none", "north": "none", @@ -197622,7 +213477,7 @@ } }, { - "id": 13402, + "id": 15186, "properties": { "east": "none", "north": "none", @@ -197633,7 +213488,7 @@ } }, { - "id": 13403, + "id": 15187, "properties": { "east": "none", "north": "none", @@ -197644,7 +213499,7 @@ } }, { - "id": 13404, + "id": 15188, "properties": { "east": "none", "north": "low", @@ -197655,7 +213510,7 @@ } }, { - "id": 13405, + "id": 15189, "properties": { "east": "none", "north": "low", @@ -197666,7 +213521,7 @@ } }, { - "id": 13406, + "id": 15190, "properties": { "east": "none", "north": "low", @@ -197677,7 +213532,7 @@ } }, { - "id": 13407, + "id": 15191, "properties": { "east": "none", "north": "low", @@ -197688,7 +213543,7 @@ } }, { - "id": 13408, + "id": 15192, "properties": { "east": "none", "north": "low", @@ -197699,7 +213554,7 @@ } }, { - "id": 13409, + "id": 15193, "properties": { "east": "none", "north": "low", @@ -197710,7 +213565,7 @@ } }, { - "id": 13410, + "id": 15194, "properties": { "east": "none", "north": "low", @@ -197721,7 +213576,7 @@ } }, { - "id": 13411, + "id": 15195, "properties": { "east": "none", "north": "low", @@ -197732,7 +213587,7 @@ } }, { - "id": 13412, + "id": 15196, "properties": { "east": "none", "north": "low", @@ -197743,7 +213598,7 @@ } }, { - "id": 13413, + "id": 15197, "properties": { "east": "none", "north": "low", @@ -197754,7 +213609,7 @@ } }, { - "id": 13414, + "id": 15198, "properties": { "east": "none", "north": "low", @@ -197765,7 +213620,7 @@ } }, { - "id": 13415, + "id": 15199, "properties": { "east": "none", "north": "low", @@ -197776,7 +213631,7 @@ } }, { - "id": 13416, + "id": 15200, "properties": { "east": "none", "north": "low", @@ -197787,7 +213642,7 @@ } }, { - "id": 13417, + "id": 15201, "properties": { "east": "none", "north": "low", @@ -197798,7 +213653,7 @@ } }, { - "id": 13418, + "id": 15202, "properties": { "east": "none", "north": "low", @@ -197809,7 +213664,7 @@ } }, { - "id": 13419, + "id": 15203, "properties": { "east": "none", "north": "low", @@ -197820,7 +213675,7 @@ } }, { - "id": 13420, + "id": 15204, "properties": { "east": "none", "north": "low", @@ -197831,7 +213686,7 @@ } }, { - "id": 13421, + "id": 15205, "properties": { "east": "none", "north": "low", @@ -197842,7 +213697,7 @@ } }, { - "id": 13422, + "id": 15206, "properties": { "east": "none", "north": "low", @@ -197853,7 +213708,7 @@ } }, { - "id": 13423, + "id": 15207, "properties": { "east": "none", "north": "low", @@ -197864,7 +213719,7 @@ } }, { - "id": 13424, + "id": 15208, "properties": { "east": "none", "north": "low", @@ -197875,7 +213730,7 @@ } }, { - "id": 13425, + "id": 15209, "properties": { "east": "none", "north": "low", @@ -197886,7 +213741,7 @@ } }, { - "id": 13426, + "id": 15210, "properties": { "east": "none", "north": "low", @@ -197897,7 +213752,7 @@ } }, { - "id": 13427, + "id": 15211, "properties": { "east": "none", "north": "low", @@ -197908,7 +213763,7 @@ } }, { - "id": 13428, + "id": 15212, "properties": { "east": "none", "north": "low", @@ -197919,7 +213774,7 @@ } }, { - "id": 13429, + "id": 15213, "properties": { "east": "none", "north": "low", @@ -197930,7 +213785,7 @@ } }, { - "id": 13430, + "id": 15214, "properties": { "east": "none", "north": "low", @@ -197941,7 +213796,7 @@ } }, { - "id": 13431, + "id": 15215, "properties": { "east": "none", "north": "low", @@ -197952,7 +213807,7 @@ } }, { - "id": 13432, + "id": 15216, "properties": { "east": "none", "north": "low", @@ -197963,7 +213818,7 @@ } }, { - "id": 13433, + "id": 15217, "properties": { "east": "none", "north": "low", @@ -197974,7 +213829,7 @@ } }, { - "id": 13434, + "id": 15218, "properties": { "east": "none", "north": "low", @@ -197985,7 +213840,7 @@ } }, { - "id": 13435, + "id": 15219, "properties": { "east": "none", "north": "low", @@ -197996,7 +213851,7 @@ } }, { - "id": 13436, + "id": 15220, "properties": { "east": "none", "north": "low", @@ -198007,7 +213862,7 @@ } }, { - "id": 13437, + "id": 15221, "properties": { "east": "none", "north": "low", @@ -198018,7 +213873,7 @@ } }, { - "id": 13438, + "id": 15222, "properties": { "east": "none", "north": "low", @@ -198029,7 +213884,7 @@ } }, { - "id": 13439, + "id": 15223, "properties": { "east": "none", "north": "low", @@ -198040,7 +213895,7 @@ } }, { - "id": 13440, + "id": 15224, "properties": { "east": "none", "north": "tall", @@ -198051,7 +213906,7 @@ } }, { - "id": 13441, + "id": 15225, "properties": { "east": "none", "north": "tall", @@ -198062,7 +213917,7 @@ } }, { - "id": 13442, + "id": 15226, "properties": { "east": "none", "north": "tall", @@ -198073,7 +213928,7 @@ } }, { - "id": 13443, + "id": 15227, "properties": { "east": "none", "north": "tall", @@ -198084,7 +213939,7 @@ } }, { - "id": 13444, + "id": 15228, "properties": { "east": "none", "north": "tall", @@ -198095,7 +213950,7 @@ } }, { - "id": 13445, + "id": 15229, "properties": { "east": "none", "north": "tall", @@ -198106,7 +213961,7 @@ } }, { - "id": 13446, + "id": 15230, "properties": { "east": "none", "north": "tall", @@ -198117,7 +213972,7 @@ } }, { - "id": 13447, + "id": 15231, "properties": { "east": "none", "north": "tall", @@ -198128,7 +213983,7 @@ } }, { - "id": 13448, + "id": 15232, "properties": { "east": "none", "north": "tall", @@ -198139,7 +213994,7 @@ } }, { - "id": 13449, + "id": 15233, "properties": { "east": "none", "north": "tall", @@ -198150,7 +214005,7 @@ } }, { - "id": 13450, + "id": 15234, "properties": { "east": "none", "north": "tall", @@ -198161,7 +214016,7 @@ } }, { - "id": 13451, + "id": 15235, "properties": { "east": "none", "north": "tall", @@ -198172,7 +214027,7 @@ } }, { - "id": 13452, + "id": 15236, "properties": { "east": "none", "north": "tall", @@ -198183,7 +214038,7 @@ } }, { - "id": 13453, + "id": 15237, "properties": { "east": "none", "north": "tall", @@ -198194,7 +214049,7 @@ } }, { - "id": 13454, + "id": 15238, "properties": { "east": "none", "north": "tall", @@ -198205,7 +214060,7 @@ } }, { - "id": 13455, + "id": 15239, "properties": { "east": "none", "north": "tall", @@ -198216,7 +214071,7 @@ } }, { - "id": 13456, + "id": 15240, "properties": { "east": "none", "north": "tall", @@ -198227,7 +214082,7 @@ } }, { - "id": 13457, + "id": 15241, "properties": { "east": "none", "north": "tall", @@ -198238,7 +214093,7 @@ } }, { - "id": 13458, + "id": 15242, "properties": { "east": "none", "north": "tall", @@ -198249,7 +214104,7 @@ } }, { - "id": 13459, + "id": 15243, "properties": { "east": "none", "north": "tall", @@ -198260,7 +214115,7 @@ } }, { - "id": 13460, + "id": 15244, "properties": { "east": "none", "north": "tall", @@ -198271,7 +214126,7 @@ } }, { - "id": 13461, + "id": 15245, "properties": { "east": "none", "north": "tall", @@ -198282,7 +214137,7 @@ } }, { - "id": 13462, + "id": 15246, "properties": { "east": "none", "north": "tall", @@ -198293,7 +214148,7 @@ } }, { - "id": 13463, + "id": 15247, "properties": { "east": "none", "north": "tall", @@ -198304,7 +214159,7 @@ } }, { - "id": 13464, + "id": 15248, "properties": { "east": "none", "north": "tall", @@ -198315,7 +214170,7 @@ } }, { - "id": 13465, + "id": 15249, "properties": { "east": "none", "north": "tall", @@ -198326,7 +214181,7 @@ } }, { - "id": 13466, + "id": 15250, "properties": { "east": "none", "north": "tall", @@ -198337,7 +214192,7 @@ } }, { - "id": 13467, + "id": 15251, "properties": { "east": "none", "north": "tall", @@ -198348,7 +214203,7 @@ } }, { - "id": 13468, + "id": 15252, "properties": { "east": "none", "north": "tall", @@ -198359,7 +214214,7 @@ } }, { - "id": 13469, + "id": 15253, "properties": { "east": "none", "north": "tall", @@ -198370,7 +214225,7 @@ } }, { - "id": 13470, + "id": 15254, "properties": { "east": "none", "north": "tall", @@ -198381,7 +214236,7 @@ } }, { - "id": 13471, + "id": 15255, "properties": { "east": "none", "north": "tall", @@ -198392,7 +214247,7 @@ } }, { - "id": 13472, + "id": 15256, "properties": { "east": "none", "north": "tall", @@ -198403,7 +214258,7 @@ } }, { - "id": 13473, + "id": 15257, "properties": { "east": "none", "north": "tall", @@ -198414,7 +214269,7 @@ } }, { - "id": 13474, + "id": 15258, "properties": { "east": "none", "north": "tall", @@ -198425,7 +214280,7 @@ } }, { - "id": 13475, + "id": 15259, "properties": { "east": "none", "north": "tall", @@ -198436,7 +214291,7 @@ } }, { - "id": 13476, + "id": 15260, "properties": { "east": "low", "north": "none", @@ -198447,7 +214302,7 @@ } }, { - "id": 13477, + "id": 15261, "properties": { "east": "low", "north": "none", @@ -198458,7 +214313,7 @@ } }, { - "id": 13478, + "id": 15262, "properties": { "east": "low", "north": "none", @@ -198469,7 +214324,7 @@ } }, { - "id": 13479, + "id": 15263, "properties": { "east": "low", "north": "none", @@ -198480,7 +214335,7 @@ } }, { - "id": 13480, + "id": 15264, "properties": { "east": "low", "north": "none", @@ -198491,7 +214346,7 @@ } }, { - "id": 13481, + "id": 15265, "properties": { "east": "low", "north": "none", @@ -198502,7 +214357,7 @@ } }, { - "id": 13482, + "id": 15266, "properties": { "east": "low", "north": "none", @@ -198513,7 +214368,7 @@ } }, { - "id": 13483, + "id": 15267, "properties": { "east": "low", "north": "none", @@ -198524,7 +214379,7 @@ } }, { - "id": 13484, + "id": 15268, "properties": { "east": "low", "north": "none", @@ -198535,7 +214390,7 @@ } }, { - "id": 13485, + "id": 15269, "properties": { "east": "low", "north": "none", @@ -198546,7 +214401,7 @@ } }, { - "id": 13486, + "id": 15270, "properties": { "east": "low", "north": "none", @@ -198557,7 +214412,7 @@ } }, { - "id": 13487, + "id": 15271, "properties": { "east": "low", "north": "none", @@ -198568,7 +214423,7 @@ } }, { - "id": 13488, + "id": 15272, "properties": { "east": "low", "north": "none", @@ -198579,7 +214434,7 @@ } }, { - "id": 13489, + "id": 15273, "properties": { "east": "low", "north": "none", @@ -198590,7 +214445,7 @@ } }, { - "id": 13490, + "id": 15274, "properties": { "east": "low", "north": "none", @@ -198601,7 +214456,7 @@ } }, { - "id": 13491, + "id": 15275, "properties": { "east": "low", "north": "none", @@ -198612,7 +214467,7 @@ } }, { - "id": 13492, + "id": 15276, "properties": { "east": "low", "north": "none", @@ -198623,7 +214478,7 @@ } }, { - "id": 13493, + "id": 15277, "properties": { "east": "low", "north": "none", @@ -198634,7 +214489,7 @@ } }, { - "id": 13494, + "id": 15278, "properties": { "east": "low", "north": "none", @@ -198645,7 +214500,7 @@ } }, { - "id": 13495, + "id": 15279, "properties": { "east": "low", "north": "none", @@ -198656,7 +214511,7 @@ } }, { - "id": 13496, + "id": 15280, "properties": { "east": "low", "north": "none", @@ -198667,7 +214522,7 @@ } }, { - "id": 13497, + "id": 15281, "properties": { "east": "low", "north": "none", @@ -198678,7 +214533,7 @@ } }, { - "id": 13498, + "id": 15282, "properties": { "east": "low", "north": "none", @@ -198689,7 +214544,7 @@ } }, { - "id": 13499, + "id": 15283, "properties": { "east": "low", "north": "none", @@ -198700,7 +214555,7 @@ } }, { - "id": 13500, + "id": 15284, "properties": { "east": "low", "north": "none", @@ -198711,7 +214566,7 @@ } }, { - "id": 13501, + "id": 15285, "properties": { "east": "low", "north": "none", @@ -198722,7 +214577,7 @@ } }, { - "id": 13502, + "id": 15286, "properties": { "east": "low", "north": "none", @@ -198733,7 +214588,7 @@ } }, { - "id": 13503, + "id": 15287, "properties": { "east": "low", "north": "none", @@ -198744,7 +214599,7 @@ } }, { - "id": 13504, + "id": 15288, "properties": { "east": "low", "north": "none", @@ -198755,7 +214610,7 @@ } }, { - "id": 13505, + "id": 15289, "properties": { "east": "low", "north": "none", @@ -198766,7 +214621,7 @@ } }, { - "id": 13506, + "id": 15290, "properties": { "east": "low", "north": "none", @@ -198777,7 +214632,7 @@ } }, { - "id": 13507, + "id": 15291, "properties": { "east": "low", "north": "none", @@ -198788,7 +214643,7 @@ } }, { - "id": 13508, + "id": 15292, "properties": { "east": "low", "north": "none", @@ -198799,7 +214654,7 @@ } }, { - "id": 13509, + "id": 15293, "properties": { "east": "low", "north": "none", @@ -198810,7 +214665,7 @@ } }, { - "id": 13510, + "id": 15294, "properties": { "east": "low", "north": "none", @@ -198821,7 +214676,7 @@ } }, { - "id": 13511, + "id": 15295, "properties": { "east": "low", "north": "none", @@ -198832,7 +214687,7 @@ } }, { - "id": 13512, + "id": 15296, "properties": { "east": "low", "north": "low", @@ -198843,7 +214698,7 @@ } }, { - "id": 13513, + "id": 15297, "properties": { "east": "low", "north": "low", @@ -198854,7 +214709,7 @@ } }, { - "id": 13514, + "id": 15298, "properties": { "east": "low", "north": "low", @@ -198865,7 +214720,7 @@ } }, { - "id": 13515, + "id": 15299, "properties": { "east": "low", "north": "low", @@ -198876,7 +214731,7 @@ } }, { - "id": 13516, + "id": 15300, "properties": { "east": "low", "north": "low", @@ -198887,7 +214742,7 @@ } }, { - "id": 13517, + "id": 15301, "properties": { "east": "low", "north": "low", @@ -198898,7 +214753,7 @@ } }, { - "id": 13518, + "id": 15302, "properties": { "east": "low", "north": "low", @@ -198909,7 +214764,7 @@ } }, { - "id": 13519, + "id": 15303, "properties": { "east": "low", "north": "low", @@ -198920,7 +214775,7 @@ } }, { - "id": 13520, + "id": 15304, "properties": { "east": "low", "north": "low", @@ -198931,7 +214786,7 @@ } }, { - "id": 13521, + "id": 15305, "properties": { "east": "low", "north": "low", @@ -198942,7 +214797,7 @@ } }, { - "id": 13522, + "id": 15306, "properties": { "east": "low", "north": "low", @@ -198953,7 +214808,7 @@ } }, { - "id": 13523, + "id": 15307, "properties": { "east": "low", "north": "low", @@ -198964,7 +214819,7 @@ } }, { - "id": 13524, + "id": 15308, "properties": { "east": "low", "north": "low", @@ -198975,7 +214830,7 @@ } }, { - "id": 13525, + "id": 15309, "properties": { "east": "low", "north": "low", @@ -198986,7 +214841,7 @@ } }, { - "id": 13526, + "id": 15310, "properties": { "east": "low", "north": "low", @@ -198997,7 +214852,7 @@ } }, { - "id": 13527, + "id": 15311, "properties": { "east": "low", "north": "low", @@ -199008,7 +214863,7 @@ } }, { - "id": 13528, + "id": 15312, "properties": { "east": "low", "north": "low", @@ -199019,7 +214874,7 @@ } }, { - "id": 13529, + "id": 15313, "properties": { "east": "low", "north": "low", @@ -199030,7 +214885,7 @@ } }, { - "id": 13530, + "id": 15314, "properties": { "east": "low", "north": "low", @@ -199041,7 +214896,7 @@ } }, { - "id": 13531, + "id": 15315, "properties": { "east": "low", "north": "low", @@ -199052,7 +214907,7 @@ } }, { - "id": 13532, + "id": 15316, "properties": { "east": "low", "north": "low", @@ -199063,7 +214918,7 @@ } }, { - "id": 13533, + "id": 15317, "properties": { "east": "low", "north": "low", @@ -199074,7 +214929,7 @@ } }, { - "id": 13534, + "id": 15318, "properties": { "east": "low", "north": "low", @@ -199085,7 +214940,7 @@ } }, { - "id": 13535, + "id": 15319, "properties": { "east": "low", "north": "low", @@ -199096,7 +214951,7 @@ } }, { - "id": 13536, + "id": 15320, "properties": { "east": "low", "north": "low", @@ -199107,7 +214962,7 @@ } }, { - "id": 13537, + "id": 15321, "properties": { "east": "low", "north": "low", @@ -199118,7 +214973,7 @@ } }, { - "id": 13538, + "id": 15322, "properties": { "east": "low", "north": "low", @@ -199129,7 +214984,7 @@ } }, { - "id": 13539, + "id": 15323, "properties": { "east": "low", "north": "low", @@ -199140,7 +214995,7 @@ } }, { - "id": 13540, + "id": 15324, "properties": { "east": "low", "north": "low", @@ -199151,7 +215006,7 @@ } }, { - "id": 13541, + "id": 15325, "properties": { "east": "low", "north": "low", @@ -199162,7 +215017,7 @@ } }, { - "id": 13542, + "id": 15326, "properties": { "east": "low", "north": "low", @@ -199173,7 +215028,7 @@ } }, { - "id": 13543, + "id": 15327, "properties": { "east": "low", "north": "low", @@ -199184,7 +215039,7 @@ } }, { - "id": 13544, + "id": 15328, "properties": { "east": "low", "north": "low", @@ -199195,7 +215050,7 @@ } }, { - "id": 13545, + "id": 15329, "properties": { "east": "low", "north": "low", @@ -199206,7 +215061,7 @@ } }, { - "id": 13546, + "id": 15330, "properties": { "east": "low", "north": "low", @@ -199217,7 +215072,7 @@ } }, { - "id": 13547, + "id": 15331, "properties": { "east": "low", "north": "low", @@ -199228,7 +215083,7 @@ } }, { - "id": 13548, + "id": 15332, "properties": { "east": "low", "north": "tall", @@ -199239,7 +215094,7 @@ } }, { - "id": 13549, + "id": 15333, "properties": { "east": "low", "north": "tall", @@ -199250,7 +215105,7 @@ } }, { - "id": 13550, + "id": 15334, "properties": { "east": "low", "north": "tall", @@ -199261,7 +215116,7 @@ } }, { - "id": 13551, + "id": 15335, "properties": { "east": "low", "north": "tall", @@ -199272,7 +215127,7 @@ } }, { - "id": 13552, + "id": 15336, "properties": { "east": "low", "north": "tall", @@ -199283,7 +215138,7 @@ } }, { - "id": 13553, + "id": 15337, "properties": { "east": "low", "north": "tall", @@ -199294,7 +215149,7 @@ } }, { - "id": 13554, + "id": 15338, "properties": { "east": "low", "north": "tall", @@ -199305,7 +215160,7 @@ } }, { - "id": 13555, + "id": 15339, "properties": { "east": "low", "north": "tall", @@ -199316,7 +215171,7 @@ } }, { - "id": 13556, + "id": 15340, "properties": { "east": "low", "north": "tall", @@ -199327,7 +215182,7 @@ } }, { - "id": 13557, + "id": 15341, "properties": { "east": "low", "north": "tall", @@ -199338,7 +215193,7 @@ } }, { - "id": 13558, + "id": 15342, "properties": { "east": "low", "north": "tall", @@ -199349,7 +215204,7 @@ } }, { - "id": 13559, + "id": 15343, "properties": { "east": "low", "north": "tall", @@ -199360,7 +215215,7 @@ } }, { - "id": 13560, + "id": 15344, "properties": { "east": "low", "north": "tall", @@ -199371,7 +215226,7 @@ } }, { - "id": 13561, + "id": 15345, "properties": { "east": "low", "north": "tall", @@ -199382,7 +215237,7 @@ } }, { - "id": 13562, + "id": 15346, "properties": { "east": "low", "north": "tall", @@ -199393,7 +215248,7 @@ } }, { - "id": 13563, + "id": 15347, "properties": { "east": "low", "north": "tall", @@ -199404,7 +215259,7 @@ } }, { - "id": 13564, + "id": 15348, "properties": { "east": "low", "north": "tall", @@ -199415,7 +215270,7 @@ } }, { - "id": 13565, + "id": 15349, "properties": { "east": "low", "north": "tall", @@ -199426,7 +215281,7 @@ } }, { - "id": 13566, + "id": 15350, "properties": { "east": "low", "north": "tall", @@ -199437,7 +215292,7 @@ } }, { - "id": 13567, + "id": 15351, "properties": { "east": "low", "north": "tall", @@ -199448,7 +215303,7 @@ } }, { - "id": 13568, + "id": 15352, "properties": { "east": "low", "north": "tall", @@ -199459,7 +215314,7 @@ } }, { - "id": 13569, + "id": 15353, "properties": { "east": "low", "north": "tall", @@ -199470,7 +215325,7 @@ } }, { - "id": 13570, + "id": 15354, "properties": { "east": "low", "north": "tall", @@ -199481,7 +215336,7 @@ } }, { - "id": 13571, + "id": 15355, "properties": { "east": "low", "north": "tall", @@ -199492,7 +215347,7 @@ } }, { - "id": 13572, + "id": 15356, "properties": { "east": "low", "north": "tall", @@ -199503,7 +215358,7 @@ } }, { - "id": 13573, + "id": 15357, "properties": { "east": "low", "north": "tall", @@ -199514,7 +215369,7 @@ } }, { - "id": 13574, + "id": 15358, "properties": { "east": "low", "north": "tall", @@ -199525,7 +215380,7 @@ } }, { - "id": 13575, + "id": 15359, "properties": { "east": "low", "north": "tall", @@ -199536,7 +215391,7 @@ } }, { - "id": 13576, + "id": 15360, "properties": { "east": "low", "north": "tall", @@ -199547,7 +215402,7 @@ } }, { - "id": 13577, + "id": 15361, "properties": { "east": "low", "north": "tall", @@ -199558,7 +215413,7 @@ } }, { - "id": 13578, + "id": 15362, "properties": { "east": "low", "north": "tall", @@ -199569,7 +215424,7 @@ } }, { - "id": 13579, + "id": 15363, "properties": { "east": "low", "north": "tall", @@ -199580,7 +215435,7 @@ } }, { - "id": 13580, + "id": 15364, "properties": { "east": "low", "north": "tall", @@ -199591,7 +215446,7 @@ } }, { - "id": 13581, + "id": 15365, "properties": { "east": "low", "north": "tall", @@ -199602,7 +215457,7 @@ } }, { - "id": 13582, + "id": 15366, "properties": { "east": "low", "north": "tall", @@ -199613,7 +215468,7 @@ } }, { - "id": 13583, + "id": 15367, "properties": { "east": "low", "north": "tall", @@ -199624,7 +215479,7 @@ } }, { - "id": 13584, + "id": 15368, "properties": { "east": "tall", "north": "none", @@ -199635,7 +215490,7 @@ } }, { - "id": 13585, + "id": 15369, "properties": { "east": "tall", "north": "none", @@ -199646,7 +215501,7 @@ } }, { - "id": 13586, + "id": 15370, "properties": { "east": "tall", "north": "none", @@ -199657,7 +215512,7 @@ } }, { - "id": 13587, + "id": 15371, "properties": { "east": "tall", "north": "none", @@ -199668,7 +215523,7 @@ } }, { - "id": 13588, + "id": 15372, "properties": { "east": "tall", "north": "none", @@ -199679,7 +215534,7 @@ } }, { - "id": 13589, + "id": 15373, "properties": { "east": "tall", "north": "none", @@ -199690,7 +215545,7 @@ } }, { - "id": 13590, + "id": 15374, "properties": { "east": "tall", "north": "none", @@ -199701,7 +215556,7 @@ } }, { - "id": 13591, + "id": 15375, "properties": { "east": "tall", "north": "none", @@ -199712,7 +215567,7 @@ } }, { - "id": 13592, + "id": 15376, "properties": { "east": "tall", "north": "none", @@ -199723,7 +215578,7 @@ } }, { - "id": 13593, + "id": 15377, "properties": { "east": "tall", "north": "none", @@ -199734,7 +215589,7 @@ } }, { - "id": 13594, + "id": 15378, "properties": { "east": "tall", "north": "none", @@ -199745,7 +215600,7 @@ } }, { - "id": 13595, + "id": 15379, "properties": { "east": "tall", "north": "none", @@ -199756,7 +215611,7 @@ } }, { - "id": 13596, + "id": 15380, "properties": { "east": "tall", "north": "none", @@ -199767,7 +215622,7 @@ } }, { - "id": 13597, + "id": 15381, "properties": { "east": "tall", "north": "none", @@ -199778,7 +215633,7 @@ } }, { - "id": 13598, + "id": 15382, "properties": { "east": "tall", "north": "none", @@ -199789,7 +215644,7 @@ } }, { - "id": 13599, + "id": 15383, "properties": { "east": "tall", "north": "none", @@ -199800,7 +215655,7 @@ } }, { - "id": 13600, + "id": 15384, "properties": { "east": "tall", "north": "none", @@ -199811,7 +215666,7 @@ } }, { - "id": 13601, + "id": 15385, "properties": { "east": "tall", "north": "none", @@ -199822,7 +215677,7 @@ } }, { - "id": 13602, + "id": 15386, "properties": { "east": "tall", "north": "none", @@ -199833,7 +215688,7 @@ } }, { - "id": 13603, + "id": 15387, "properties": { "east": "tall", "north": "none", @@ -199844,7 +215699,7 @@ } }, { - "id": 13604, + "id": 15388, "properties": { "east": "tall", "north": "none", @@ -199855,7 +215710,7 @@ } }, { - "id": 13605, + "id": 15389, "properties": { "east": "tall", "north": "none", @@ -199866,7 +215721,7 @@ } }, { - "id": 13606, + "id": 15390, "properties": { "east": "tall", "north": "none", @@ -199877,7 +215732,7 @@ } }, { - "id": 13607, + "id": 15391, "properties": { "east": "tall", "north": "none", @@ -199888,7 +215743,7 @@ } }, { - "id": 13608, + "id": 15392, "properties": { "east": "tall", "north": "none", @@ -199899,7 +215754,7 @@ } }, { - "id": 13609, + "id": 15393, "properties": { "east": "tall", "north": "none", @@ -199910,7 +215765,7 @@ } }, { - "id": 13610, + "id": 15394, "properties": { "east": "tall", "north": "none", @@ -199921,7 +215776,7 @@ } }, { - "id": 13611, + "id": 15395, "properties": { "east": "tall", "north": "none", @@ -199932,7 +215787,7 @@ } }, { - "id": 13612, + "id": 15396, "properties": { "east": "tall", "north": "none", @@ -199943,7 +215798,7 @@ } }, { - "id": 13613, + "id": 15397, "properties": { "east": "tall", "north": "none", @@ -199954,7 +215809,7 @@ } }, { - "id": 13614, + "id": 15398, "properties": { "east": "tall", "north": "none", @@ -199965,7 +215820,7 @@ } }, { - "id": 13615, + "id": 15399, "properties": { "east": "tall", "north": "none", @@ -199976,7 +215831,7 @@ } }, { - "id": 13616, + "id": 15400, "properties": { "east": "tall", "north": "none", @@ -199987,7 +215842,7 @@ } }, { - "id": 13617, + "id": 15401, "properties": { "east": "tall", "north": "none", @@ -199998,7 +215853,7 @@ } }, { - "id": 13618, + "id": 15402, "properties": { "east": "tall", "north": "none", @@ -200009,7 +215864,7 @@ } }, { - "id": 13619, + "id": 15403, "properties": { "east": "tall", "north": "none", @@ -200020,7 +215875,7 @@ } }, { - "id": 13620, + "id": 15404, "properties": { "east": "tall", "north": "low", @@ -200031,7 +215886,7 @@ } }, { - "id": 13621, + "id": 15405, "properties": { "east": "tall", "north": "low", @@ -200042,7 +215897,7 @@ } }, { - "id": 13622, + "id": 15406, "properties": { "east": "tall", "north": "low", @@ -200053,7 +215908,7 @@ } }, { - "id": 13623, + "id": 15407, "properties": { "east": "tall", "north": "low", @@ -200064,7 +215919,7 @@ } }, { - "id": 13624, + "id": 15408, "properties": { "east": "tall", "north": "low", @@ -200075,7 +215930,7 @@ } }, { - "id": 13625, + "id": 15409, "properties": { "east": "tall", "north": "low", @@ -200086,7 +215941,7 @@ } }, { - "id": 13626, + "id": 15410, "properties": { "east": "tall", "north": "low", @@ -200097,7 +215952,7 @@ } }, { - "id": 13627, + "id": 15411, "properties": { "east": "tall", "north": "low", @@ -200108,7 +215963,7 @@ } }, { - "id": 13628, + "id": 15412, "properties": { "east": "tall", "north": "low", @@ -200119,7 +215974,7 @@ } }, { - "id": 13629, + "id": 15413, "properties": { "east": "tall", "north": "low", @@ -200130,7 +215985,7 @@ } }, { - "id": 13630, + "id": 15414, "properties": { "east": "tall", "north": "low", @@ -200141,7 +215996,7 @@ } }, { - "id": 13631, + "id": 15415, "properties": { "east": "tall", "north": "low", @@ -200152,7 +216007,7 @@ } }, { - "id": 13632, + "id": 15416, "properties": { "east": "tall", "north": "low", @@ -200163,7 +216018,7 @@ } }, { - "id": 13633, + "id": 15417, "properties": { "east": "tall", "north": "low", @@ -200174,7 +216029,7 @@ } }, { - "id": 13634, + "id": 15418, "properties": { "east": "tall", "north": "low", @@ -200185,7 +216040,7 @@ } }, { - "id": 13635, + "id": 15419, "properties": { "east": "tall", "north": "low", @@ -200196,7 +216051,7 @@ } }, { - "id": 13636, + "id": 15420, "properties": { "east": "tall", "north": "low", @@ -200207,7 +216062,7 @@ } }, { - "id": 13637, + "id": 15421, "properties": { "east": "tall", "north": "low", @@ -200218,7 +216073,7 @@ } }, { - "id": 13638, + "id": 15422, "properties": { "east": "tall", "north": "low", @@ -200229,7 +216084,7 @@ } }, { - "id": 13639, + "id": 15423, "properties": { "east": "tall", "north": "low", @@ -200240,7 +216095,7 @@ } }, { - "id": 13640, + "id": 15424, "properties": { "east": "tall", "north": "low", @@ -200251,7 +216106,7 @@ } }, { - "id": 13641, + "id": 15425, "properties": { "east": "tall", "north": "low", @@ -200262,7 +216117,7 @@ } }, { - "id": 13642, + "id": 15426, "properties": { "east": "tall", "north": "low", @@ -200273,7 +216128,7 @@ } }, { - "id": 13643, + "id": 15427, "properties": { "east": "tall", "north": "low", @@ -200284,7 +216139,7 @@ } }, { - "id": 13644, + "id": 15428, "properties": { "east": "tall", "north": "low", @@ -200295,7 +216150,7 @@ } }, { - "id": 13645, + "id": 15429, "properties": { "east": "tall", "north": "low", @@ -200306,7 +216161,7 @@ } }, { - "id": 13646, + "id": 15430, "properties": { "east": "tall", "north": "low", @@ -200317,7 +216172,7 @@ } }, { - "id": 13647, + "id": 15431, "properties": { "east": "tall", "north": "low", @@ -200328,7 +216183,7 @@ } }, { - "id": 13648, + "id": 15432, "properties": { "east": "tall", "north": "low", @@ -200339,7 +216194,7 @@ } }, { - "id": 13649, + "id": 15433, "properties": { "east": "tall", "north": "low", @@ -200350,7 +216205,7 @@ } }, { - "id": 13650, + "id": 15434, "properties": { "east": "tall", "north": "low", @@ -200361,7 +216216,7 @@ } }, { - "id": 13651, + "id": 15435, "properties": { "east": "tall", "north": "low", @@ -200372,7 +216227,7 @@ } }, { - "id": 13652, + "id": 15436, "properties": { "east": "tall", "north": "low", @@ -200383,7 +216238,7 @@ } }, { - "id": 13653, + "id": 15437, "properties": { "east": "tall", "north": "low", @@ -200394,7 +216249,7 @@ } }, { - "id": 13654, + "id": 15438, "properties": { "east": "tall", "north": "low", @@ -200405,7 +216260,7 @@ } }, { - "id": 13655, + "id": 15439, "properties": { "east": "tall", "north": "low", @@ -200416,7 +216271,7 @@ } }, { - "id": 13656, + "id": 15440, "properties": { "east": "tall", "north": "tall", @@ -200427,7 +216282,7 @@ } }, { - "id": 13657, + "id": 15441, "properties": { "east": "tall", "north": "tall", @@ -200438,7 +216293,7 @@ } }, { - "id": 13658, + "id": 15442, "properties": { "east": "tall", "north": "tall", @@ -200449,7 +216304,7 @@ } }, { - "id": 13659, + "id": 15443, "properties": { "east": "tall", "north": "tall", @@ -200460,7 +216315,7 @@ } }, { - "id": 13660, + "id": 15444, "properties": { "east": "tall", "north": "tall", @@ -200471,7 +216326,7 @@ } }, { - "id": 13661, + "id": 15445, "properties": { "east": "tall", "north": "tall", @@ -200482,7 +216337,7 @@ } }, { - "id": 13662, + "id": 15446, "properties": { "east": "tall", "north": "tall", @@ -200493,7 +216348,7 @@ } }, { - "id": 13663, + "id": 15447, "properties": { "east": "tall", "north": "tall", @@ -200504,7 +216359,7 @@ } }, { - "id": 13664, + "id": 15448, "properties": { "east": "tall", "north": "tall", @@ -200515,7 +216370,7 @@ } }, { - "id": 13665, + "id": 15449, "properties": { "east": "tall", "north": "tall", @@ -200526,7 +216381,7 @@ } }, { - "id": 13666, + "id": 15450, "properties": { "east": "tall", "north": "tall", @@ -200537,7 +216392,7 @@ } }, { - "id": 13667, + "id": 15451, "properties": { "east": "tall", "north": "tall", @@ -200548,7 +216403,7 @@ } }, { - "id": 13668, + "id": 15452, "properties": { "east": "tall", "north": "tall", @@ -200559,7 +216414,7 @@ } }, { - "id": 13669, + "id": 15453, "properties": { "east": "tall", "north": "tall", @@ -200570,7 +216425,7 @@ } }, { - "id": 13670, + "id": 15454, "properties": { "east": "tall", "north": "tall", @@ -200581,7 +216436,7 @@ } }, { - "id": 13671, + "id": 15455, "properties": { "east": "tall", "north": "tall", @@ -200592,7 +216447,7 @@ } }, { - "id": 13672, + "id": 15456, "properties": { "east": "tall", "north": "tall", @@ -200603,7 +216458,7 @@ } }, { - "id": 13673, + "id": 15457, "properties": { "east": "tall", "north": "tall", @@ -200614,7 +216469,7 @@ } }, { - "id": 13674, + "id": 15458, "properties": { "east": "tall", "north": "tall", @@ -200625,7 +216480,7 @@ } }, { - "id": 13675, + "id": 15459, "properties": { "east": "tall", "north": "tall", @@ -200636,7 +216491,7 @@ } }, { - "id": 13676, + "id": 15460, "properties": { "east": "tall", "north": "tall", @@ -200647,7 +216502,7 @@ } }, { - "id": 13677, + "id": 15461, "properties": { "east": "tall", "north": "tall", @@ -200658,7 +216513,7 @@ } }, { - "id": 13678, + "id": 15462, "properties": { "east": "tall", "north": "tall", @@ -200669,7 +216524,7 @@ } }, { - "id": 13679, + "id": 15463, "properties": { "east": "tall", "north": "tall", @@ -200680,7 +216535,7 @@ } }, { - "id": 13680, + "id": 15464, "properties": { "east": "tall", "north": "tall", @@ -200691,7 +216546,7 @@ } }, { - "id": 13681, + "id": 15465, "properties": { "east": "tall", "north": "tall", @@ -200702,7 +216557,7 @@ } }, { - "id": 13682, + "id": 15466, "properties": { "east": "tall", "north": "tall", @@ -200713,7 +216568,7 @@ } }, { - "id": 13683, + "id": 15467, "properties": { "east": "tall", "north": "tall", @@ -200724,7 +216579,7 @@ } }, { - "id": 13684, + "id": 15468, "properties": { "east": "tall", "north": "tall", @@ -200735,7 +216590,7 @@ } }, { - "id": 13685, + "id": 15469, "properties": { "east": "tall", "north": "tall", @@ -200746,7 +216601,7 @@ } }, { - "id": 13686, + "id": 15470, "properties": { "east": "tall", "north": "tall", @@ -200757,7 +216612,7 @@ } }, { - "id": 13687, + "id": 15471, "properties": { "east": "tall", "north": "tall", @@ -200768,7 +216623,7 @@ } }, { - "id": 13688, + "id": 15472, "properties": { "east": "tall", "north": "tall", @@ -200779,7 +216634,7 @@ } }, { - "id": 13689, + "id": 15473, "properties": { "east": "tall", "north": "tall", @@ -200790,7 +216645,7 @@ } }, { - "id": 13690, + "id": 15474, "properties": { "east": "tall", "north": "tall", @@ -200801,7 +216656,7 @@ } }, { - "id": 13691, + "id": 15475, "properties": { "east": "tall", "north": "tall", @@ -200817,7 +216672,7 @@ "states": [ { "default": true, - "id": 4868 + "id": 6308 } ] }, @@ -200841,7 +216696,7 @@ }, "states": [ { - "id": 4206, + "id": 5582, "properties": { "face": "floor", "facing": "north", @@ -200849,7 +216704,7 @@ } }, { - "id": 4207, + "id": 5583, "properties": { "face": "floor", "facing": "north", @@ -200857,7 +216712,7 @@ } }, { - "id": 4208, + "id": 5584, "properties": { "face": "floor", "facing": "south", @@ -200865,7 +216720,7 @@ } }, { - "id": 4209, + "id": 5585, "properties": { "face": "floor", "facing": "south", @@ -200873,7 +216728,7 @@ } }, { - "id": 4210, + "id": 5586, "properties": { "face": "floor", "facing": "west", @@ -200881,7 +216736,7 @@ } }, { - "id": 4211, + "id": 5587, "properties": { "face": "floor", "facing": "west", @@ -200889,7 +216744,7 @@ } }, { - "id": 4212, + "id": 5588, "properties": { "face": "floor", "facing": "east", @@ -200897,7 +216752,7 @@ } }, { - "id": 4213, + "id": 5589, "properties": { "face": "floor", "facing": "east", @@ -200905,7 +216760,7 @@ } }, { - "id": 4214, + "id": 5590, "properties": { "face": "wall", "facing": "north", @@ -200914,7 +216769,7 @@ }, { "default": true, - "id": 4215, + "id": 5591, "properties": { "face": "wall", "facing": "north", @@ -200922,7 +216777,7 @@ } }, { - "id": 4216, + "id": 5592, "properties": { "face": "wall", "facing": "south", @@ -200930,7 +216785,7 @@ } }, { - "id": 4217, + "id": 5593, "properties": { "face": "wall", "facing": "south", @@ -200938,7 +216793,7 @@ } }, { - "id": 4218, + "id": 5594, "properties": { "face": "wall", "facing": "west", @@ -200946,7 +216801,7 @@ } }, { - "id": 4219, + "id": 5595, "properties": { "face": "wall", "facing": "west", @@ -200954,7 +216809,7 @@ } }, { - "id": 4220, + "id": 5596, "properties": { "face": "wall", "facing": "east", @@ -200962,7 +216817,7 @@ } }, { - "id": 4221, + "id": 5597, "properties": { "face": "wall", "facing": "east", @@ -200970,7 +216825,7 @@ } }, { - "id": 4222, + "id": 5598, "properties": { "face": "ceiling", "facing": "north", @@ -200978,7 +216833,7 @@ } }, { - "id": 4223, + "id": 5599, "properties": { "face": "ceiling", "facing": "north", @@ -200986,7 +216841,7 @@ } }, { - "id": 4224, + "id": 5600, "properties": { "face": "ceiling", "facing": "south", @@ -200994,7 +216849,7 @@ } }, { - "id": 4225, + "id": 5601, "properties": { "face": "ceiling", "facing": "south", @@ -201002,7 +216857,7 @@ } }, { - "id": 4226, + "id": 5602, "properties": { "face": "ceiling", "facing": "west", @@ -201010,7 +216865,7 @@ } }, { - "id": 4227, + "id": 5603, "properties": { "face": "ceiling", "facing": "west", @@ -201018,7 +216873,7 @@ } }, { - "id": 4228, + "id": 5604, "properties": { "face": "ceiling", "facing": "east", @@ -201026,7 +216881,7 @@ } }, { - "id": 4229, + "id": 5605, "properties": { "face": "ceiling", "facing": "east", @@ -201044,14 +216899,14 @@ }, "states": [ { - "id": 4112, + "id": 5486, "properties": { "powered": "true" } }, { "default": true, - "id": 4113, + "id": 5487, "properties": { "powered": "false" } @@ -201072,21 +216927,21 @@ }, "states": [ { - "id": 9083, + "id": 10739, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 9084, + "id": 10740, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 9085, + "id": 10741, "properties": { "type": "bottom", "waterlogged": "true" @@ -201094,21 +216949,21 @@ }, { "default": true, - "id": 9086, + "id": 10742, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 9087, + "id": 10743, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 9088, + "id": 10744, "properties": { "type": "double", "waterlogged": "false" @@ -201142,7 +216997,7 @@ }, "states": [ { - "id": 11030, + "id": 12814, "properties": { "facing": "north", "half": "top", @@ -201151,7 +217006,7 @@ } }, { - "id": 11031, + "id": 12815, "properties": { "facing": "north", "half": "top", @@ -201160,7 +217015,7 @@ } }, { - "id": 11032, + "id": 12816, "properties": { "facing": "north", "half": "top", @@ -201169,7 +217024,7 @@ } }, { - "id": 11033, + "id": 12817, "properties": { "facing": "north", "half": "top", @@ -201178,7 +217033,7 @@ } }, { - "id": 11034, + "id": 12818, "properties": { "facing": "north", "half": "top", @@ -201187,7 +217042,7 @@ } }, { - "id": 11035, + "id": 12819, "properties": { "facing": "north", "half": "top", @@ -201196,7 +217051,7 @@ } }, { - "id": 11036, + "id": 12820, "properties": { "facing": "north", "half": "top", @@ -201205,7 +217060,7 @@ } }, { - "id": 11037, + "id": 12821, "properties": { "facing": "north", "half": "top", @@ -201214,7 +217069,7 @@ } }, { - "id": 11038, + "id": 12822, "properties": { "facing": "north", "half": "top", @@ -201223,7 +217078,7 @@ } }, { - "id": 11039, + "id": 12823, "properties": { "facing": "north", "half": "top", @@ -201232,7 +217087,7 @@ } }, { - "id": 11040, + "id": 12824, "properties": { "facing": "north", "half": "bottom", @@ -201242,7 +217097,7 @@ }, { "default": true, - "id": 11041, + "id": 12825, "properties": { "facing": "north", "half": "bottom", @@ -201251,7 +217106,7 @@ } }, { - "id": 11042, + "id": 12826, "properties": { "facing": "north", "half": "bottom", @@ -201260,7 +217115,7 @@ } }, { - "id": 11043, + "id": 12827, "properties": { "facing": "north", "half": "bottom", @@ -201269,7 +217124,7 @@ } }, { - "id": 11044, + "id": 12828, "properties": { "facing": "north", "half": "bottom", @@ -201278,7 +217133,7 @@ } }, { - "id": 11045, + "id": 12829, "properties": { "facing": "north", "half": "bottom", @@ -201287,7 +217142,7 @@ } }, { - "id": 11046, + "id": 12830, "properties": { "facing": "north", "half": "bottom", @@ -201296,7 +217151,7 @@ } }, { - "id": 11047, + "id": 12831, "properties": { "facing": "north", "half": "bottom", @@ -201305,7 +217160,7 @@ } }, { - "id": 11048, + "id": 12832, "properties": { "facing": "north", "half": "bottom", @@ -201314,7 +217169,7 @@ } }, { - "id": 11049, + "id": 12833, "properties": { "facing": "north", "half": "bottom", @@ -201323,7 +217178,7 @@ } }, { - "id": 11050, + "id": 12834, "properties": { "facing": "south", "half": "top", @@ -201332,7 +217187,7 @@ } }, { - "id": 11051, + "id": 12835, "properties": { "facing": "south", "half": "top", @@ -201341,7 +217196,7 @@ } }, { - "id": 11052, + "id": 12836, "properties": { "facing": "south", "half": "top", @@ -201350,7 +217205,7 @@ } }, { - "id": 11053, + "id": 12837, "properties": { "facing": "south", "half": "top", @@ -201359,7 +217214,7 @@ } }, { - "id": 11054, + "id": 12838, "properties": { "facing": "south", "half": "top", @@ -201368,7 +217223,7 @@ } }, { - "id": 11055, + "id": 12839, "properties": { "facing": "south", "half": "top", @@ -201377,7 +217232,7 @@ } }, { - "id": 11056, + "id": 12840, "properties": { "facing": "south", "half": "top", @@ -201386,7 +217241,7 @@ } }, { - "id": 11057, + "id": 12841, "properties": { "facing": "south", "half": "top", @@ -201395,7 +217250,7 @@ } }, { - "id": 11058, + "id": 12842, "properties": { "facing": "south", "half": "top", @@ -201404,7 +217259,7 @@ } }, { - "id": 11059, + "id": 12843, "properties": { "facing": "south", "half": "top", @@ -201413,7 +217268,7 @@ } }, { - "id": 11060, + "id": 12844, "properties": { "facing": "south", "half": "bottom", @@ -201422,7 +217277,7 @@ } }, { - "id": 11061, + "id": 12845, "properties": { "facing": "south", "half": "bottom", @@ -201431,7 +217286,7 @@ } }, { - "id": 11062, + "id": 12846, "properties": { "facing": "south", "half": "bottom", @@ -201440,7 +217295,7 @@ } }, { - "id": 11063, + "id": 12847, "properties": { "facing": "south", "half": "bottom", @@ -201449,7 +217304,7 @@ } }, { - "id": 11064, + "id": 12848, "properties": { "facing": "south", "half": "bottom", @@ -201458,7 +217313,7 @@ } }, { - "id": 11065, + "id": 12849, "properties": { "facing": "south", "half": "bottom", @@ -201467,7 +217322,7 @@ } }, { - "id": 11066, + "id": 12850, "properties": { "facing": "south", "half": "bottom", @@ -201476,7 +217331,7 @@ } }, { - "id": 11067, + "id": 12851, "properties": { "facing": "south", "half": "bottom", @@ -201485,7 +217340,7 @@ } }, { - "id": 11068, + "id": 12852, "properties": { "facing": "south", "half": "bottom", @@ -201494,7 +217349,7 @@ } }, { - "id": 11069, + "id": 12853, "properties": { "facing": "south", "half": "bottom", @@ -201503,7 +217358,7 @@ } }, { - "id": 11070, + "id": 12854, "properties": { "facing": "west", "half": "top", @@ -201512,7 +217367,7 @@ } }, { - "id": 11071, + "id": 12855, "properties": { "facing": "west", "half": "top", @@ -201521,7 +217376,7 @@ } }, { - "id": 11072, + "id": 12856, "properties": { "facing": "west", "half": "top", @@ -201530,7 +217385,7 @@ } }, { - "id": 11073, + "id": 12857, "properties": { "facing": "west", "half": "top", @@ -201539,7 +217394,7 @@ } }, { - "id": 11074, + "id": 12858, "properties": { "facing": "west", "half": "top", @@ -201548,7 +217403,7 @@ } }, { - "id": 11075, + "id": 12859, "properties": { "facing": "west", "half": "top", @@ -201557,7 +217412,7 @@ } }, { - "id": 11076, + "id": 12860, "properties": { "facing": "west", "half": "top", @@ -201566,7 +217421,7 @@ } }, { - "id": 11077, + "id": 12861, "properties": { "facing": "west", "half": "top", @@ -201575,7 +217430,7 @@ } }, { - "id": 11078, + "id": 12862, "properties": { "facing": "west", "half": "top", @@ -201584,7 +217439,7 @@ } }, { - "id": 11079, + "id": 12863, "properties": { "facing": "west", "half": "top", @@ -201593,7 +217448,7 @@ } }, { - "id": 11080, + "id": 12864, "properties": { "facing": "west", "half": "bottom", @@ -201602,7 +217457,7 @@ } }, { - "id": 11081, + "id": 12865, "properties": { "facing": "west", "half": "bottom", @@ -201611,7 +217466,7 @@ } }, { - "id": 11082, + "id": 12866, "properties": { "facing": "west", "half": "bottom", @@ -201620,7 +217475,7 @@ } }, { - "id": 11083, + "id": 12867, "properties": { "facing": "west", "half": "bottom", @@ -201629,7 +217484,7 @@ } }, { - "id": 11084, + "id": 12868, "properties": { "facing": "west", "half": "bottom", @@ -201638,7 +217493,7 @@ } }, { - "id": 11085, + "id": 12869, "properties": { "facing": "west", "half": "bottom", @@ -201647,7 +217502,7 @@ } }, { - "id": 11086, + "id": 12870, "properties": { "facing": "west", "half": "bottom", @@ -201656,7 +217511,7 @@ } }, { - "id": 11087, + "id": 12871, "properties": { "facing": "west", "half": "bottom", @@ -201665,7 +217520,7 @@ } }, { - "id": 11088, + "id": 12872, "properties": { "facing": "west", "half": "bottom", @@ -201674,7 +217529,7 @@ } }, { - "id": 11089, + "id": 12873, "properties": { "facing": "west", "half": "bottom", @@ -201683,7 +217538,7 @@ } }, { - "id": 11090, + "id": 12874, "properties": { "facing": "east", "half": "top", @@ -201692,7 +217547,7 @@ } }, { - "id": 11091, + "id": 12875, "properties": { "facing": "east", "half": "top", @@ -201701,7 +217556,7 @@ } }, { - "id": 11092, + "id": 12876, "properties": { "facing": "east", "half": "top", @@ -201710,7 +217565,7 @@ } }, { - "id": 11093, + "id": 12877, "properties": { "facing": "east", "half": "top", @@ -201719,7 +217574,7 @@ } }, { - "id": 11094, + "id": 12878, "properties": { "facing": "east", "half": "top", @@ -201728,7 +217583,7 @@ } }, { - "id": 11095, + "id": 12879, "properties": { "facing": "east", "half": "top", @@ -201737,7 +217592,7 @@ } }, { - "id": 11096, + "id": 12880, "properties": { "facing": "east", "half": "top", @@ -201746,7 +217601,7 @@ } }, { - "id": 11097, + "id": 12881, "properties": { "facing": "east", "half": "top", @@ -201755,7 +217610,7 @@ } }, { - "id": 11098, + "id": 12882, "properties": { "facing": "east", "half": "top", @@ -201764,7 +217619,7 @@ } }, { - "id": 11099, + "id": 12883, "properties": { "facing": "east", "half": "top", @@ -201773,7 +217628,7 @@ } }, { - "id": 11100, + "id": 12884, "properties": { "facing": "east", "half": "bottom", @@ -201782,7 +217637,7 @@ } }, { - "id": 11101, + "id": 12885, "properties": { "facing": "east", "half": "bottom", @@ -201791,7 +217646,7 @@ } }, { - "id": 11102, + "id": 12886, "properties": { "facing": "east", "half": "bottom", @@ -201800,7 +217655,7 @@ } }, { - "id": 11103, + "id": 12887, "properties": { "facing": "east", "half": "bottom", @@ -201809,7 +217664,7 @@ } }, { - "id": 11104, + "id": 12888, "properties": { "facing": "east", "half": "bottom", @@ -201818,7 +217673,7 @@ } }, { - "id": 11105, + "id": 12889, "properties": { "facing": "east", "half": "bottom", @@ -201827,7 +217682,7 @@ } }, { - "id": 11106, + "id": 12890, "properties": { "facing": "east", "half": "bottom", @@ -201836,7 +217691,7 @@ } }, { - "id": 11107, + "id": 12891, "properties": { "facing": "east", "half": "bottom", @@ -201845,7 +217700,7 @@ } }, { - "id": 11108, + "id": 12892, "properties": { "facing": "east", "half": "bottom", @@ -201854,7 +217709,7 @@ } }, { - "id": 11109, + "id": 12893, "properties": { "facing": "east", "half": "bottom", @@ -201876,25 +217731,25 @@ "states": [ { "default": true, - "id": 16055, + "id": 17839, "properties": { "facing": "north" } }, { - "id": 16056, + "id": 17840, "properties": { "facing": "south" } }, { - "id": 16057, + "id": 17841, "properties": { "facing": "west" } }, { - "id": 16058, + "id": 17842, "properties": { "facing": "east" } @@ -201911,20 +217766,20 @@ }, "states": [ { - "id": 152, + "id": 157, "properties": { "axis": "x" } }, { "default": true, - "id": 153, + "id": 158, "properties": { "axis": "y" } }, { - "id": 154, + "id": 159, "properties": { "axis": "z" } @@ -201941,20 +217796,50 @@ }, "states": [ { - "id": 197, + "id": 205, "properties": { "axis": "x" } }, { "default": true, - "id": 198, + "id": 206, "properties": { "axis": "y" } }, { - "id": 199, + "id": 207, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_bamboo_block": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 169, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 170, + "properties": { + "axis": "y" + } + }, + { + "id": 171, "properties": { "axis": "z" } @@ -201971,20 +217856,20 @@ }, "states": [ { - "id": 146, + "id": 151, "properties": { "axis": "x" } }, { "default": true, - "id": 147, + "id": 152, "properties": { "axis": "y" } }, { - "id": 148, + "id": 153, "properties": { "axis": "z" } @@ -202001,20 +217886,20 @@ }, "states": [ { - "id": 191, + "id": 199, "properties": { "axis": "x" } }, { "default": true, - "id": 192, + "id": 200, "properties": { "axis": "y" } }, { - "id": 193, + "id": 201, "properties": { "axis": "z" } @@ -202031,20 +217916,20 @@ }, "states": [ { - "id": 16193, + "id": 17977, "properties": { "axis": "x" } }, { "default": true, - "id": 16194, + "id": 17978, "properties": { "axis": "y" } }, { - "id": 16195, + "id": 17979, "properties": { "axis": "z" } @@ -202061,20 +217946,20 @@ }, "states": [ { - "id": 16187, + "id": 17971, "properties": { "axis": "x" } }, { "default": true, - "id": 16188, + "id": 17972, "properties": { "axis": "y" } }, { - "id": 16189, + "id": 17973, "properties": { "axis": "z" } @@ -202091,20 +217976,20 @@ }, "states": [ { - "id": 155, + "id": 160, "properties": { "axis": "x" } }, { "default": true, - "id": 156, + "id": 161, "properties": { "axis": "y" } }, { - "id": 157, + "id": 162, "properties": { "axis": "z" } @@ -202121,20 +218006,20 @@ }, "states": [ { - "id": 200, + "id": 208, "properties": { "axis": "x" } }, { "default": true, - "id": 201, + "id": 209, "properties": { "axis": "y" } }, { - "id": 202, + "id": 210, "properties": { "axis": "z" } @@ -202151,20 +218036,20 @@ }, "states": [ { - "id": 149, + "id": 154, "properties": { "axis": "x" } }, { "default": true, - "id": 150, + "id": 155, "properties": { "axis": "y" } }, { - "id": 151, + "id": 156, "properties": { "axis": "z" } @@ -202181,20 +218066,20 @@ }, "states": [ { - "id": 194, + "id": 202, "properties": { "axis": "x" } }, { "default": true, - "id": 195, + "id": 203, "properties": { "axis": "y" } }, { - "id": 196, + "id": 204, "properties": { "axis": "z" } @@ -202211,20 +218096,20 @@ }, "states": [ { - "id": 161, + "id": 166, "properties": { "axis": "x" } }, { "default": true, - "id": 162, + "id": 167, "properties": { "axis": "y" } }, { - "id": 163, + "id": 168, "properties": { "axis": "z" } @@ -202241,20 +218126,20 @@ }, "states": [ { - "id": 203, + "id": 211, "properties": { "axis": "x" } }, { "default": true, - "id": 204, + "id": 212, "properties": { "axis": "y" } }, { - "id": 205, + "id": 213, "properties": { "axis": "z" } @@ -202271,20 +218156,20 @@ }, "states": [ { - "id": 158, + "id": 163, "properties": { "axis": "x" } }, { "default": true, - "id": 159, + "id": 164, "properties": { "axis": "y" } }, { - "id": 160, + "id": 165, "properties": { "axis": "z" } @@ -202301,20 +218186,20 @@ }, "states": [ { - "id": 185, + "id": 193, "properties": { "axis": "x" } }, { "default": true, - "id": 186, + "id": 194, "properties": { "axis": "y" } }, { - "id": 187, + "id": 195, "properties": { "axis": "z" } @@ -202331,20 +218216,20 @@ }, "states": [ { - "id": 143, + "id": 148, "properties": { "axis": "x" } }, { "default": true, - "id": 144, + "id": 149, "properties": { "axis": "y" } }, { - "id": 145, + "id": 150, "properties": { "axis": "z" } @@ -202361,20 +218246,20 @@ }, "states": [ { - "id": 188, + "id": 196, "properties": { "axis": "x" } }, { "default": true, - "id": 189, + "id": 197, "properties": { "axis": "y" } }, { - "id": 190, + "id": 198, "properties": { "axis": "z" } @@ -202391,20 +218276,20 @@ }, "states": [ { - "id": 16176, + "id": 17960, "properties": { "axis": "x" } }, { "default": true, - "id": 16177, + "id": 17961, "properties": { "axis": "y" } }, { - "id": 16178, + "id": 17962, "properties": { "axis": "z" } @@ -202421,20 +218306,20 @@ }, "states": [ { - "id": 16170, + "id": 17954, "properties": { "axis": "x" } }, { "default": true, - "id": 16171, + "id": 17955, "properties": { "axis": "y" } }, { - "id": 16172, + "id": 17956, "properties": { "axis": "z" } @@ -202452,26 +218337,26 @@ }, "states": [ { - "id": 16944, + "id": 18728, "properties": { "mode": "save" } }, { "default": true, - "id": 16945, + "id": 18729, "properties": { "mode": "load" } }, { - "id": 16946, + "id": 18730, "properties": { "mode": "corner" } }, { - "id": 16947, + "id": 18731, "properties": { "mode": "data" } @@ -202482,7 +218367,7 @@ "states": [ { "default": true, - "id": 10140 + "id": 11924 } ] }, @@ -202510,97 +218395,97 @@ "states": [ { "default": true, - "id": 4257, + "id": 5633, "properties": { "age": "0" } }, { - "id": 4258, + "id": 5634, "properties": { "age": "1" } }, { - "id": 4259, + "id": 5635, "properties": { "age": "2" } }, { - "id": 4260, + "id": 5636, "properties": { "age": "3" } }, { - "id": 4261, + "id": 5637, "properties": { "age": "4" } }, { - "id": 4262, + "id": 5638, "properties": { "age": "5" } }, { - "id": 4263, + "id": 5639, "properties": { "age": "6" } }, { - "id": 4264, + "id": 5640, "properties": { "age": "7" } }, { - "id": 4265, + "id": 5641, "properties": { "age": "8" } }, { - "id": 4266, + "id": 5642, "properties": { "age": "9" } }, { - "id": 4267, + "id": 5643, "properties": { "age": "10" } }, { - "id": 4268, + "id": 5644, "properties": { "age": "11" } }, { - "id": 4269, + "id": 5645, "properties": { "age": "12" } }, { - "id": 4270, + "id": 5646, "properties": { "age": "13" } }, { - "id": 4271, + "id": 5647, "properties": { "age": "14" } }, { - "id": 4272, + "id": 5648, "properties": { "age": "15" } @@ -202616,14 +218501,14 @@ }, "states": [ { - "id": 8626, + "id": 10270, "properties": { "half": "upper" } }, { "default": true, - "id": 8627, + "id": 10271, "properties": { "half": "lower" } @@ -202642,25 +218527,25 @@ "states": [ { "default": true, - "id": 16163, + "id": 17947, "properties": { "age": "0" } }, { - "id": 16164, + "id": 17948, "properties": { "age": "1" } }, { - "id": 16165, + "id": 17949, "properties": { "age": "2" } }, { - "id": 16166, + "id": 17950, "properties": { "age": "3" } @@ -202676,14 +218561,14 @@ }, "states": [ { - "id": 8634, + "id": 10278, "properties": { "half": "upper" } }, { "default": true, - "id": 8635, + "id": 10279, "properties": { "half": "lower" } @@ -202699,14 +218584,14 @@ }, "states": [ { - "id": 1600, + "id": 1958, "properties": { "half": "upper" } }, { "default": true, - "id": 1601, + "id": 1959, "properties": { "half": "lower" } @@ -202737,97 +218622,97 @@ "states": [ { "default": true, - "id": 16969, + "id": 18753, "properties": { "power": "0" } }, { - "id": 16970, + "id": 18754, "properties": { "power": "1" } }, { - "id": 16971, + "id": 18755, "properties": { "power": "2" } }, { - "id": 16972, + "id": 18756, "properties": { "power": "3" } }, { - "id": 16973, + "id": 18757, "properties": { "power": "4" } }, { - "id": 16974, + "id": 18758, "properties": { "power": "5" } }, { - "id": 16975, + "id": 18759, "properties": { "power": "6" } }, { - "id": 16976, + "id": 18760, "properties": { "power": "7" } }, { - "id": 16977, + "id": 18761, "properties": { "power": "8" } }, { - "id": 16978, + "id": 18762, "properties": { "power": "9" } }, { - "id": 16979, + "id": 18763, "properties": { "power": "10" } }, { - "id": 16980, + "id": 18764, "properties": { "power": "11" } }, { - "id": 16981, + "id": 18765, "properties": { "power": "12" } }, { - "id": 16982, + "id": 18766, "properties": { "power": "13" } }, { - "id": 16983, + "id": 18767, "properties": { "power": "14" } }, { - "id": 16984, + "id": 18768, "properties": { "power": "15" } @@ -202838,7 +218723,7 @@ "states": [ { "default": true, - "id": 8623 + "id": 10267 } ] }, @@ -202846,7 +218731,7 @@ "states": [ { "default": true, - "id": 18671 + "id": 20455 } ] }, @@ -202859,14 +218744,14 @@ }, "states": [ { - "id": 1684, + "id": 2042, "properties": { "unstable": "true" } }, { "default": true, - "id": 1685, + "id": 2043, "properties": { "unstable": "false" } @@ -202877,7 +218762,7 @@ "states": [ { "default": true, - "id": 1689 + "id": 2303 } ] }, @@ -202901,7 +218786,7 @@ }, "states": [ { - "id": 7239, + "id": 8723, "properties": { "type": "single", "facing": "north", @@ -202910,7 +218795,7 @@ }, { "default": true, - "id": 7240, + "id": 8724, "properties": { "type": "single", "facing": "north", @@ -202918,7 +218803,7 @@ } }, { - "id": 7241, + "id": 8725, "properties": { "type": "left", "facing": "north", @@ -202926,7 +218811,7 @@ } }, { - "id": 7242, + "id": 8726, "properties": { "type": "left", "facing": "north", @@ -202934,7 +218819,7 @@ } }, { - "id": 7243, + "id": 8727, "properties": { "type": "right", "facing": "north", @@ -202942,7 +218827,7 @@ } }, { - "id": 7244, + "id": 8728, "properties": { "type": "right", "facing": "north", @@ -202950,7 +218835,7 @@ } }, { - "id": 7245, + "id": 8729, "properties": { "type": "single", "facing": "south", @@ -202958,7 +218843,7 @@ } }, { - "id": 7246, + "id": 8730, "properties": { "type": "single", "facing": "south", @@ -202966,7 +218851,7 @@ } }, { - "id": 7247, + "id": 8731, "properties": { "type": "left", "facing": "south", @@ -202974,7 +218859,7 @@ } }, { - "id": 7248, + "id": 8732, "properties": { "type": "left", "facing": "south", @@ -202982,7 +218867,7 @@ } }, { - "id": 7249, + "id": 8733, "properties": { "type": "right", "facing": "south", @@ -202990,7 +218875,7 @@ } }, { - "id": 7250, + "id": 8734, "properties": { "type": "right", "facing": "south", @@ -202998,7 +218883,7 @@ } }, { - "id": 7251, + "id": 8735, "properties": { "type": "single", "facing": "west", @@ -203006,7 +218891,7 @@ } }, { - "id": 7252, + "id": 8736, "properties": { "type": "single", "facing": "west", @@ -203014,7 +218899,7 @@ } }, { - "id": 7253, + "id": 8737, "properties": { "type": "left", "facing": "west", @@ -203022,7 +218907,7 @@ } }, { - "id": 7254, + "id": 8738, "properties": { "type": "left", "facing": "west", @@ -203030,7 +218915,7 @@ } }, { - "id": 7255, + "id": 8739, "properties": { "type": "right", "facing": "west", @@ -203038,7 +218923,7 @@ } }, { - "id": 7256, + "id": 8740, "properties": { "type": "right", "facing": "west", @@ -203046,7 +218931,7 @@ } }, { - "id": 7257, + "id": 8741, "properties": { "type": "single", "facing": "east", @@ -203054,7 +218939,7 @@ } }, { - "id": 7258, + "id": 8742, "properties": { "type": "single", "facing": "east", @@ -203062,7 +218947,7 @@ } }, { - "id": 7259, + "id": 8743, "properties": { "type": "left", "facing": "east", @@ -203070,7 +218955,7 @@ } }, { - "id": 7260, + "id": 8744, "properties": { "type": "left", "facing": "east", @@ -203078,7 +218963,7 @@ } }, { - "id": 7261, + "id": 8745, "properties": { "type": "right", "facing": "east", @@ -203086,7 +218971,7 @@ } }, { - "id": 7262, + "id": 8746, "properties": { "type": "right", "facing": "east", @@ -203128,7 +219013,7 @@ }, "states": [ { - "id": 5867, + "id": 7307, "properties": { "attached": "true", "disarmed": "true", @@ -203140,7 +219025,7 @@ } }, { - "id": 5868, + "id": 7308, "properties": { "attached": "true", "disarmed": "true", @@ -203152,7 +219037,7 @@ } }, { - "id": 5869, + "id": 7309, "properties": { "attached": "true", "disarmed": "true", @@ -203164,7 +219049,7 @@ } }, { - "id": 5870, + "id": 7310, "properties": { "attached": "true", "disarmed": "true", @@ -203176,7 +219061,7 @@ } }, { - "id": 5871, + "id": 7311, "properties": { "attached": "true", "disarmed": "true", @@ -203188,7 +219073,7 @@ } }, { - "id": 5872, + "id": 7312, "properties": { "attached": "true", "disarmed": "true", @@ -203200,7 +219085,7 @@ } }, { - "id": 5873, + "id": 7313, "properties": { "attached": "true", "disarmed": "true", @@ -203212,7 +219097,7 @@ } }, { - "id": 5874, + "id": 7314, "properties": { "attached": "true", "disarmed": "true", @@ -203224,7 +219109,7 @@ } }, { - "id": 5875, + "id": 7315, "properties": { "attached": "true", "disarmed": "true", @@ -203236,7 +219121,7 @@ } }, { - "id": 5876, + "id": 7316, "properties": { "attached": "true", "disarmed": "true", @@ -203248,7 +219133,7 @@ } }, { - "id": 5877, + "id": 7317, "properties": { "attached": "true", "disarmed": "true", @@ -203260,7 +219145,7 @@ } }, { - "id": 5878, + "id": 7318, "properties": { "attached": "true", "disarmed": "true", @@ -203272,7 +219157,7 @@ } }, { - "id": 5879, + "id": 7319, "properties": { "attached": "true", "disarmed": "true", @@ -203284,7 +219169,7 @@ } }, { - "id": 5880, + "id": 7320, "properties": { "attached": "true", "disarmed": "true", @@ -203296,7 +219181,7 @@ } }, { - "id": 5881, + "id": 7321, "properties": { "attached": "true", "disarmed": "true", @@ -203308,7 +219193,7 @@ } }, { - "id": 5882, + "id": 7322, "properties": { "attached": "true", "disarmed": "true", @@ -203320,7 +219205,7 @@ } }, { - "id": 5883, + "id": 7323, "properties": { "attached": "true", "disarmed": "true", @@ -203332,7 +219217,7 @@ } }, { - "id": 5884, + "id": 7324, "properties": { "attached": "true", "disarmed": "true", @@ -203344,7 +219229,7 @@ } }, { - "id": 5885, + "id": 7325, "properties": { "attached": "true", "disarmed": "true", @@ -203356,7 +219241,7 @@ } }, { - "id": 5886, + "id": 7326, "properties": { "attached": "true", "disarmed": "true", @@ -203368,7 +219253,7 @@ } }, { - "id": 5887, + "id": 7327, "properties": { "attached": "true", "disarmed": "true", @@ -203380,7 +219265,7 @@ } }, { - "id": 5888, + "id": 7328, "properties": { "attached": "true", "disarmed": "true", @@ -203392,7 +219277,7 @@ } }, { - "id": 5889, + "id": 7329, "properties": { "attached": "true", "disarmed": "true", @@ -203404,7 +219289,7 @@ } }, { - "id": 5890, + "id": 7330, "properties": { "attached": "true", "disarmed": "true", @@ -203416,7 +219301,7 @@ } }, { - "id": 5891, + "id": 7331, "properties": { "attached": "true", "disarmed": "true", @@ -203428,7 +219313,7 @@ } }, { - "id": 5892, + "id": 7332, "properties": { "attached": "true", "disarmed": "true", @@ -203440,7 +219325,7 @@ } }, { - "id": 5893, + "id": 7333, "properties": { "attached": "true", "disarmed": "true", @@ -203452,7 +219337,7 @@ } }, { - "id": 5894, + "id": 7334, "properties": { "attached": "true", "disarmed": "true", @@ -203464,7 +219349,7 @@ } }, { - "id": 5895, + "id": 7335, "properties": { "attached": "true", "disarmed": "true", @@ -203476,7 +219361,7 @@ } }, { - "id": 5896, + "id": 7336, "properties": { "attached": "true", "disarmed": "true", @@ -203488,7 +219373,7 @@ } }, { - "id": 5897, + "id": 7337, "properties": { "attached": "true", "disarmed": "true", @@ -203500,7 +219385,7 @@ } }, { - "id": 5898, + "id": 7338, "properties": { "attached": "true", "disarmed": "true", @@ -203512,7 +219397,7 @@ } }, { - "id": 5899, + "id": 7339, "properties": { "attached": "true", "disarmed": "false", @@ -203524,7 +219409,7 @@ } }, { - "id": 5900, + "id": 7340, "properties": { "attached": "true", "disarmed": "false", @@ -203536,7 +219421,7 @@ } }, { - "id": 5901, + "id": 7341, "properties": { "attached": "true", "disarmed": "false", @@ -203548,7 +219433,7 @@ } }, { - "id": 5902, + "id": 7342, "properties": { "attached": "true", "disarmed": "false", @@ -203560,7 +219445,7 @@ } }, { - "id": 5903, + "id": 7343, "properties": { "attached": "true", "disarmed": "false", @@ -203572,7 +219457,7 @@ } }, { - "id": 5904, + "id": 7344, "properties": { "attached": "true", "disarmed": "false", @@ -203584,7 +219469,7 @@ } }, { - "id": 5905, + "id": 7345, "properties": { "attached": "true", "disarmed": "false", @@ -203596,7 +219481,7 @@ } }, { - "id": 5906, + "id": 7346, "properties": { "attached": "true", "disarmed": "false", @@ -203608,7 +219493,7 @@ } }, { - "id": 5907, + "id": 7347, "properties": { "attached": "true", "disarmed": "false", @@ -203620,7 +219505,7 @@ } }, { - "id": 5908, + "id": 7348, "properties": { "attached": "true", "disarmed": "false", @@ -203632,7 +219517,7 @@ } }, { - "id": 5909, + "id": 7349, "properties": { "attached": "true", "disarmed": "false", @@ -203644,7 +219529,7 @@ } }, { - "id": 5910, + "id": 7350, "properties": { "attached": "true", "disarmed": "false", @@ -203656,7 +219541,7 @@ } }, { - "id": 5911, + "id": 7351, "properties": { "attached": "true", "disarmed": "false", @@ -203668,7 +219553,7 @@ } }, { - "id": 5912, + "id": 7352, "properties": { "attached": "true", "disarmed": "false", @@ -203680,7 +219565,7 @@ } }, { - "id": 5913, + "id": 7353, "properties": { "attached": "true", "disarmed": "false", @@ -203692,7 +219577,7 @@ } }, { - "id": 5914, + "id": 7354, "properties": { "attached": "true", "disarmed": "false", @@ -203704,7 +219589,7 @@ } }, { - "id": 5915, + "id": 7355, "properties": { "attached": "true", "disarmed": "false", @@ -203716,7 +219601,7 @@ } }, { - "id": 5916, + "id": 7356, "properties": { "attached": "true", "disarmed": "false", @@ -203728,7 +219613,7 @@ } }, { - "id": 5917, + "id": 7357, "properties": { "attached": "true", "disarmed": "false", @@ -203740,7 +219625,7 @@ } }, { - "id": 5918, + "id": 7358, "properties": { "attached": "true", "disarmed": "false", @@ -203752,7 +219637,7 @@ } }, { - "id": 5919, + "id": 7359, "properties": { "attached": "true", "disarmed": "false", @@ -203764,7 +219649,7 @@ } }, { - "id": 5920, + "id": 7360, "properties": { "attached": "true", "disarmed": "false", @@ -203776,7 +219661,7 @@ } }, { - "id": 5921, + "id": 7361, "properties": { "attached": "true", "disarmed": "false", @@ -203788,7 +219673,7 @@ } }, { - "id": 5922, + "id": 7362, "properties": { "attached": "true", "disarmed": "false", @@ -203800,7 +219685,7 @@ } }, { - "id": 5923, + "id": 7363, "properties": { "attached": "true", "disarmed": "false", @@ -203812,7 +219697,7 @@ } }, { - "id": 5924, + "id": 7364, "properties": { "attached": "true", "disarmed": "false", @@ -203824,7 +219709,7 @@ } }, { - "id": 5925, + "id": 7365, "properties": { "attached": "true", "disarmed": "false", @@ -203836,7 +219721,7 @@ } }, { - "id": 5926, + "id": 7366, "properties": { "attached": "true", "disarmed": "false", @@ -203848,7 +219733,7 @@ } }, { - "id": 5927, + "id": 7367, "properties": { "attached": "true", "disarmed": "false", @@ -203860,7 +219745,7 @@ } }, { - "id": 5928, + "id": 7368, "properties": { "attached": "true", "disarmed": "false", @@ -203872,7 +219757,7 @@ } }, { - "id": 5929, + "id": 7369, "properties": { "attached": "true", "disarmed": "false", @@ -203884,7 +219769,7 @@ } }, { - "id": 5930, + "id": 7370, "properties": { "attached": "true", "disarmed": "false", @@ -203896,7 +219781,7 @@ } }, { - "id": 5931, + "id": 7371, "properties": { "attached": "false", "disarmed": "true", @@ -203908,7 +219793,7 @@ } }, { - "id": 5932, + "id": 7372, "properties": { "attached": "false", "disarmed": "true", @@ -203920,7 +219805,7 @@ } }, { - "id": 5933, + "id": 7373, "properties": { "attached": "false", "disarmed": "true", @@ -203932,7 +219817,7 @@ } }, { - "id": 5934, + "id": 7374, "properties": { "attached": "false", "disarmed": "true", @@ -203944,7 +219829,7 @@ } }, { - "id": 5935, + "id": 7375, "properties": { "attached": "false", "disarmed": "true", @@ -203956,7 +219841,7 @@ } }, { - "id": 5936, + "id": 7376, "properties": { "attached": "false", "disarmed": "true", @@ -203968,7 +219853,7 @@ } }, { - "id": 5937, + "id": 7377, "properties": { "attached": "false", "disarmed": "true", @@ -203980,7 +219865,7 @@ } }, { - "id": 5938, + "id": 7378, "properties": { "attached": "false", "disarmed": "true", @@ -203992,7 +219877,7 @@ } }, { - "id": 5939, + "id": 7379, "properties": { "attached": "false", "disarmed": "true", @@ -204004,7 +219889,7 @@ } }, { - "id": 5940, + "id": 7380, "properties": { "attached": "false", "disarmed": "true", @@ -204016,7 +219901,7 @@ } }, { - "id": 5941, + "id": 7381, "properties": { "attached": "false", "disarmed": "true", @@ -204028,7 +219913,7 @@ } }, { - "id": 5942, + "id": 7382, "properties": { "attached": "false", "disarmed": "true", @@ -204040,7 +219925,7 @@ } }, { - "id": 5943, + "id": 7383, "properties": { "attached": "false", "disarmed": "true", @@ -204052,7 +219937,7 @@ } }, { - "id": 5944, + "id": 7384, "properties": { "attached": "false", "disarmed": "true", @@ -204064,7 +219949,7 @@ } }, { - "id": 5945, + "id": 7385, "properties": { "attached": "false", "disarmed": "true", @@ -204076,7 +219961,7 @@ } }, { - "id": 5946, + "id": 7386, "properties": { "attached": "false", "disarmed": "true", @@ -204088,7 +219973,7 @@ } }, { - "id": 5947, + "id": 7387, "properties": { "attached": "false", "disarmed": "true", @@ -204100,7 +219985,7 @@ } }, { - "id": 5948, + "id": 7388, "properties": { "attached": "false", "disarmed": "true", @@ -204112,7 +219997,7 @@ } }, { - "id": 5949, + "id": 7389, "properties": { "attached": "false", "disarmed": "true", @@ -204124,7 +220009,7 @@ } }, { - "id": 5950, + "id": 7390, "properties": { "attached": "false", "disarmed": "true", @@ -204136,7 +220021,7 @@ } }, { - "id": 5951, + "id": 7391, "properties": { "attached": "false", "disarmed": "true", @@ -204148,7 +220033,7 @@ } }, { - "id": 5952, + "id": 7392, "properties": { "attached": "false", "disarmed": "true", @@ -204160,7 +220045,7 @@ } }, { - "id": 5953, + "id": 7393, "properties": { "attached": "false", "disarmed": "true", @@ -204172,7 +220057,7 @@ } }, { - "id": 5954, + "id": 7394, "properties": { "attached": "false", "disarmed": "true", @@ -204184,7 +220069,7 @@ } }, { - "id": 5955, + "id": 7395, "properties": { "attached": "false", "disarmed": "true", @@ -204196,7 +220081,7 @@ } }, { - "id": 5956, + "id": 7396, "properties": { "attached": "false", "disarmed": "true", @@ -204208,7 +220093,7 @@ } }, { - "id": 5957, + "id": 7397, "properties": { "attached": "false", "disarmed": "true", @@ -204220,7 +220105,7 @@ } }, { - "id": 5958, + "id": 7398, "properties": { "attached": "false", "disarmed": "true", @@ -204232,7 +220117,7 @@ } }, { - "id": 5959, + "id": 7399, "properties": { "attached": "false", "disarmed": "true", @@ -204244,7 +220129,7 @@ } }, { - "id": 5960, + "id": 7400, "properties": { "attached": "false", "disarmed": "true", @@ -204256,7 +220141,7 @@ } }, { - "id": 5961, + "id": 7401, "properties": { "attached": "false", "disarmed": "true", @@ -204268,7 +220153,7 @@ } }, { - "id": 5962, + "id": 7402, "properties": { "attached": "false", "disarmed": "true", @@ -204280,7 +220165,7 @@ } }, { - "id": 5963, + "id": 7403, "properties": { "attached": "false", "disarmed": "false", @@ -204292,7 +220177,7 @@ } }, { - "id": 5964, + "id": 7404, "properties": { "attached": "false", "disarmed": "false", @@ -204304,7 +220189,7 @@ } }, { - "id": 5965, + "id": 7405, "properties": { "attached": "false", "disarmed": "false", @@ -204316,7 +220201,7 @@ } }, { - "id": 5966, + "id": 7406, "properties": { "attached": "false", "disarmed": "false", @@ -204328,7 +220213,7 @@ } }, { - "id": 5967, + "id": 7407, "properties": { "attached": "false", "disarmed": "false", @@ -204340,7 +220225,7 @@ } }, { - "id": 5968, + "id": 7408, "properties": { "attached": "false", "disarmed": "false", @@ -204352,7 +220237,7 @@ } }, { - "id": 5969, + "id": 7409, "properties": { "attached": "false", "disarmed": "false", @@ -204364,7 +220249,7 @@ } }, { - "id": 5970, + "id": 7410, "properties": { "attached": "false", "disarmed": "false", @@ -204376,7 +220261,7 @@ } }, { - "id": 5971, + "id": 7411, "properties": { "attached": "false", "disarmed": "false", @@ -204388,7 +220273,7 @@ } }, { - "id": 5972, + "id": 7412, "properties": { "attached": "false", "disarmed": "false", @@ -204400,7 +220285,7 @@ } }, { - "id": 5973, + "id": 7413, "properties": { "attached": "false", "disarmed": "false", @@ -204412,7 +220297,7 @@ } }, { - "id": 5974, + "id": 7414, "properties": { "attached": "false", "disarmed": "false", @@ -204424,7 +220309,7 @@ } }, { - "id": 5975, + "id": 7415, "properties": { "attached": "false", "disarmed": "false", @@ -204436,7 +220321,7 @@ } }, { - "id": 5976, + "id": 7416, "properties": { "attached": "false", "disarmed": "false", @@ -204448,7 +220333,7 @@ } }, { - "id": 5977, + "id": 7417, "properties": { "attached": "false", "disarmed": "false", @@ -204460,7 +220345,7 @@ } }, { - "id": 5978, + "id": 7418, "properties": { "attached": "false", "disarmed": "false", @@ -204472,7 +220357,7 @@ } }, { - "id": 5979, + "id": 7419, "properties": { "attached": "false", "disarmed": "false", @@ -204484,7 +220369,7 @@ } }, { - "id": 5980, + "id": 7420, "properties": { "attached": "false", "disarmed": "false", @@ -204496,7 +220381,7 @@ } }, { - "id": 5981, + "id": 7421, "properties": { "attached": "false", "disarmed": "false", @@ -204508,7 +220393,7 @@ } }, { - "id": 5982, + "id": 7422, "properties": { "attached": "false", "disarmed": "false", @@ -204520,7 +220405,7 @@ } }, { - "id": 5983, + "id": 7423, "properties": { "attached": "false", "disarmed": "false", @@ -204532,7 +220417,7 @@ } }, { - "id": 5984, + "id": 7424, "properties": { "attached": "false", "disarmed": "false", @@ -204544,7 +220429,7 @@ } }, { - "id": 5985, + "id": 7425, "properties": { "attached": "false", "disarmed": "false", @@ -204556,7 +220441,7 @@ } }, { - "id": 5986, + "id": 7426, "properties": { "attached": "false", "disarmed": "false", @@ -204568,7 +220453,7 @@ } }, { - "id": 5987, + "id": 7427, "properties": { "attached": "false", "disarmed": "false", @@ -204580,7 +220465,7 @@ } }, { - "id": 5988, + "id": 7428, "properties": { "attached": "false", "disarmed": "false", @@ -204592,7 +220477,7 @@ } }, { - "id": 5989, + "id": 7429, "properties": { "attached": "false", "disarmed": "false", @@ -204604,7 +220489,7 @@ } }, { - "id": 5990, + "id": 7430, "properties": { "attached": "false", "disarmed": "false", @@ -204616,7 +220501,7 @@ } }, { - "id": 5991, + "id": 7431, "properties": { "attached": "false", "disarmed": "false", @@ -204628,7 +220513,7 @@ } }, { - "id": 5992, + "id": 7432, "properties": { "attached": "false", "disarmed": "false", @@ -204640,7 +220525,7 @@ } }, { - "id": 5993, + "id": 7433, "properties": { "attached": "false", "disarmed": "false", @@ -204653,7 +220538,7 @@ }, { "default": true, - "id": 5994, + "id": 7434, "properties": { "attached": "false", "disarmed": "false", @@ -204685,7 +220570,7 @@ }, "states": [ { - "id": 5851, + "id": 7291, "properties": { "attached": "true", "facing": "north", @@ -204693,7 +220578,7 @@ } }, { - "id": 5852, + "id": 7292, "properties": { "attached": "true", "facing": "north", @@ -204701,7 +220586,7 @@ } }, { - "id": 5853, + "id": 7293, "properties": { "attached": "true", "facing": "south", @@ -204709,7 +220594,7 @@ } }, { - "id": 5854, + "id": 7294, "properties": { "attached": "true", "facing": "south", @@ -204717,7 +220602,7 @@ } }, { - "id": 5855, + "id": 7295, "properties": { "attached": "true", "facing": "west", @@ -204725,7 +220610,7 @@ } }, { - "id": 5856, + "id": 7296, "properties": { "attached": "true", "facing": "west", @@ -204733,7 +220618,7 @@ } }, { - "id": 5857, + "id": 7297, "properties": { "attached": "true", "facing": "east", @@ -204741,7 +220626,7 @@ } }, { - "id": 5858, + "id": 7298, "properties": { "attached": "true", "facing": "east", @@ -204749,7 +220634,7 @@ } }, { - "id": 5859, + "id": 7299, "properties": { "attached": "false", "facing": "north", @@ -204758,7 +220643,7 @@ }, { "default": true, - "id": 5860, + "id": 7300, "properties": { "attached": "false", "facing": "north", @@ -204766,7 +220651,7 @@ } }, { - "id": 5861, + "id": 7301, "properties": { "attached": "false", "facing": "south", @@ -204774,7 +220659,7 @@ } }, { - "id": 5862, + "id": 7302, "properties": { "attached": "false", "facing": "south", @@ -204782,7 +220667,7 @@ } }, { - "id": 5863, + "id": 7303, "properties": { "attached": "false", "facing": "west", @@ -204790,7 +220675,7 @@ } }, { - "id": 5864, + "id": 7304, "properties": { "attached": "false", "facing": "west", @@ -204798,7 +220683,7 @@ } }, { - "id": 5865, + "id": 7305, "properties": { "attached": "false", "facing": "east", @@ -204806,7 +220691,7 @@ } }, { - "id": 5866, + "id": 7306, "properties": { "attached": "false", "facing": "east", @@ -204825,13 +220710,13 @@ "states": [ { "default": true, - "id": 10411, + "id": 12195, "properties": { "waterlogged": "true" } }, { - "id": 10412, + "id": 12196, "properties": { "waterlogged": "false" } @@ -204842,7 +220727,7 @@ "states": [ { "default": true, - "id": 10396 + "id": 12180 } ] }, @@ -204856,13 +220741,13 @@ "states": [ { "default": true, - "id": 10431, + "id": 12215, "properties": { "waterlogged": "true" } }, { - "id": 10432, + "id": 12216, "properties": { "waterlogged": "false" } @@ -204885,56 +220770,56 @@ "states": [ { "default": true, - "id": 10481, + "id": 12265, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 10482, + "id": 12266, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 10483, + "id": 12267, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 10484, + "id": 12268, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 10485, + "id": 12269, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 10486, + "id": 12270, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 10487, + "id": 12271, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 10488, + "id": 12272, "properties": { "facing": "east", "waterlogged": "false" @@ -204946,7 +220831,7 @@ "states": [ { "default": true, - "id": 18669 + "id": 20453 } ] }, @@ -204967,84 +220852,84 @@ "states": [ { "default": true, - "id": 10379, + "id": 12163, "properties": { "eggs": "1", "hatch": "0" } }, { - "id": 10380, + "id": 12164, "properties": { "eggs": "1", "hatch": "1" } }, { - "id": 10381, + "id": 12165, "properties": { "eggs": "1", "hatch": "2" } }, { - "id": 10382, + "id": 12166, "properties": { "eggs": "2", "hatch": "0" } }, { - "id": 10383, + "id": 12167, "properties": { "eggs": "2", "hatch": "1" } }, { - "id": 10384, + "id": 12168, "properties": { "eggs": "2", "hatch": "2" } }, { - "id": 10385, + "id": 12169, "properties": { "eggs": "3", "hatch": "0" } }, { - "id": 10386, + "id": 12170, "properties": { "eggs": "3", "hatch": "1" } }, { - "id": 10387, + "id": 12171, "properties": { "eggs": "3", "hatch": "2" } }, { - "id": 10388, + "id": 12172, "properties": { "eggs": "4", "hatch": "0" } }, { - "id": 10389, + "id": 12173, "properties": { "eggs": "4", "hatch": "1" } }, { - "id": 10390, + "id": 12174, "properties": { "eggs": "4", "hatch": "2" @@ -205086,157 +220971,157 @@ "states": [ { "default": true, - "id": 16226, + "id": 18010, "properties": { "age": "0" } }, { - "id": 16227, + "id": 18011, "properties": { "age": "1" } }, { - "id": 16228, + "id": 18012, "properties": { "age": "2" } }, { - "id": 16229, + "id": 18013, "properties": { "age": "3" } }, { - "id": 16230, + "id": 18014, "properties": { "age": "4" } }, { - "id": 16231, + "id": 18015, "properties": { "age": "5" } }, { - "id": 16232, + "id": 18016, "properties": { "age": "6" } }, { - "id": 16233, + "id": 18017, "properties": { "age": "7" } }, { - "id": 16234, + "id": 18018, "properties": { "age": "8" } }, { - "id": 16235, + "id": 18019, "properties": { "age": "9" } }, { - "id": 16236, + "id": 18020, "properties": { "age": "10" } }, { - "id": 16237, + "id": 18021, "properties": { "age": "11" } }, { - "id": 16238, + "id": 18022, "properties": { "age": "12" } }, { - "id": 16239, + "id": 18023, "properties": { "age": "13" } }, { - "id": 16240, + "id": 18024, "properties": { "age": "14" } }, { - "id": 16241, + "id": 18025, "properties": { "age": "15" } }, { - "id": 16242, + "id": 18026, "properties": { "age": "16" } }, { - "id": 16243, + "id": 18027, "properties": { "age": "17" } }, { - "id": 16244, + "id": 18028, "properties": { "age": "18" } }, { - "id": 16245, + "id": 18029, "properties": { "age": "19" } }, { - "id": 16246, + "id": 18030, "properties": { "age": "20" } }, { - "id": 16247, + "id": 18031, "properties": { "age": "21" } }, { - "id": 16248, + "id": 18032, "properties": { "age": "22" } }, { - "id": 16249, + "id": 18033, "properties": { "age": "23" } }, { - "id": 16250, + "id": 18034, "properties": { "age": "24" } }, { - "id": 16251, + "id": 18035, "properties": { "age": "25" } @@ -205247,7 +221132,7 @@ "states": [ { "default": true, - "id": 16252 + "id": 18036 } ] }, @@ -205261,20 +221146,20 @@ }, "states": [ { - "id": 21440, + "id": 23224, "properties": { "axis": "x" } }, { "default": true, - "id": 21441, + "id": 23225, "properties": { "axis": "y" } }, { - "id": 21442, + "id": 23226, "properties": { "axis": "z" } @@ -205306,7 +221191,7 @@ }, "states": [ { - "id": 5167, + "id": 6607, "properties": { "east": "true", "north": "true", @@ -205316,7 +221201,7 @@ } }, { - "id": 5168, + "id": 6608, "properties": { "east": "true", "north": "true", @@ -205326,7 +221211,7 @@ } }, { - "id": 5169, + "id": 6609, "properties": { "east": "true", "north": "true", @@ -205336,7 +221221,7 @@ } }, { - "id": 5170, + "id": 6610, "properties": { "east": "true", "north": "true", @@ -205346,7 +221231,7 @@ } }, { - "id": 5171, + "id": 6611, "properties": { "east": "true", "north": "true", @@ -205356,7 +221241,7 @@ } }, { - "id": 5172, + "id": 6612, "properties": { "east": "true", "north": "true", @@ -205366,7 +221251,7 @@ } }, { - "id": 5173, + "id": 6613, "properties": { "east": "true", "north": "true", @@ -205376,7 +221261,7 @@ } }, { - "id": 5174, + "id": 6614, "properties": { "east": "true", "north": "true", @@ -205386,7 +221271,7 @@ } }, { - "id": 5175, + "id": 6615, "properties": { "east": "true", "north": "false", @@ -205396,7 +221281,7 @@ } }, { - "id": 5176, + "id": 6616, "properties": { "east": "true", "north": "false", @@ -205406,7 +221291,7 @@ } }, { - "id": 5177, + "id": 6617, "properties": { "east": "true", "north": "false", @@ -205416,7 +221301,7 @@ } }, { - "id": 5178, + "id": 6618, "properties": { "east": "true", "north": "false", @@ -205426,7 +221311,7 @@ } }, { - "id": 5179, + "id": 6619, "properties": { "east": "true", "north": "false", @@ -205436,7 +221321,7 @@ } }, { - "id": 5180, + "id": 6620, "properties": { "east": "true", "north": "false", @@ -205446,7 +221331,7 @@ } }, { - "id": 5181, + "id": 6621, "properties": { "east": "true", "north": "false", @@ -205456,7 +221341,7 @@ } }, { - "id": 5182, + "id": 6622, "properties": { "east": "true", "north": "false", @@ -205466,7 +221351,7 @@ } }, { - "id": 5183, + "id": 6623, "properties": { "east": "false", "north": "true", @@ -205476,7 +221361,7 @@ } }, { - "id": 5184, + "id": 6624, "properties": { "east": "false", "north": "true", @@ -205486,7 +221371,7 @@ } }, { - "id": 5185, + "id": 6625, "properties": { "east": "false", "north": "true", @@ -205496,7 +221381,7 @@ } }, { - "id": 5186, + "id": 6626, "properties": { "east": "false", "north": "true", @@ -205506,7 +221391,7 @@ } }, { - "id": 5187, + "id": 6627, "properties": { "east": "false", "north": "true", @@ -205516,7 +221401,7 @@ } }, { - "id": 5188, + "id": 6628, "properties": { "east": "false", "north": "true", @@ -205526,7 +221411,7 @@ } }, { - "id": 5189, + "id": 6629, "properties": { "east": "false", "north": "true", @@ -205536,7 +221421,7 @@ } }, { - "id": 5190, + "id": 6630, "properties": { "east": "false", "north": "true", @@ -205546,7 +221431,7 @@ } }, { - "id": 5191, + "id": 6631, "properties": { "east": "false", "north": "false", @@ -205556,7 +221441,7 @@ } }, { - "id": 5192, + "id": 6632, "properties": { "east": "false", "north": "false", @@ -205566,7 +221451,7 @@ } }, { - "id": 5193, + "id": 6633, "properties": { "east": "false", "north": "false", @@ -205576,7 +221461,7 @@ } }, { - "id": 5194, + "id": 6634, "properties": { "east": "false", "north": "false", @@ -205586,7 +221471,7 @@ } }, { - "id": 5195, + "id": 6635, "properties": { "east": "false", "north": "false", @@ -205596,7 +221481,7 @@ } }, { - "id": 5196, + "id": 6636, "properties": { "east": "false", "north": "false", @@ -205606,7 +221491,7 @@ } }, { - "id": 5197, + "id": 6637, "properties": { "east": "false", "north": "false", @@ -205617,7 +221502,7 @@ }, { "default": true, - "id": 5198, + "id": 6638, "properties": { "east": "false", "north": "false", @@ -205632,7 +221517,7 @@ "states": [ { "default": true, - "id": 10546 + "id": 12330 } ] }, @@ -205648,25 +221533,25 @@ "states": [ { "default": true, - "id": 1690, + "id": 2304, "properties": { "facing": "north" } }, { - "id": 1691, + "id": 2305, "properties": { "facing": "south" } }, { - "id": 1692, + "id": 2306, "properties": { "facing": "west" } }, { - "id": 1693, + "id": 2307, "properties": { "facing": "east" } @@ -205693,7 +221578,7 @@ }, "states": [ { - "id": 16712, + "id": 18496, "properties": { "face": "floor", "facing": "north", @@ -205701,7 +221586,7 @@ } }, { - "id": 16713, + "id": 18497, "properties": { "face": "floor", "facing": "north", @@ -205709,7 +221594,7 @@ } }, { - "id": 16714, + "id": 18498, "properties": { "face": "floor", "facing": "south", @@ -205717,7 +221602,7 @@ } }, { - "id": 16715, + "id": 18499, "properties": { "face": "floor", "facing": "south", @@ -205725,7 +221610,7 @@ } }, { - "id": 16716, + "id": 18500, "properties": { "face": "floor", "facing": "west", @@ -205733,7 +221618,7 @@ } }, { - "id": 16717, + "id": 18501, "properties": { "face": "floor", "facing": "west", @@ -205741,7 +221626,7 @@ } }, { - "id": 16718, + "id": 18502, "properties": { "face": "floor", "facing": "east", @@ -205749,7 +221634,7 @@ } }, { - "id": 16719, + "id": 18503, "properties": { "face": "floor", "facing": "east", @@ -205757,7 +221642,7 @@ } }, { - "id": 16720, + "id": 18504, "properties": { "face": "wall", "facing": "north", @@ -205766,7 +221651,7 @@ }, { "default": true, - "id": 16721, + "id": 18505, "properties": { "face": "wall", "facing": "north", @@ -205774,7 +221659,7 @@ } }, { - "id": 16722, + "id": 18506, "properties": { "face": "wall", "facing": "south", @@ -205782,7 +221667,7 @@ } }, { - "id": 16723, + "id": 18507, "properties": { "face": "wall", "facing": "south", @@ -205790,7 +221675,7 @@ } }, { - "id": 16724, + "id": 18508, "properties": { "face": "wall", "facing": "west", @@ -205798,7 +221683,7 @@ } }, { - "id": 16725, + "id": 18509, "properties": { "face": "wall", "facing": "west", @@ -205806,7 +221691,7 @@ } }, { - "id": 16726, + "id": 18510, "properties": { "face": "wall", "facing": "east", @@ -205814,7 +221699,7 @@ } }, { - "id": 16727, + "id": 18511, "properties": { "face": "wall", "facing": "east", @@ -205822,7 +221707,7 @@ } }, { - "id": 16728, + "id": 18512, "properties": { "face": "ceiling", "facing": "north", @@ -205830,7 +221715,7 @@ } }, { - "id": 16729, + "id": 18513, "properties": { "face": "ceiling", "facing": "north", @@ -205838,7 +221723,7 @@ } }, { - "id": 16730, + "id": 18514, "properties": { "face": "ceiling", "facing": "south", @@ -205846,7 +221731,7 @@ } }, { - "id": 16731, + "id": 18515, "properties": { "face": "ceiling", "facing": "south", @@ -205854,7 +221739,7 @@ } }, { - "id": 16732, + "id": 18516, "properties": { "face": "ceiling", "facing": "west", @@ -205862,7 +221747,7 @@ } }, { - "id": 16733, + "id": 18517, "properties": { "face": "ceiling", "facing": "west", @@ -205870,7 +221755,7 @@ } }, { - "id": 16734, + "id": 18518, "properties": { "face": "ceiling", "facing": "east", @@ -205878,7 +221763,7 @@ } }, { - "id": 16735, + "id": 18519, "properties": { "face": "ceiling", "facing": "east", @@ -205914,7 +221799,7 @@ }, "states": [ { - "id": 16800, + "id": 18584, "properties": { "facing": "north", "half": "upper", @@ -205924,7 +221809,7 @@ } }, { - "id": 16801, + "id": 18585, "properties": { "facing": "north", "half": "upper", @@ -205934,7 +221819,7 @@ } }, { - "id": 16802, + "id": 18586, "properties": { "facing": "north", "half": "upper", @@ -205944,7 +221829,7 @@ } }, { - "id": 16803, + "id": 18587, "properties": { "facing": "north", "half": "upper", @@ -205954,7 +221839,7 @@ } }, { - "id": 16804, + "id": 18588, "properties": { "facing": "north", "half": "upper", @@ -205964,7 +221849,7 @@ } }, { - "id": 16805, + "id": 18589, "properties": { "facing": "north", "half": "upper", @@ -205974,7 +221859,7 @@ } }, { - "id": 16806, + "id": 18590, "properties": { "facing": "north", "half": "upper", @@ -205984,7 +221869,7 @@ } }, { - "id": 16807, + "id": 18591, "properties": { "facing": "north", "half": "upper", @@ -205994,7 +221879,7 @@ } }, { - "id": 16808, + "id": 18592, "properties": { "facing": "north", "half": "lower", @@ -206004,7 +221889,7 @@ } }, { - "id": 16809, + "id": 18593, "properties": { "facing": "north", "half": "lower", @@ -206014,7 +221899,7 @@ } }, { - "id": 16810, + "id": 18594, "properties": { "facing": "north", "half": "lower", @@ -206025,7 +221910,7 @@ }, { "default": true, - "id": 16811, + "id": 18595, "properties": { "facing": "north", "half": "lower", @@ -206035,7 +221920,7 @@ } }, { - "id": 16812, + "id": 18596, "properties": { "facing": "north", "half": "lower", @@ -206045,7 +221930,7 @@ } }, { - "id": 16813, + "id": 18597, "properties": { "facing": "north", "half": "lower", @@ -206055,7 +221940,7 @@ } }, { - "id": 16814, + "id": 18598, "properties": { "facing": "north", "half": "lower", @@ -206065,7 +221950,7 @@ } }, { - "id": 16815, + "id": 18599, "properties": { "facing": "north", "half": "lower", @@ -206075,7 +221960,7 @@ } }, { - "id": 16816, + "id": 18600, "properties": { "facing": "south", "half": "upper", @@ -206085,7 +221970,7 @@ } }, { - "id": 16817, + "id": 18601, "properties": { "facing": "south", "half": "upper", @@ -206095,7 +221980,7 @@ } }, { - "id": 16818, + "id": 18602, "properties": { "facing": "south", "half": "upper", @@ -206105,7 +221990,7 @@ } }, { - "id": 16819, + "id": 18603, "properties": { "facing": "south", "half": "upper", @@ -206115,7 +222000,7 @@ } }, { - "id": 16820, + "id": 18604, "properties": { "facing": "south", "half": "upper", @@ -206125,7 +222010,7 @@ } }, { - "id": 16821, + "id": 18605, "properties": { "facing": "south", "half": "upper", @@ -206135,7 +222020,7 @@ } }, { - "id": 16822, + "id": 18606, "properties": { "facing": "south", "half": "upper", @@ -206145,7 +222030,7 @@ } }, { - "id": 16823, + "id": 18607, "properties": { "facing": "south", "half": "upper", @@ -206155,7 +222040,7 @@ } }, { - "id": 16824, + "id": 18608, "properties": { "facing": "south", "half": "lower", @@ -206165,7 +222050,7 @@ } }, { - "id": 16825, + "id": 18609, "properties": { "facing": "south", "half": "lower", @@ -206175,7 +222060,7 @@ } }, { - "id": 16826, + "id": 18610, "properties": { "facing": "south", "half": "lower", @@ -206185,7 +222070,7 @@ } }, { - "id": 16827, + "id": 18611, "properties": { "facing": "south", "half": "lower", @@ -206195,7 +222080,7 @@ } }, { - "id": 16828, + "id": 18612, "properties": { "facing": "south", "half": "lower", @@ -206205,7 +222090,7 @@ } }, { - "id": 16829, + "id": 18613, "properties": { "facing": "south", "half": "lower", @@ -206215,7 +222100,7 @@ } }, { - "id": 16830, + "id": 18614, "properties": { "facing": "south", "half": "lower", @@ -206225,7 +222110,7 @@ } }, { - "id": 16831, + "id": 18615, "properties": { "facing": "south", "half": "lower", @@ -206235,7 +222120,7 @@ } }, { - "id": 16832, + "id": 18616, "properties": { "facing": "west", "half": "upper", @@ -206245,7 +222130,7 @@ } }, { - "id": 16833, + "id": 18617, "properties": { "facing": "west", "half": "upper", @@ -206255,7 +222140,7 @@ } }, { - "id": 16834, + "id": 18618, "properties": { "facing": "west", "half": "upper", @@ -206265,7 +222150,7 @@ } }, { - "id": 16835, + "id": 18619, "properties": { "facing": "west", "half": "upper", @@ -206275,7 +222160,7 @@ } }, { - "id": 16836, + "id": 18620, "properties": { "facing": "west", "half": "upper", @@ -206285,7 +222170,7 @@ } }, { - "id": 16837, + "id": 18621, "properties": { "facing": "west", "half": "upper", @@ -206295,7 +222180,7 @@ } }, { - "id": 16838, + "id": 18622, "properties": { "facing": "west", "half": "upper", @@ -206305,7 +222190,7 @@ } }, { - "id": 16839, + "id": 18623, "properties": { "facing": "west", "half": "upper", @@ -206315,7 +222200,7 @@ } }, { - "id": 16840, + "id": 18624, "properties": { "facing": "west", "half": "lower", @@ -206325,7 +222210,7 @@ } }, { - "id": 16841, + "id": 18625, "properties": { "facing": "west", "half": "lower", @@ -206335,7 +222220,7 @@ } }, { - "id": 16842, + "id": 18626, "properties": { "facing": "west", "half": "lower", @@ -206345,7 +222230,7 @@ } }, { - "id": 16843, + "id": 18627, "properties": { "facing": "west", "half": "lower", @@ -206355,7 +222240,7 @@ } }, { - "id": 16844, + "id": 18628, "properties": { "facing": "west", "half": "lower", @@ -206365,7 +222250,7 @@ } }, { - "id": 16845, + "id": 18629, "properties": { "facing": "west", "half": "lower", @@ -206375,7 +222260,7 @@ } }, { - "id": 16846, + "id": 18630, "properties": { "facing": "west", "half": "lower", @@ -206385,7 +222270,7 @@ } }, { - "id": 16847, + "id": 18631, "properties": { "facing": "west", "half": "lower", @@ -206395,7 +222280,7 @@ } }, { - "id": 16848, + "id": 18632, "properties": { "facing": "east", "half": "upper", @@ -206405,7 +222290,7 @@ } }, { - "id": 16849, + "id": 18633, "properties": { "facing": "east", "half": "upper", @@ -206415,7 +222300,7 @@ } }, { - "id": 16850, + "id": 18634, "properties": { "facing": "east", "half": "upper", @@ -206425,7 +222310,7 @@ } }, { - "id": 16851, + "id": 18635, "properties": { "facing": "east", "half": "upper", @@ -206435,7 +222320,7 @@ } }, { - "id": 16852, + "id": 18636, "properties": { "facing": "east", "half": "upper", @@ -206445,7 +222330,7 @@ } }, { - "id": 16853, + "id": 18637, "properties": { "facing": "east", "half": "upper", @@ -206455,7 +222340,7 @@ } }, { - "id": 16854, + "id": 18638, "properties": { "facing": "east", "half": "upper", @@ -206465,7 +222350,7 @@ } }, { - "id": 16855, + "id": 18639, "properties": { "facing": "east", "half": "upper", @@ -206475,7 +222360,7 @@ } }, { - "id": 16856, + "id": 18640, "properties": { "facing": "east", "half": "lower", @@ -206485,7 +222370,7 @@ } }, { - "id": 16857, + "id": 18641, "properties": { "facing": "east", "half": "lower", @@ -206495,7 +222380,7 @@ } }, { - "id": 16858, + "id": 18642, "properties": { "facing": "east", "half": "lower", @@ -206505,7 +222390,7 @@ } }, { - "id": 16859, + "id": 18643, "properties": { "facing": "east", "half": "lower", @@ -206515,7 +222400,7 @@ } }, { - "id": 16860, + "id": 18644, "properties": { "facing": "east", "half": "lower", @@ -206525,7 +222410,7 @@ } }, { - "id": 16861, + "id": 18645, "properties": { "facing": "east", "half": "lower", @@ -206535,7 +222420,7 @@ } }, { - "id": 16862, + "id": 18646, "properties": { "facing": "east", "half": "lower", @@ -206545,7 +222430,7 @@ } }, { - "id": 16863, + "id": 18647, "properties": { "facing": "east", "half": "lower", @@ -206581,7 +222466,7 @@ }, "states": [ { - "id": 16304, + "id": 18088, "properties": { "east": "true", "north": "true", @@ -206591,7 +222476,7 @@ } }, { - "id": 16305, + "id": 18089, "properties": { "east": "true", "north": "true", @@ -206601,7 +222486,7 @@ } }, { - "id": 16306, + "id": 18090, "properties": { "east": "true", "north": "true", @@ -206611,7 +222496,7 @@ } }, { - "id": 16307, + "id": 18091, "properties": { "east": "true", "north": "true", @@ -206621,7 +222506,7 @@ } }, { - "id": 16308, + "id": 18092, "properties": { "east": "true", "north": "true", @@ -206631,7 +222516,7 @@ } }, { - "id": 16309, + "id": 18093, "properties": { "east": "true", "north": "true", @@ -206641,7 +222526,7 @@ } }, { - "id": 16310, + "id": 18094, "properties": { "east": "true", "north": "true", @@ -206651,7 +222536,7 @@ } }, { - "id": 16311, + "id": 18095, "properties": { "east": "true", "north": "true", @@ -206661,7 +222546,7 @@ } }, { - "id": 16312, + "id": 18096, "properties": { "east": "true", "north": "false", @@ -206671,7 +222556,7 @@ } }, { - "id": 16313, + "id": 18097, "properties": { "east": "true", "north": "false", @@ -206681,7 +222566,7 @@ } }, { - "id": 16314, + "id": 18098, "properties": { "east": "true", "north": "false", @@ -206691,7 +222576,7 @@ } }, { - "id": 16315, + "id": 18099, "properties": { "east": "true", "north": "false", @@ -206701,7 +222586,7 @@ } }, { - "id": 16316, + "id": 18100, "properties": { "east": "true", "north": "false", @@ -206711,7 +222596,7 @@ } }, { - "id": 16317, + "id": 18101, "properties": { "east": "true", "north": "false", @@ -206721,7 +222606,7 @@ } }, { - "id": 16318, + "id": 18102, "properties": { "east": "true", "north": "false", @@ -206731,7 +222616,7 @@ } }, { - "id": 16319, + "id": 18103, "properties": { "east": "true", "north": "false", @@ -206741,7 +222626,7 @@ } }, { - "id": 16320, + "id": 18104, "properties": { "east": "false", "north": "true", @@ -206751,7 +222636,7 @@ } }, { - "id": 16321, + "id": 18105, "properties": { "east": "false", "north": "true", @@ -206761,7 +222646,7 @@ } }, { - "id": 16322, + "id": 18106, "properties": { "east": "false", "north": "true", @@ -206771,7 +222656,7 @@ } }, { - "id": 16323, + "id": 18107, "properties": { "east": "false", "north": "true", @@ -206781,7 +222666,7 @@ } }, { - "id": 16324, + "id": 18108, "properties": { "east": "false", "north": "true", @@ -206791,7 +222676,7 @@ } }, { - "id": 16325, + "id": 18109, "properties": { "east": "false", "north": "true", @@ -206801,7 +222686,7 @@ } }, { - "id": 16326, + "id": 18110, "properties": { "east": "false", "north": "true", @@ -206811,7 +222696,7 @@ } }, { - "id": 16327, + "id": 18111, "properties": { "east": "false", "north": "true", @@ -206821,7 +222706,7 @@ } }, { - "id": 16328, + "id": 18112, "properties": { "east": "false", "north": "false", @@ -206831,7 +222716,7 @@ } }, { - "id": 16329, + "id": 18113, "properties": { "east": "false", "north": "false", @@ -206841,7 +222726,7 @@ } }, { - "id": 16330, + "id": 18114, "properties": { "east": "false", "north": "false", @@ -206851,7 +222736,7 @@ } }, { - "id": 16331, + "id": 18115, "properties": { "east": "false", "north": "false", @@ -206861,7 +222746,7 @@ } }, { - "id": 16332, + "id": 18116, "properties": { "east": "false", "north": "false", @@ -206871,7 +222756,7 @@ } }, { - "id": 16333, + "id": 18117, "properties": { "east": "false", "north": "false", @@ -206881,7 +222766,7 @@ } }, { - "id": 16334, + "id": 18118, "properties": { "east": "false", "north": "false", @@ -206892,7 +222777,7 @@ }, { "default": true, - "id": 16335, + "id": 18119, "properties": { "east": "false", "north": "false", @@ -206926,7 +222811,7 @@ }, "states": [ { - "id": 16496, + "id": 18280, "properties": { "facing": "north", "in_wall": "true", @@ -206935,7 +222820,7 @@ } }, { - "id": 16497, + "id": 18281, "properties": { "facing": "north", "in_wall": "true", @@ -206944,7 +222829,7 @@ } }, { - "id": 16498, + "id": 18282, "properties": { "facing": "north", "in_wall": "true", @@ -206953,7 +222838,7 @@ } }, { - "id": 16499, + "id": 18283, "properties": { "facing": "north", "in_wall": "true", @@ -206962,7 +222847,7 @@ } }, { - "id": 16500, + "id": 18284, "properties": { "facing": "north", "in_wall": "false", @@ -206971,7 +222856,7 @@ } }, { - "id": 16501, + "id": 18285, "properties": { "facing": "north", "in_wall": "false", @@ -206980,7 +222865,7 @@ } }, { - "id": 16502, + "id": 18286, "properties": { "facing": "north", "in_wall": "false", @@ -206990,7 +222875,7 @@ }, { "default": true, - "id": 16503, + "id": 18287, "properties": { "facing": "north", "in_wall": "false", @@ -206999,7 +222884,7 @@ } }, { - "id": 16504, + "id": 18288, "properties": { "facing": "south", "in_wall": "true", @@ -207008,7 +222893,7 @@ } }, { - "id": 16505, + "id": 18289, "properties": { "facing": "south", "in_wall": "true", @@ -207017,7 +222902,7 @@ } }, { - "id": 16506, + "id": 18290, "properties": { "facing": "south", "in_wall": "true", @@ -207026,7 +222911,7 @@ } }, { - "id": 16507, + "id": 18291, "properties": { "facing": "south", "in_wall": "true", @@ -207035,7 +222920,7 @@ } }, { - "id": 16508, + "id": 18292, "properties": { "facing": "south", "in_wall": "false", @@ -207044,7 +222929,7 @@ } }, { - "id": 16509, + "id": 18293, "properties": { "facing": "south", "in_wall": "false", @@ -207053,7 +222938,7 @@ } }, { - "id": 16510, + "id": 18294, "properties": { "facing": "south", "in_wall": "false", @@ -207062,7 +222947,7 @@ } }, { - "id": 16511, + "id": 18295, "properties": { "facing": "south", "in_wall": "false", @@ -207071,7 +222956,7 @@ } }, { - "id": 16512, + "id": 18296, "properties": { "facing": "west", "in_wall": "true", @@ -207080,7 +222965,7 @@ } }, { - "id": 16513, + "id": 18297, "properties": { "facing": "west", "in_wall": "true", @@ -207089,7 +222974,7 @@ } }, { - "id": 16514, + "id": 18298, "properties": { "facing": "west", "in_wall": "true", @@ -207098,7 +222983,7 @@ } }, { - "id": 16515, + "id": 18299, "properties": { "facing": "west", "in_wall": "true", @@ -207107,7 +222992,7 @@ } }, { - "id": 16516, + "id": 18300, "properties": { "facing": "west", "in_wall": "false", @@ -207116,7 +223001,7 @@ } }, { - "id": 16517, + "id": 18301, "properties": { "facing": "west", "in_wall": "false", @@ -207125,7 +223010,7 @@ } }, { - "id": 16518, + "id": 18302, "properties": { "facing": "west", "in_wall": "false", @@ -207134,7 +223019,7 @@ } }, { - "id": 16519, + "id": 18303, "properties": { "facing": "west", "in_wall": "false", @@ -207143,7 +223028,7 @@ } }, { - "id": 16520, + "id": 18304, "properties": { "facing": "east", "in_wall": "true", @@ -207152,7 +223037,7 @@ } }, { - "id": 16521, + "id": 18305, "properties": { "facing": "east", "in_wall": "true", @@ -207161,7 +223046,7 @@ } }, { - "id": 16522, + "id": 18306, "properties": { "facing": "east", "in_wall": "true", @@ -207170,7 +223055,7 @@ } }, { - "id": 16523, + "id": 18307, "properties": { "facing": "east", "in_wall": "true", @@ -207179,7 +223064,7 @@ } }, { - "id": 16524, + "id": 18308, "properties": { "facing": "east", "in_wall": "false", @@ -207188,7 +223073,7 @@ } }, { - "id": 16525, + "id": 18309, "properties": { "facing": "east", "in_wall": "false", @@ -207197,7 +223082,7 @@ } }, { - "id": 16526, + "id": 18310, "properties": { "facing": "east", "in_wall": "false", @@ -207206,7 +223091,7 @@ } }, { - "id": 16527, + "id": 18311, "properties": { "facing": "east", "in_wall": "false", @@ -207220,7 +223105,552 @@ "states": [ { "default": true, - "id": 16180 + "id": 17964 + } + ] + }, + "minecraft:warped_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5190, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5191, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5192, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5193, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5194, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5195, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5196, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5197, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5198, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5199, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5200, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5201, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5202, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5203, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5204, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5205, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5206, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5207, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5208, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5209, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5210, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5211, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5212, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5213, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5214, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5215, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5216, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5217, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5218, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5219, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5220, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5221, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5222, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5223, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5224, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5225, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5226, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5227, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5228, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5229, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5230, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5231, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5232, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5233, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5234, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5235, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5236, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5237, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5238, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5239, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5240, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5241, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5242, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5243, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5244, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5245, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5246, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5247, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5248, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5249, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5250, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5251, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5252, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5253, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } } ] }, @@ -207234,20 +223664,20 @@ }, "states": [ { - "id": 16173, + "id": 17957, "properties": { "axis": "x" } }, { "default": true, - "id": 16174, + "id": 17958, "properties": { "axis": "y" } }, { - "id": 16175, + "id": 17959, "properties": { "axis": "z" } @@ -207258,7 +223688,7 @@ "states": [ { "default": true, - "id": 16179 + "id": 17963 } ] }, @@ -207266,7 +223696,7 @@ "states": [ { "default": true, - "id": 16255 + "id": 18039 } ] }, @@ -207279,14 +223709,14 @@ }, "states": [ { - "id": 16270, + "id": 18054, "properties": { "powered": "true" } }, { "default": true, - "id": 16271, + "id": 18055, "properties": { "powered": "false" } @@ -207297,7 +223727,7 @@ "states": [ { "default": true, - "id": 16182 + "id": 17966 } ] }, @@ -207328,7 +223758,7 @@ }, "states": [ { - "id": 16896, + "id": 18680, "properties": { "rotation": "0", "waterlogged": "true" @@ -207336,217 +223766,217 @@ }, { "default": true, - "id": 16897, + "id": 18681, "properties": { "rotation": "0", "waterlogged": "false" } }, { - "id": 16898, + "id": 18682, "properties": { "rotation": "1", "waterlogged": "true" } }, { - "id": 16899, + "id": 18683, "properties": { "rotation": "1", "waterlogged": "false" } }, { - "id": 16900, + "id": 18684, "properties": { "rotation": "2", "waterlogged": "true" } }, { - "id": 16901, + "id": 18685, "properties": { "rotation": "2", "waterlogged": "false" } }, { - "id": 16902, + "id": 18686, "properties": { "rotation": "3", "waterlogged": "true" } }, { - "id": 16903, + "id": 18687, "properties": { "rotation": "3", "waterlogged": "false" } }, { - "id": 16904, + "id": 18688, "properties": { "rotation": "4", "waterlogged": "true" } }, { - "id": 16905, + "id": 18689, "properties": { "rotation": "4", "waterlogged": "false" } }, { - "id": 16906, + "id": 18690, "properties": { "rotation": "5", "waterlogged": "true" } }, { - "id": 16907, + "id": 18691, "properties": { "rotation": "5", "waterlogged": "false" } }, { - "id": 16908, + "id": 18692, "properties": { "rotation": "6", "waterlogged": "true" } }, { - "id": 16909, + "id": 18693, "properties": { "rotation": "6", "waterlogged": "false" } }, { - "id": 16910, + "id": 18694, "properties": { "rotation": "7", "waterlogged": "true" } }, { - "id": 16911, + "id": 18695, "properties": { "rotation": "7", "waterlogged": "false" } }, { - "id": 16912, + "id": 18696, "properties": { "rotation": "8", "waterlogged": "true" } }, { - "id": 16913, + "id": 18697, "properties": { "rotation": "8", "waterlogged": "false" } }, { - "id": 16914, + "id": 18698, "properties": { "rotation": "9", "waterlogged": "true" } }, { - "id": 16915, + "id": 18699, "properties": { "rotation": "9", "waterlogged": "false" } }, { - "id": 16916, + "id": 18700, "properties": { "rotation": "10", "waterlogged": "true" } }, { - "id": 16917, + "id": 18701, "properties": { "rotation": "10", "waterlogged": "false" } }, { - "id": 16918, + "id": 18702, "properties": { "rotation": "11", "waterlogged": "true" } }, { - "id": 16919, + "id": 18703, "properties": { "rotation": "11", "waterlogged": "false" } }, { - "id": 16920, + "id": 18704, "properties": { "rotation": "12", "waterlogged": "true" } }, { - "id": 16921, + "id": 18705, "properties": { "rotation": "12", "waterlogged": "false" } }, { - "id": 16922, + "id": 18706, "properties": { "rotation": "13", "waterlogged": "true" } }, { - "id": 16923, + "id": 18707, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 16924, + "id": 18708, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 16925, + "id": 18709, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 16926, + "id": 18710, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 16927, + "id": 18711, "properties": { "rotation": "15", "waterlogged": "false" @@ -207568,21 +223998,21 @@ }, "states": [ { - "id": 16262, + "id": 18046, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 16263, + "id": 18047, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 16264, + "id": 18048, "properties": { "type": "bottom", "waterlogged": "true" @@ -207590,21 +224020,21 @@ }, { "default": true, - "id": 16265, + "id": 18049, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 16266, + "id": 18050, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 16267, + "id": 18051, "properties": { "type": "double", "waterlogged": "false" @@ -207638,7 +224068,7 @@ }, "states": [ { - "id": 16608, + "id": 18392, "properties": { "facing": "north", "half": "top", @@ -207647,7 +224077,7 @@ } }, { - "id": 16609, + "id": 18393, "properties": { "facing": "north", "half": "top", @@ -207656,7 +224086,7 @@ } }, { - "id": 16610, + "id": 18394, "properties": { "facing": "north", "half": "top", @@ -207665,7 +224095,7 @@ } }, { - "id": 16611, + "id": 18395, "properties": { "facing": "north", "half": "top", @@ -207674,7 +224104,7 @@ } }, { - "id": 16612, + "id": 18396, "properties": { "facing": "north", "half": "top", @@ -207683,7 +224113,7 @@ } }, { - "id": 16613, + "id": 18397, "properties": { "facing": "north", "half": "top", @@ -207692,7 +224122,7 @@ } }, { - "id": 16614, + "id": 18398, "properties": { "facing": "north", "half": "top", @@ -207701,7 +224131,7 @@ } }, { - "id": 16615, + "id": 18399, "properties": { "facing": "north", "half": "top", @@ -207710,7 +224140,7 @@ } }, { - "id": 16616, + "id": 18400, "properties": { "facing": "north", "half": "top", @@ -207719,7 +224149,7 @@ } }, { - "id": 16617, + "id": 18401, "properties": { "facing": "north", "half": "top", @@ -207728,7 +224158,7 @@ } }, { - "id": 16618, + "id": 18402, "properties": { "facing": "north", "half": "bottom", @@ -207738,7 +224168,7 @@ }, { "default": true, - "id": 16619, + "id": 18403, "properties": { "facing": "north", "half": "bottom", @@ -207747,7 +224177,7 @@ } }, { - "id": 16620, + "id": 18404, "properties": { "facing": "north", "half": "bottom", @@ -207756,7 +224186,7 @@ } }, { - "id": 16621, + "id": 18405, "properties": { "facing": "north", "half": "bottom", @@ -207765,7 +224195,7 @@ } }, { - "id": 16622, + "id": 18406, "properties": { "facing": "north", "half": "bottom", @@ -207774,7 +224204,7 @@ } }, { - "id": 16623, + "id": 18407, "properties": { "facing": "north", "half": "bottom", @@ -207783,7 +224213,7 @@ } }, { - "id": 16624, + "id": 18408, "properties": { "facing": "north", "half": "bottom", @@ -207792,7 +224222,7 @@ } }, { - "id": 16625, + "id": 18409, "properties": { "facing": "north", "half": "bottom", @@ -207801,7 +224231,7 @@ } }, { - "id": 16626, + "id": 18410, "properties": { "facing": "north", "half": "bottom", @@ -207810,7 +224240,7 @@ } }, { - "id": 16627, + "id": 18411, "properties": { "facing": "north", "half": "bottom", @@ -207819,7 +224249,7 @@ } }, { - "id": 16628, + "id": 18412, "properties": { "facing": "south", "half": "top", @@ -207828,7 +224258,7 @@ } }, { - "id": 16629, + "id": 18413, "properties": { "facing": "south", "half": "top", @@ -207837,7 +224267,7 @@ } }, { - "id": 16630, + "id": 18414, "properties": { "facing": "south", "half": "top", @@ -207846,7 +224276,7 @@ } }, { - "id": 16631, + "id": 18415, "properties": { "facing": "south", "half": "top", @@ -207855,7 +224285,7 @@ } }, { - "id": 16632, + "id": 18416, "properties": { "facing": "south", "half": "top", @@ -207864,7 +224294,7 @@ } }, { - "id": 16633, + "id": 18417, "properties": { "facing": "south", "half": "top", @@ -207873,7 +224303,7 @@ } }, { - "id": 16634, + "id": 18418, "properties": { "facing": "south", "half": "top", @@ -207882,7 +224312,7 @@ } }, { - "id": 16635, + "id": 18419, "properties": { "facing": "south", "half": "top", @@ -207891,7 +224321,7 @@ } }, { - "id": 16636, + "id": 18420, "properties": { "facing": "south", "half": "top", @@ -207900,7 +224330,7 @@ } }, { - "id": 16637, + "id": 18421, "properties": { "facing": "south", "half": "top", @@ -207909,7 +224339,7 @@ } }, { - "id": 16638, + "id": 18422, "properties": { "facing": "south", "half": "bottom", @@ -207918,7 +224348,7 @@ } }, { - "id": 16639, + "id": 18423, "properties": { "facing": "south", "half": "bottom", @@ -207927,7 +224357,7 @@ } }, { - "id": 16640, + "id": 18424, "properties": { "facing": "south", "half": "bottom", @@ -207936,7 +224366,7 @@ } }, { - "id": 16641, + "id": 18425, "properties": { "facing": "south", "half": "bottom", @@ -207945,7 +224375,7 @@ } }, { - "id": 16642, + "id": 18426, "properties": { "facing": "south", "half": "bottom", @@ -207954,7 +224384,7 @@ } }, { - "id": 16643, + "id": 18427, "properties": { "facing": "south", "half": "bottom", @@ -207963,7 +224393,7 @@ } }, { - "id": 16644, + "id": 18428, "properties": { "facing": "south", "half": "bottom", @@ -207972,7 +224402,7 @@ } }, { - "id": 16645, + "id": 18429, "properties": { "facing": "south", "half": "bottom", @@ -207981,7 +224411,7 @@ } }, { - "id": 16646, + "id": 18430, "properties": { "facing": "south", "half": "bottom", @@ -207990,7 +224420,7 @@ } }, { - "id": 16647, + "id": 18431, "properties": { "facing": "south", "half": "bottom", @@ -207999,7 +224429,7 @@ } }, { - "id": 16648, + "id": 18432, "properties": { "facing": "west", "half": "top", @@ -208008,7 +224438,7 @@ } }, { - "id": 16649, + "id": 18433, "properties": { "facing": "west", "half": "top", @@ -208017,7 +224447,7 @@ } }, { - "id": 16650, + "id": 18434, "properties": { "facing": "west", "half": "top", @@ -208026,7 +224456,7 @@ } }, { - "id": 16651, + "id": 18435, "properties": { "facing": "west", "half": "top", @@ -208035,7 +224465,7 @@ } }, { - "id": 16652, + "id": 18436, "properties": { "facing": "west", "half": "top", @@ -208044,7 +224474,7 @@ } }, { - "id": 16653, + "id": 18437, "properties": { "facing": "west", "half": "top", @@ -208053,7 +224483,7 @@ } }, { - "id": 16654, + "id": 18438, "properties": { "facing": "west", "half": "top", @@ -208062,7 +224492,7 @@ } }, { - "id": 16655, + "id": 18439, "properties": { "facing": "west", "half": "top", @@ -208071,7 +224501,7 @@ } }, { - "id": 16656, + "id": 18440, "properties": { "facing": "west", "half": "top", @@ -208080,7 +224510,7 @@ } }, { - "id": 16657, + "id": 18441, "properties": { "facing": "west", "half": "top", @@ -208089,7 +224519,7 @@ } }, { - "id": 16658, + "id": 18442, "properties": { "facing": "west", "half": "bottom", @@ -208098,7 +224528,7 @@ } }, { - "id": 16659, + "id": 18443, "properties": { "facing": "west", "half": "bottom", @@ -208107,7 +224537,7 @@ } }, { - "id": 16660, + "id": 18444, "properties": { "facing": "west", "half": "bottom", @@ -208116,7 +224546,7 @@ } }, { - "id": 16661, + "id": 18445, "properties": { "facing": "west", "half": "bottom", @@ -208125,7 +224555,7 @@ } }, { - "id": 16662, + "id": 18446, "properties": { "facing": "west", "half": "bottom", @@ -208134,7 +224564,7 @@ } }, { - "id": 16663, + "id": 18447, "properties": { "facing": "west", "half": "bottom", @@ -208143,7 +224573,7 @@ } }, { - "id": 16664, + "id": 18448, "properties": { "facing": "west", "half": "bottom", @@ -208152,7 +224582,7 @@ } }, { - "id": 16665, + "id": 18449, "properties": { "facing": "west", "half": "bottom", @@ -208161,7 +224591,7 @@ } }, { - "id": 16666, + "id": 18450, "properties": { "facing": "west", "half": "bottom", @@ -208170,7 +224600,7 @@ } }, { - "id": 16667, + "id": 18451, "properties": { "facing": "west", "half": "bottom", @@ -208179,7 +224609,7 @@ } }, { - "id": 16668, + "id": 18452, "properties": { "facing": "east", "half": "top", @@ -208188,7 +224618,7 @@ } }, { - "id": 16669, + "id": 18453, "properties": { "facing": "east", "half": "top", @@ -208197,7 +224627,7 @@ } }, { - "id": 16670, + "id": 18454, "properties": { "facing": "east", "half": "top", @@ -208206,7 +224636,7 @@ } }, { - "id": 16671, + "id": 18455, "properties": { "facing": "east", "half": "top", @@ -208215,7 +224645,7 @@ } }, { - "id": 16672, + "id": 18456, "properties": { "facing": "east", "half": "top", @@ -208224,7 +224654,7 @@ } }, { - "id": 16673, + "id": 18457, "properties": { "facing": "east", "half": "top", @@ -208233,7 +224663,7 @@ } }, { - "id": 16674, + "id": 18458, "properties": { "facing": "east", "half": "top", @@ -208242,7 +224672,7 @@ } }, { - "id": 16675, + "id": 18459, "properties": { "facing": "east", "half": "top", @@ -208251,7 +224681,7 @@ } }, { - "id": 16676, + "id": 18460, "properties": { "facing": "east", "half": "top", @@ -208260,7 +224690,7 @@ } }, { - "id": 16677, + "id": 18461, "properties": { "facing": "east", "half": "top", @@ -208269,7 +224699,7 @@ } }, { - "id": 16678, + "id": 18462, "properties": { "facing": "east", "half": "bottom", @@ -208278,7 +224708,7 @@ } }, { - "id": 16679, + "id": 18463, "properties": { "facing": "east", "half": "bottom", @@ -208287,7 +224717,7 @@ } }, { - "id": 16680, + "id": 18464, "properties": { "facing": "east", "half": "bottom", @@ -208296,7 +224726,7 @@ } }, { - "id": 16681, + "id": 18465, "properties": { "facing": "east", "half": "bottom", @@ -208305,7 +224735,7 @@ } }, { - "id": 16682, + "id": 18466, "properties": { "facing": "east", "half": "bottom", @@ -208314,7 +224744,7 @@ } }, { - "id": 16683, + "id": 18467, "properties": { "facing": "east", "half": "bottom", @@ -208323,7 +224753,7 @@ } }, { - "id": 16684, + "id": 18468, "properties": { "facing": "east", "half": "bottom", @@ -208332,7 +224762,7 @@ } }, { - "id": 16685, + "id": 18469, "properties": { "facing": "east", "half": "bottom", @@ -208341,7 +224771,7 @@ } }, { - "id": 16686, + "id": 18470, "properties": { "facing": "east", "half": "bottom", @@ -208350,7 +224780,7 @@ } }, { - "id": 16687, + "id": 18471, "properties": { "facing": "east", "half": "bottom", @@ -208370,20 +224800,20 @@ }, "states": [ { - "id": 16167, + "id": 17951, "properties": { "axis": "x" } }, { "default": true, - "id": 16168, + "id": 17952, "properties": { "axis": "y" } }, { - "id": 16169, + "id": 17953, "properties": { "axis": "z" } @@ -208417,7 +224847,7 @@ }, "states": [ { - "id": 16400, + "id": 18184, "properties": { "facing": "north", "half": "top", @@ -208427,7 +224857,7 @@ } }, { - "id": 16401, + "id": 18185, "properties": { "facing": "north", "half": "top", @@ -208437,7 +224867,7 @@ } }, { - "id": 16402, + "id": 18186, "properties": { "facing": "north", "half": "top", @@ -208447,7 +224877,7 @@ } }, { - "id": 16403, + "id": 18187, "properties": { "facing": "north", "half": "top", @@ -208457,7 +224887,7 @@ } }, { - "id": 16404, + "id": 18188, "properties": { "facing": "north", "half": "top", @@ -208467,7 +224897,7 @@ } }, { - "id": 16405, + "id": 18189, "properties": { "facing": "north", "half": "top", @@ -208477,7 +224907,7 @@ } }, { - "id": 16406, + "id": 18190, "properties": { "facing": "north", "half": "top", @@ -208487,7 +224917,7 @@ } }, { - "id": 16407, + "id": 18191, "properties": { "facing": "north", "half": "top", @@ -208497,7 +224927,7 @@ } }, { - "id": 16408, + "id": 18192, "properties": { "facing": "north", "half": "bottom", @@ -208507,7 +224937,7 @@ } }, { - "id": 16409, + "id": 18193, "properties": { "facing": "north", "half": "bottom", @@ -208517,7 +224947,7 @@ } }, { - "id": 16410, + "id": 18194, "properties": { "facing": "north", "half": "bottom", @@ -208527,7 +224957,7 @@ } }, { - "id": 16411, + "id": 18195, "properties": { "facing": "north", "half": "bottom", @@ -208537,7 +224967,7 @@ } }, { - "id": 16412, + "id": 18196, "properties": { "facing": "north", "half": "bottom", @@ -208547,7 +224977,7 @@ } }, { - "id": 16413, + "id": 18197, "properties": { "facing": "north", "half": "bottom", @@ -208557,7 +224987,7 @@ } }, { - "id": 16414, + "id": 18198, "properties": { "facing": "north", "half": "bottom", @@ -208568,7 +224998,7 @@ }, { "default": true, - "id": 16415, + "id": 18199, "properties": { "facing": "north", "half": "bottom", @@ -208578,7 +225008,7 @@ } }, { - "id": 16416, + "id": 18200, "properties": { "facing": "south", "half": "top", @@ -208588,7 +225018,7 @@ } }, { - "id": 16417, + "id": 18201, "properties": { "facing": "south", "half": "top", @@ -208598,7 +225028,7 @@ } }, { - "id": 16418, + "id": 18202, "properties": { "facing": "south", "half": "top", @@ -208608,7 +225038,7 @@ } }, { - "id": 16419, + "id": 18203, "properties": { "facing": "south", "half": "top", @@ -208618,7 +225048,7 @@ } }, { - "id": 16420, + "id": 18204, "properties": { "facing": "south", "half": "top", @@ -208628,7 +225058,7 @@ } }, { - "id": 16421, + "id": 18205, "properties": { "facing": "south", "half": "top", @@ -208638,7 +225068,7 @@ } }, { - "id": 16422, + "id": 18206, "properties": { "facing": "south", "half": "top", @@ -208648,7 +225078,7 @@ } }, { - "id": 16423, + "id": 18207, "properties": { "facing": "south", "half": "top", @@ -208658,7 +225088,7 @@ } }, { - "id": 16424, + "id": 18208, "properties": { "facing": "south", "half": "bottom", @@ -208668,7 +225098,7 @@ } }, { - "id": 16425, + "id": 18209, "properties": { "facing": "south", "half": "bottom", @@ -208678,7 +225108,7 @@ } }, { - "id": 16426, + "id": 18210, "properties": { "facing": "south", "half": "bottom", @@ -208688,7 +225118,7 @@ } }, { - "id": 16427, + "id": 18211, "properties": { "facing": "south", "half": "bottom", @@ -208698,7 +225128,7 @@ } }, { - "id": 16428, + "id": 18212, "properties": { "facing": "south", "half": "bottom", @@ -208708,7 +225138,7 @@ } }, { - "id": 16429, + "id": 18213, "properties": { "facing": "south", "half": "bottom", @@ -208718,7 +225148,7 @@ } }, { - "id": 16430, + "id": 18214, "properties": { "facing": "south", "half": "bottom", @@ -208728,7 +225158,7 @@ } }, { - "id": 16431, + "id": 18215, "properties": { "facing": "south", "half": "bottom", @@ -208738,7 +225168,7 @@ } }, { - "id": 16432, + "id": 18216, "properties": { "facing": "west", "half": "top", @@ -208748,7 +225178,7 @@ } }, { - "id": 16433, + "id": 18217, "properties": { "facing": "west", "half": "top", @@ -208758,7 +225188,7 @@ } }, { - "id": 16434, + "id": 18218, "properties": { "facing": "west", "half": "top", @@ -208768,7 +225198,7 @@ } }, { - "id": 16435, + "id": 18219, "properties": { "facing": "west", "half": "top", @@ -208778,7 +225208,7 @@ } }, { - "id": 16436, + "id": 18220, "properties": { "facing": "west", "half": "top", @@ -208788,7 +225218,7 @@ } }, { - "id": 16437, + "id": 18221, "properties": { "facing": "west", "half": "top", @@ -208798,7 +225228,7 @@ } }, { - "id": 16438, + "id": 18222, "properties": { "facing": "west", "half": "top", @@ -208808,7 +225238,7 @@ } }, { - "id": 16439, + "id": 18223, "properties": { "facing": "west", "half": "top", @@ -208818,7 +225248,7 @@ } }, { - "id": 16440, + "id": 18224, "properties": { "facing": "west", "half": "bottom", @@ -208828,7 +225258,7 @@ } }, { - "id": 16441, + "id": 18225, "properties": { "facing": "west", "half": "bottom", @@ -208838,7 +225268,7 @@ } }, { - "id": 16442, + "id": 18226, "properties": { "facing": "west", "half": "bottom", @@ -208848,7 +225278,7 @@ } }, { - "id": 16443, + "id": 18227, "properties": { "facing": "west", "half": "bottom", @@ -208858,7 +225288,7 @@ } }, { - "id": 16444, + "id": 18228, "properties": { "facing": "west", "half": "bottom", @@ -208868,7 +225298,7 @@ } }, { - "id": 16445, + "id": 18229, "properties": { "facing": "west", "half": "bottom", @@ -208878,7 +225308,7 @@ } }, { - "id": 16446, + "id": 18230, "properties": { "facing": "west", "half": "bottom", @@ -208888,7 +225318,7 @@ } }, { - "id": 16447, + "id": 18231, "properties": { "facing": "west", "half": "bottom", @@ -208898,7 +225328,7 @@ } }, { - "id": 16448, + "id": 18232, "properties": { "facing": "east", "half": "top", @@ -208908,7 +225338,7 @@ } }, { - "id": 16449, + "id": 18233, "properties": { "facing": "east", "half": "top", @@ -208918,7 +225348,7 @@ } }, { - "id": 16450, + "id": 18234, "properties": { "facing": "east", "half": "top", @@ -208928,7 +225358,7 @@ } }, { - "id": 16451, + "id": 18235, "properties": { "facing": "east", "half": "top", @@ -208938,7 +225368,7 @@ } }, { - "id": 16452, + "id": 18236, "properties": { "facing": "east", "half": "top", @@ -208948,7 +225378,7 @@ } }, { - "id": 16453, + "id": 18237, "properties": { "facing": "east", "half": "top", @@ -208958,7 +225388,7 @@ } }, { - "id": 16454, + "id": 18238, "properties": { "facing": "east", "half": "top", @@ -208968,7 +225398,7 @@ } }, { - "id": 16455, + "id": 18239, "properties": { "facing": "east", "half": "top", @@ -208978,7 +225408,7 @@ } }, { - "id": 16456, + "id": 18240, "properties": { "facing": "east", "half": "bottom", @@ -208988,7 +225418,7 @@ } }, { - "id": 16457, + "id": 18241, "properties": { "facing": "east", "half": "bottom", @@ -208998,7 +225428,7 @@ } }, { - "id": 16458, + "id": 18242, "properties": { "facing": "east", "half": "bottom", @@ -209008,7 +225438,7 @@ } }, { - "id": 16459, + "id": 18243, "properties": { "facing": "east", "half": "bottom", @@ -209018,7 +225448,7 @@ } }, { - "id": 16460, + "id": 18244, "properties": { "facing": "east", "half": "bottom", @@ -209028,7 +225458,7 @@ } }, { - "id": 16461, + "id": 18245, "properties": { "facing": "east", "half": "bottom", @@ -209038,7 +225468,7 @@ } }, { - "id": 16462, + "id": 18246, "properties": { "facing": "east", "half": "bottom", @@ -209048,7 +225478,7 @@ } }, { - "id": 16463, + "id": 18247, "properties": { "facing": "east", "half": "bottom", @@ -209059,6 +225489,79 @@ } ] }, + "minecraft:warped_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5446, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5447, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5448, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5449, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5450, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5451, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5452, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5453, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, "minecraft:warped_wall_sign": { "properties": { "facing": [ @@ -209074,7 +225577,7 @@ }, "states": [ { - "id": 16936, + "id": 18720, "properties": { "facing": "north", "waterlogged": "true" @@ -209082,49 +225585,49 @@ }, { "default": true, - "id": 16937, + "id": 18721, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 16938, + "id": 18722, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 16939, + "id": 18723, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 16940, + "id": 18724, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 16941, + "id": 18725, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 16942, + "id": 18726, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 16943, + "id": 18727, "properties": { "facing": "east", "waterlogged": "false" @@ -209136,7 +225639,7 @@ "states": [ { "default": true, - "id": 16181 + "id": 17965 } ] }, @@ -209164,97 +225667,97 @@ "states": [ { "default": true, - "id": 75, + "id": 77, "properties": { "level": "0" } }, { - "id": 76, + "id": 78, "properties": { "level": "1" } }, { - "id": 77, + "id": 79, "properties": { "level": "2" } }, { - "id": 78, + "id": 80, "properties": { "level": "3" } }, { - "id": 79, + "id": 81, "properties": { "level": "4" } }, { - "id": 80, + "id": 82, "properties": { "level": "5" } }, { - "id": 81, + "id": 83, "properties": { "level": "6" } }, { - "id": 82, + "id": 84, "properties": { "level": "7" } }, { - "id": 83, + "id": 85, "properties": { "level": "8" } }, { - "id": 84, + "id": 86, "properties": { "level": "9" } }, { - "id": 85, + "id": 87, "properties": { "level": "10" } }, { - "id": 86, + "id": 88, "properties": { "level": "11" } }, { - "id": 87, + "id": 89, "properties": { "level": "12" } }, { - "id": 88, + "id": 90, "properties": { "level": "13" } }, { - "id": 89, + "id": 91, "properties": { "level": "14" } }, { - "id": 90, + "id": 92, "properties": { "level": "15" } @@ -209272,19 +225775,19 @@ "states": [ { "default": true, - "id": 5729, + "id": 7169, "properties": { "level": "1" } }, { - "id": 5730, + "id": 7170, "properties": { "level": "2" } }, { - "id": 5731, + "id": 7171, "properties": { "level": "3" } @@ -209295,7 +225798,7 @@ "states": [ { "default": true, - "id": 19262 + "id": 21046 } ] }, @@ -209303,7 +225806,7 @@ "states": [ { "default": true, - "id": 19269 + "id": 21053 } ] }, @@ -209321,21 +225824,21 @@ }, "states": [ { - "id": 19608, + "id": 21392, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 19609, + "id": 21393, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 19610, + "id": 21394, "properties": { "type": "bottom", "waterlogged": "true" @@ -209343,21 +225846,21 @@ }, { "default": true, - "id": 19611, + "id": 21395, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 19612, + "id": 21396, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 19613, + "id": 21397, "properties": { "type": "double", "waterlogged": "false" @@ -209391,7 +225894,7 @@ }, "states": [ { - "id": 19510, + "id": 21294, "properties": { "facing": "north", "half": "top", @@ -209400,7 +225903,7 @@ } }, { - "id": 19511, + "id": 21295, "properties": { "facing": "north", "half": "top", @@ -209409,7 +225912,7 @@ } }, { - "id": 19512, + "id": 21296, "properties": { "facing": "north", "half": "top", @@ -209418,7 +225921,7 @@ } }, { - "id": 19513, + "id": 21297, "properties": { "facing": "north", "half": "top", @@ -209427,7 +225930,7 @@ } }, { - "id": 19514, + "id": 21298, "properties": { "facing": "north", "half": "top", @@ -209436,7 +225939,7 @@ } }, { - "id": 19515, + "id": 21299, "properties": { "facing": "north", "half": "top", @@ -209445,7 +225948,7 @@ } }, { - "id": 19516, + "id": 21300, "properties": { "facing": "north", "half": "top", @@ -209454,7 +225957,7 @@ } }, { - "id": 19517, + "id": 21301, "properties": { "facing": "north", "half": "top", @@ -209463,7 +225966,7 @@ } }, { - "id": 19518, + "id": 21302, "properties": { "facing": "north", "half": "top", @@ -209472,7 +225975,7 @@ } }, { - "id": 19519, + "id": 21303, "properties": { "facing": "north", "half": "top", @@ -209481,7 +225984,7 @@ } }, { - "id": 19520, + "id": 21304, "properties": { "facing": "north", "half": "bottom", @@ -209491,7 +225994,7 @@ }, { "default": true, - "id": 19521, + "id": 21305, "properties": { "facing": "north", "half": "bottom", @@ -209500,7 +226003,7 @@ } }, { - "id": 19522, + "id": 21306, "properties": { "facing": "north", "half": "bottom", @@ -209509,7 +226012,7 @@ } }, { - "id": 19523, + "id": 21307, "properties": { "facing": "north", "half": "bottom", @@ -209518,7 +226021,7 @@ } }, { - "id": 19524, + "id": 21308, "properties": { "facing": "north", "half": "bottom", @@ -209527,7 +226030,7 @@ } }, { - "id": 19525, + "id": 21309, "properties": { "facing": "north", "half": "bottom", @@ -209536,7 +226039,7 @@ } }, { - "id": 19526, + "id": 21310, "properties": { "facing": "north", "half": "bottom", @@ -209545,7 +226048,7 @@ } }, { - "id": 19527, + "id": 21311, "properties": { "facing": "north", "half": "bottom", @@ -209554,7 +226057,7 @@ } }, { - "id": 19528, + "id": 21312, "properties": { "facing": "north", "half": "bottom", @@ -209563,7 +226066,7 @@ } }, { - "id": 19529, + "id": 21313, "properties": { "facing": "north", "half": "bottom", @@ -209572,7 +226075,7 @@ } }, { - "id": 19530, + "id": 21314, "properties": { "facing": "south", "half": "top", @@ -209581,7 +226084,7 @@ } }, { - "id": 19531, + "id": 21315, "properties": { "facing": "south", "half": "top", @@ -209590,7 +226093,7 @@ } }, { - "id": 19532, + "id": 21316, "properties": { "facing": "south", "half": "top", @@ -209599,7 +226102,7 @@ } }, { - "id": 19533, + "id": 21317, "properties": { "facing": "south", "half": "top", @@ -209608,7 +226111,7 @@ } }, { - "id": 19534, + "id": 21318, "properties": { "facing": "south", "half": "top", @@ -209617,7 +226120,7 @@ } }, { - "id": 19535, + "id": 21319, "properties": { "facing": "south", "half": "top", @@ -209626,7 +226129,7 @@ } }, { - "id": 19536, + "id": 21320, "properties": { "facing": "south", "half": "top", @@ -209635,7 +226138,7 @@ } }, { - "id": 19537, + "id": 21321, "properties": { "facing": "south", "half": "top", @@ -209644,7 +226147,7 @@ } }, { - "id": 19538, + "id": 21322, "properties": { "facing": "south", "half": "top", @@ -209653,7 +226156,7 @@ } }, { - "id": 19539, + "id": 21323, "properties": { "facing": "south", "half": "top", @@ -209662,7 +226165,7 @@ } }, { - "id": 19540, + "id": 21324, "properties": { "facing": "south", "half": "bottom", @@ -209671,7 +226174,7 @@ } }, { - "id": 19541, + "id": 21325, "properties": { "facing": "south", "half": "bottom", @@ -209680,7 +226183,7 @@ } }, { - "id": 19542, + "id": 21326, "properties": { "facing": "south", "half": "bottom", @@ -209689,7 +226192,7 @@ } }, { - "id": 19543, + "id": 21327, "properties": { "facing": "south", "half": "bottom", @@ -209698,7 +226201,7 @@ } }, { - "id": 19544, + "id": 21328, "properties": { "facing": "south", "half": "bottom", @@ -209707,7 +226210,7 @@ } }, { - "id": 19545, + "id": 21329, "properties": { "facing": "south", "half": "bottom", @@ -209716,7 +226219,7 @@ } }, { - "id": 19546, + "id": 21330, "properties": { "facing": "south", "half": "bottom", @@ -209725,7 +226228,7 @@ } }, { - "id": 19547, + "id": 21331, "properties": { "facing": "south", "half": "bottom", @@ -209734,7 +226237,7 @@ } }, { - "id": 19548, + "id": 21332, "properties": { "facing": "south", "half": "bottom", @@ -209743,7 +226246,7 @@ } }, { - "id": 19549, + "id": 21333, "properties": { "facing": "south", "half": "bottom", @@ -209752,7 +226255,7 @@ } }, { - "id": 19550, + "id": 21334, "properties": { "facing": "west", "half": "top", @@ -209761,7 +226264,7 @@ } }, { - "id": 19551, + "id": 21335, "properties": { "facing": "west", "half": "top", @@ -209770,7 +226273,7 @@ } }, { - "id": 19552, + "id": 21336, "properties": { "facing": "west", "half": "top", @@ -209779,7 +226282,7 @@ } }, { - "id": 19553, + "id": 21337, "properties": { "facing": "west", "half": "top", @@ -209788,7 +226291,7 @@ } }, { - "id": 19554, + "id": 21338, "properties": { "facing": "west", "half": "top", @@ -209797,7 +226300,7 @@ } }, { - "id": 19555, + "id": 21339, "properties": { "facing": "west", "half": "top", @@ -209806,7 +226309,7 @@ } }, { - "id": 19556, + "id": 21340, "properties": { "facing": "west", "half": "top", @@ -209815,7 +226318,7 @@ } }, { - "id": 19557, + "id": 21341, "properties": { "facing": "west", "half": "top", @@ -209824,7 +226327,7 @@ } }, { - "id": 19558, + "id": 21342, "properties": { "facing": "west", "half": "top", @@ -209833,7 +226336,7 @@ } }, { - "id": 19559, + "id": 21343, "properties": { "facing": "west", "half": "top", @@ -209842,7 +226345,7 @@ } }, { - "id": 19560, + "id": 21344, "properties": { "facing": "west", "half": "bottom", @@ -209851,7 +226354,7 @@ } }, { - "id": 19561, + "id": 21345, "properties": { "facing": "west", "half": "bottom", @@ -209860,7 +226363,7 @@ } }, { - "id": 19562, + "id": 21346, "properties": { "facing": "west", "half": "bottom", @@ -209869,7 +226372,7 @@ } }, { - "id": 19563, + "id": 21347, "properties": { "facing": "west", "half": "bottom", @@ -209878,7 +226381,7 @@ } }, { - "id": 19564, + "id": 21348, "properties": { "facing": "west", "half": "bottom", @@ -209887,7 +226390,7 @@ } }, { - "id": 19565, + "id": 21349, "properties": { "facing": "west", "half": "bottom", @@ -209896,7 +226399,7 @@ } }, { - "id": 19566, + "id": 21350, "properties": { "facing": "west", "half": "bottom", @@ -209905,7 +226408,7 @@ } }, { - "id": 19567, + "id": 21351, "properties": { "facing": "west", "half": "bottom", @@ -209914,7 +226417,7 @@ } }, { - "id": 19568, + "id": 21352, "properties": { "facing": "west", "half": "bottom", @@ -209923,7 +226426,7 @@ } }, { - "id": 19569, + "id": 21353, "properties": { "facing": "west", "half": "bottom", @@ -209932,7 +226435,7 @@ } }, { - "id": 19570, + "id": 21354, "properties": { "facing": "east", "half": "top", @@ -209941,7 +226444,7 @@ } }, { - "id": 19571, + "id": 21355, "properties": { "facing": "east", "half": "top", @@ -209950,7 +226453,7 @@ } }, { - "id": 19572, + "id": 21356, "properties": { "facing": "east", "half": "top", @@ -209959,7 +226462,7 @@ } }, { - "id": 19573, + "id": 21357, "properties": { "facing": "east", "half": "top", @@ -209968,7 +226471,7 @@ } }, { - "id": 19574, + "id": 21358, "properties": { "facing": "east", "half": "top", @@ -209977,7 +226480,7 @@ } }, { - "id": 19575, + "id": 21359, "properties": { "facing": "east", "half": "top", @@ -209986,7 +226489,7 @@ } }, { - "id": 19576, + "id": 21360, "properties": { "facing": "east", "half": "top", @@ -209995,7 +226498,7 @@ } }, { - "id": 19577, + "id": 21361, "properties": { "facing": "east", "half": "top", @@ -210004,7 +226507,7 @@ } }, { - "id": 19578, + "id": 21362, "properties": { "facing": "east", "half": "top", @@ -210013,7 +226516,7 @@ } }, { - "id": 19579, + "id": 21363, "properties": { "facing": "east", "half": "top", @@ -210022,7 +226525,7 @@ } }, { - "id": 19580, + "id": 21364, "properties": { "facing": "east", "half": "bottom", @@ -210031,7 +226534,7 @@ } }, { - "id": 19581, + "id": 21365, "properties": { "facing": "east", "half": "bottom", @@ -210040,7 +226543,7 @@ } }, { - "id": 19582, + "id": 21366, "properties": { "facing": "east", "half": "bottom", @@ -210049,7 +226552,7 @@ } }, { - "id": 19583, + "id": 21367, "properties": { "facing": "east", "half": "bottom", @@ -210058,7 +226561,7 @@ } }, { - "id": 19584, + "id": 21368, "properties": { "facing": "east", "half": "bottom", @@ -210067,7 +226570,7 @@ } }, { - "id": 19585, + "id": 21369, "properties": { "facing": "east", "half": "bottom", @@ -210076,7 +226579,7 @@ } }, { - "id": 19586, + "id": 21370, "properties": { "facing": "east", "half": "bottom", @@ -210085,7 +226588,7 @@ } }, { - "id": 19587, + "id": 21371, "properties": { "facing": "east", "half": "bottom", @@ -210094,7 +226597,7 @@ } }, { - "id": 19588, + "id": 21372, "properties": { "facing": "east", "half": "bottom", @@ -210103,7 +226606,7 @@ } }, { - "id": 19589, + "id": 21373, "properties": { "facing": "east", "half": "bottom", @@ -210117,7 +226620,7 @@ "states": [ { "default": true, - "id": 19264 + "id": 21048 } ] }, @@ -210125,7 +226628,7 @@ "states": [ { "default": true, - "id": 19268 + "id": 21052 } ] }, @@ -210143,21 +226646,21 @@ }, "states": [ { - "id": 19602, + "id": 21386, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 19603, + "id": 21387, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 19604, + "id": 21388, "properties": { "type": "bottom", "waterlogged": "true" @@ -210165,21 +226668,21 @@ }, { "default": true, - "id": 19605, + "id": 21389, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 19606, + "id": 21390, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 19607, + "id": 21391, "properties": { "type": "double", "waterlogged": "false" @@ -210213,7 +226716,7 @@ }, "states": [ { - "id": 19430, + "id": 21214, "properties": { "facing": "north", "half": "top", @@ -210222,7 +226725,7 @@ } }, { - "id": 19431, + "id": 21215, "properties": { "facing": "north", "half": "top", @@ -210231,7 +226734,7 @@ } }, { - "id": 19432, + "id": 21216, "properties": { "facing": "north", "half": "top", @@ -210240,7 +226743,7 @@ } }, { - "id": 19433, + "id": 21217, "properties": { "facing": "north", "half": "top", @@ -210249,7 +226752,7 @@ } }, { - "id": 19434, + "id": 21218, "properties": { "facing": "north", "half": "top", @@ -210258,7 +226761,7 @@ } }, { - "id": 19435, + "id": 21219, "properties": { "facing": "north", "half": "top", @@ -210267,7 +226770,7 @@ } }, { - "id": 19436, + "id": 21220, "properties": { "facing": "north", "half": "top", @@ -210276,7 +226779,7 @@ } }, { - "id": 19437, + "id": 21221, "properties": { "facing": "north", "half": "top", @@ -210285,7 +226788,7 @@ } }, { - "id": 19438, + "id": 21222, "properties": { "facing": "north", "half": "top", @@ -210294,7 +226797,7 @@ } }, { - "id": 19439, + "id": 21223, "properties": { "facing": "north", "half": "top", @@ -210303,7 +226806,7 @@ } }, { - "id": 19440, + "id": 21224, "properties": { "facing": "north", "half": "bottom", @@ -210313,7 +226816,7 @@ }, { "default": true, - "id": 19441, + "id": 21225, "properties": { "facing": "north", "half": "bottom", @@ -210322,7 +226825,7 @@ } }, { - "id": 19442, + "id": 21226, "properties": { "facing": "north", "half": "bottom", @@ -210331,7 +226834,7 @@ } }, { - "id": 19443, + "id": 21227, "properties": { "facing": "north", "half": "bottom", @@ -210340,7 +226843,7 @@ } }, { - "id": 19444, + "id": 21228, "properties": { "facing": "north", "half": "bottom", @@ -210349,7 +226852,7 @@ } }, { - "id": 19445, + "id": 21229, "properties": { "facing": "north", "half": "bottom", @@ -210358,7 +226861,7 @@ } }, { - "id": 19446, + "id": 21230, "properties": { "facing": "north", "half": "bottom", @@ -210367,7 +226870,7 @@ } }, { - "id": 19447, + "id": 21231, "properties": { "facing": "north", "half": "bottom", @@ -210376,7 +226879,7 @@ } }, { - "id": 19448, + "id": 21232, "properties": { "facing": "north", "half": "bottom", @@ -210385,7 +226888,7 @@ } }, { - "id": 19449, + "id": 21233, "properties": { "facing": "north", "half": "bottom", @@ -210394,7 +226897,7 @@ } }, { - "id": 19450, + "id": 21234, "properties": { "facing": "south", "half": "top", @@ -210403,7 +226906,7 @@ } }, { - "id": 19451, + "id": 21235, "properties": { "facing": "south", "half": "top", @@ -210412,7 +226915,7 @@ } }, { - "id": 19452, + "id": 21236, "properties": { "facing": "south", "half": "top", @@ -210421,7 +226924,7 @@ } }, { - "id": 19453, + "id": 21237, "properties": { "facing": "south", "half": "top", @@ -210430,7 +226933,7 @@ } }, { - "id": 19454, + "id": 21238, "properties": { "facing": "south", "half": "top", @@ -210439,7 +226942,7 @@ } }, { - "id": 19455, + "id": 21239, "properties": { "facing": "south", "half": "top", @@ -210448,7 +226951,7 @@ } }, { - "id": 19456, + "id": 21240, "properties": { "facing": "south", "half": "top", @@ -210457,7 +226960,7 @@ } }, { - "id": 19457, + "id": 21241, "properties": { "facing": "south", "half": "top", @@ -210466,7 +226969,7 @@ } }, { - "id": 19458, + "id": 21242, "properties": { "facing": "south", "half": "top", @@ -210475,7 +226978,7 @@ } }, { - "id": 19459, + "id": 21243, "properties": { "facing": "south", "half": "top", @@ -210484,7 +226987,7 @@ } }, { - "id": 19460, + "id": 21244, "properties": { "facing": "south", "half": "bottom", @@ -210493,7 +226996,7 @@ } }, { - "id": 19461, + "id": 21245, "properties": { "facing": "south", "half": "bottom", @@ -210502,7 +227005,7 @@ } }, { - "id": 19462, + "id": 21246, "properties": { "facing": "south", "half": "bottom", @@ -210511,7 +227014,7 @@ } }, { - "id": 19463, + "id": 21247, "properties": { "facing": "south", "half": "bottom", @@ -210520,7 +227023,7 @@ } }, { - "id": 19464, + "id": 21248, "properties": { "facing": "south", "half": "bottom", @@ -210529,7 +227032,7 @@ } }, { - "id": 19465, + "id": 21249, "properties": { "facing": "south", "half": "bottom", @@ -210538,7 +227041,7 @@ } }, { - "id": 19466, + "id": 21250, "properties": { "facing": "south", "half": "bottom", @@ -210547,7 +227050,7 @@ } }, { - "id": 19467, + "id": 21251, "properties": { "facing": "south", "half": "bottom", @@ -210556,7 +227059,7 @@ } }, { - "id": 19468, + "id": 21252, "properties": { "facing": "south", "half": "bottom", @@ -210565,7 +227068,7 @@ } }, { - "id": 19469, + "id": 21253, "properties": { "facing": "south", "half": "bottom", @@ -210574,7 +227077,7 @@ } }, { - "id": 19470, + "id": 21254, "properties": { "facing": "west", "half": "top", @@ -210583,7 +227086,7 @@ } }, { - "id": 19471, + "id": 21255, "properties": { "facing": "west", "half": "top", @@ -210592,7 +227095,7 @@ } }, { - "id": 19472, + "id": 21256, "properties": { "facing": "west", "half": "top", @@ -210601,7 +227104,7 @@ } }, { - "id": 19473, + "id": 21257, "properties": { "facing": "west", "half": "top", @@ -210610,7 +227113,7 @@ } }, { - "id": 19474, + "id": 21258, "properties": { "facing": "west", "half": "top", @@ -210619,7 +227122,7 @@ } }, { - "id": 19475, + "id": 21259, "properties": { "facing": "west", "half": "top", @@ -210628,7 +227131,7 @@ } }, { - "id": 19476, + "id": 21260, "properties": { "facing": "west", "half": "top", @@ -210637,7 +227140,7 @@ } }, { - "id": 19477, + "id": 21261, "properties": { "facing": "west", "half": "top", @@ -210646,7 +227149,7 @@ } }, { - "id": 19478, + "id": 21262, "properties": { "facing": "west", "half": "top", @@ -210655,7 +227158,7 @@ } }, { - "id": 19479, + "id": 21263, "properties": { "facing": "west", "half": "top", @@ -210664,7 +227167,7 @@ } }, { - "id": 19480, + "id": 21264, "properties": { "facing": "west", "half": "bottom", @@ -210673,7 +227176,7 @@ } }, { - "id": 19481, + "id": 21265, "properties": { "facing": "west", "half": "bottom", @@ -210682,7 +227185,7 @@ } }, { - "id": 19482, + "id": 21266, "properties": { "facing": "west", "half": "bottom", @@ -210691,7 +227194,7 @@ } }, { - "id": 19483, + "id": 21267, "properties": { "facing": "west", "half": "bottom", @@ -210700,7 +227203,7 @@ } }, { - "id": 19484, + "id": 21268, "properties": { "facing": "west", "half": "bottom", @@ -210709,7 +227212,7 @@ } }, { - "id": 19485, + "id": 21269, "properties": { "facing": "west", "half": "bottom", @@ -210718,7 +227221,7 @@ } }, { - "id": 19486, + "id": 21270, "properties": { "facing": "west", "half": "bottom", @@ -210727,7 +227230,7 @@ } }, { - "id": 19487, + "id": 21271, "properties": { "facing": "west", "half": "bottom", @@ -210736,7 +227239,7 @@ } }, { - "id": 19488, + "id": 21272, "properties": { "facing": "west", "half": "bottom", @@ -210745,7 +227248,7 @@ } }, { - "id": 19489, + "id": 21273, "properties": { "facing": "west", "half": "bottom", @@ -210754,7 +227257,7 @@ } }, { - "id": 19490, + "id": 21274, "properties": { "facing": "east", "half": "top", @@ -210763,7 +227266,7 @@ } }, { - "id": 19491, + "id": 21275, "properties": { "facing": "east", "half": "top", @@ -210772,7 +227275,7 @@ } }, { - "id": 19492, + "id": 21276, "properties": { "facing": "east", "half": "top", @@ -210781,7 +227284,7 @@ } }, { - "id": 19493, + "id": 21277, "properties": { "facing": "east", "half": "top", @@ -210790,7 +227293,7 @@ } }, { - "id": 19494, + "id": 21278, "properties": { "facing": "east", "half": "top", @@ -210799,7 +227302,7 @@ } }, { - "id": 19495, + "id": 21279, "properties": { "facing": "east", "half": "top", @@ -210808,7 +227311,7 @@ } }, { - "id": 19496, + "id": 21280, "properties": { "facing": "east", "half": "top", @@ -210817,7 +227320,7 @@ } }, { - "id": 19497, + "id": 21281, "properties": { "facing": "east", "half": "top", @@ -210826,7 +227329,7 @@ } }, { - "id": 19498, + "id": 21282, "properties": { "facing": "east", "half": "top", @@ -210835,7 +227338,7 @@ } }, { - "id": 19499, + "id": 21283, "properties": { "facing": "east", "half": "top", @@ -210844,7 +227347,7 @@ } }, { - "id": 19500, + "id": 21284, "properties": { "facing": "east", "half": "bottom", @@ -210853,7 +227356,7 @@ } }, { - "id": 19501, + "id": 21285, "properties": { "facing": "east", "half": "bottom", @@ -210862,7 +227365,7 @@ } }, { - "id": 19502, + "id": 21286, "properties": { "facing": "east", "half": "bottom", @@ -210871,7 +227374,7 @@ } }, { - "id": 19503, + "id": 21287, "properties": { "facing": "east", "half": "bottom", @@ -210880,7 +227383,7 @@ } }, { - "id": 19504, + "id": 21288, "properties": { "facing": "east", "half": "bottom", @@ -210889,7 +227392,7 @@ } }, { - "id": 19505, + "id": 21289, "properties": { "facing": "east", "half": "bottom", @@ -210898,7 +227401,7 @@ } }, { - "id": 19506, + "id": 21290, "properties": { "facing": "east", "half": "bottom", @@ -210907,7 +227410,7 @@ } }, { - "id": 19507, + "id": 21291, "properties": { "facing": "east", "half": "bottom", @@ -210916,7 +227419,7 @@ } }, { - "id": 19508, + "id": 21292, "properties": { "facing": "east", "half": "bottom", @@ -210925,7 +227428,7 @@ } }, { - "id": 19509, + "id": 21293, "properties": { "facing": "east", "half": "bottom", @@ -210939,7 +227442,7 @@ "states": [ { "default": true, - "id": 19265 + "id": 21049 } ] }, @@ -210947,7 +227450,7 @@ "states": [ { "default": true, - "id": 19266 + "id": 21050 } ] }, @@ -210965,21 +227468,21 @@ }, "states": [ { - "id": 19590, + "id": 21374, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 19591, + "id": 21375, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 19592, + "id": 21376, "properties": { "type": "bottom", "waterlogged": "true" @@ -210987,21 +227490,21 @@ }, { "default": true, - "id": 19593, + "id": 21377, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 19594, + "id": 21378, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 19595, + "id": 21379, "properties": { "type": "double", "waterlogged": "false" @@ -211035,7 +227538,7 @@ }, "states": [ { - "id": 19270, + "id": 21054, "properties": { "facing": "north", "half": "top", @@ -211044,7 +227547,7 @@ } }, { - "id": 19271, + "id": 21055, "properties": { "facing": "north", "half": "top", @@ -211053,7 +227556,7 @@ } }, { - "id": 19272, + "id": 21056, "properties": { "facing": "north", "half": "top", @@ -211062,7 +227565,7 @@ } }, { - "id": 19273, + "id": 21057, "properties": { "facing": "north", "half": "top", @@ -211071,7 +227574,7 @@ } }, { - "id": 19274, + "id": 21058, "properties": { "facing": "north", "half": "top", @@ -211080,7 +227583,7 @@ } }, { - "id": 19275, + "id": 21059, "properties": { "facing": "north", "half": "top", @@ -211089,7 +227592,7 @@ } }, { - "id": 19276, + "id": 21060, "properties": { "facing": "north", "half": "top", @@ -211098,7 +227601,7 @@ } }, { - "id": 19277, + "id": 21061, "properties": { "facing": "north", "half": "top", @@ -211107,7 +227610,7 @@ } }, { - "id": 19278, + "id": 21062, "properties": { "facing": "north", "half": "top", @@ -211116,7 +227619,7 @@ } }, { - "id": 19279, + "id": 21063, "properties": { "facing": "north", "half": "top", @@ -211125,7 +227628,7 @@ } }, { - "id": 19280, + "id": 21064, "properties": { "facing": "north", "half": "bottom", @@ -211135,7 +227638,7 @@ }, { "default": true, - "id": 19281, + "id": 21065, "properties": { "facing": "north", "half": "bottom", @@ -211144,7 +227647,7 @@ } }, { - "id": 19282, + "id": 21066, "properties": { "facing": "north", "half": "bottom", @@ -211153,7 +227656,7 @@ } }, { - "id": 19283, + "id": 21067, "properties": { "facing": "north", "half": "bottom", @@ -211162,7 +227665,7 @@ } }, { - "id": 19284, + "id": 21068, "properties": { "facing": "north", "half": "bottom", @@ -211171,7 +227674,7 @@ } }, { - "id": 19285, + "id": 21069, "properties": { "facing": "north", "half": "bottom", @@ -211180,7 +227683,7 @@ } }, { - "id": 19286, + "id": 21070, "properties": { "facing": "north", "half": "bottom", @@ -211189,7 +227692,7 @@ } }, { - "id": 19287, + "id": 21071, "properties": { "facing": "north", "half": "bottom", @@ -211198,7 +227701,7 @@ } }, { - "id": 19288, + "id": 21072, "properties": { "facing": "north", "half": "bottom", @@ -211207,7 +227710,7 @@ } }, { - "id": 19289, + "id": 21073, "properties": { "facing": "north", "half": "bottom", @@ -211216,7 +227719,7 @@ } }, { - "id": 19290, + "id": 21074, "properties": { "facing": "south", "half": "top", @@ -211225,7 +227728,7 @@ } }, { - "id": 19291, + "id": 21075, "properties": { "facing": "south", "half": "top", @@ -211234,7 +227737,7 @@ } }, { - "id": 19292, + "id": 21076, "properties": { "facing": "south", "half": "top", @@ -211243,7 +227746,7 @@ } }, { - "id": 19293, + "id": 21077, "properties": { "facing": "south", "half": "top", @@ -211252,7 +227755,7 @@ } }, { - "id": 19294, + "id": 21078, "properties": { "facing": "south", "half": "top", @@ -211261,7 +227764,7 @@ } }, { - "id": 19295, + "id": 21079, "properties": { "facing": "south", "half": "top", @@ -211270,7 +227773,7 @@ } }, { - "id": 19296, + "id": 21080, "properties": { "facing": "south", "half": "top", @@ -211279,7 +227782,7 @@ } }, { - "id": 19297, + "id": 21081, "properties": { "facing": "south", "half": "top", @@ -211288,7 +227791,7 @@ } }, { - "id": 19298, + "id": 21082, "properties": { "facing": "south", "half": "top", @@ -211297,7 +227800,7 @@ } }, { - "id": 19299, + "id": 21083, "properties": { "facing": "south", "half": "top", @@ -211306,7 +227809,7 @@ } }, { - "id": 19300, + "id": 21084, "properties": { "facing": "south", "half": "bottom", @@ -211315,7 +227818,7 @@ } }, { - "id": 19301, + "id": 21085, "properties": { "facing": "south", "half": "bottom", @@ -211324,7 +227827,7 @@ } }, { - "id": 19302, + "id": 21086, "properties": { "facing": "south", "half": "bottom", @@ -211333,7 +227836,7 @@ } }, { - "id": 19303, + "id": 21087, "properties": { "facing": "south", "half": "bottom", @@ -211342,7 +227845,7 @@ } }, { - "id": 19304, + "id": 21088, "properties": { "facing": "south", "half": "bottom", @@ -211351,7 +227854,7 @@ } }, { - "id": 19305, + "id": 21089, "properties": { "facing": "south", "half": "bottom", @@ -211360,7 +227863,7 @@ } }, { - "id": 19306, + "id": 21090, "properties": { "facing": "south", "half": "bottom", @@ -211369,7 +227872,7 @@ } }, { - "id": 19307, + "id": 21091, "properties": { "facing": "south", "half": "bottom", @@ -211378,7 +227881,7 @@ } }, { - "id": 19308, + "id": 21092, "properties": { "facing": "south", "half": "bottom", @@ -211387,7 +227890,7 @@ } }, { - "id": 19309, + "id": 21093, "properties": { "facing": "south", "half": "bottom", @@ -211396,7 +227899,7 @@ } }, { - "id": 19310, + "id": 21094, "properties": { "facing": "west", "half": "top", @@ -211405,7 +227908,7 @@ } }, { - "id": 19311, + "id": 21095, "properties": { "facing": "west", "half": "top", @@ -211414,7 +227917,7 @@ } }, { - "id": 19312, + "id": 21096, "properties": { "facing": "west", "half": "top", @@ -211423,7 +227926,7 @@ } }, { - "id": 19313, + "id": 21097, "properties": { "facing": "west", "half": "top", @@ -211432,7 +227935,7 @@ } }, { - "id": 19314, + "id": 21098, "properties": { "facing": "west", "half": "top", @@ -211441,7 +227944,7 @@ } }, { - "id": 19315, + "id": 21099, "properties": { "facing": "west", "half": "top", @@ -211450,7 +227953,7 @@ } }, { - "id": 19316, + "id": 21100, "properties": { "facing": "west", "half": "top", @@ -211459,7 +227962,7 @@ } }, { - "id": 19317, + "id": 21101, "properties": { "facing": "west", "half": "top", @@ -211468,7 +227971,7 @@ } }, { - "id": 19318, + "id": 21102, "properties": { "facing": "west", "half": "top", @@ -211477,7 +227980,7 @@ } }, { - "id": 19319, + "id": 21103, "properties": { "facing": "west", "half": "top", @@ -211486,7 +227989,7 @@ } }, { - "id": 19320, + "id": 21104, "properties": { "facing": "west", "half": "bottom", @@ -211495,7 +227998,7 @@ } }, { - "id": 19321, + "id": 21105, "properties": { "facing": "west", "half": "bottom", @@ -211504,7 +228007,7 @@ } }, { - "id": 19322, + "id": 21106, "properties": { "facing": "west", "half": "bottom", @@ -211513,7 +228016,7 @@ } }, { - "id": 19323, + "id": 21107, "properties": { "facing": "west", "half": "bottom", @@ -211522,7 +228025,7 @@ } }, { - "id": 19324, + "id": 21108, "properties": { "facing": "west", "half": "bottom", @@ -211531,7 +228034,7 @@ } }, { - "id": 19325, + "id": 21109, "properties": { "facing": "west", "half": "bottom", @@ -211540,7 +228043,7 @@ } }, { - "id": 19326, + "id": 21110, "properties": { "facing": "west", "half": "bottom", @@ -211549,7 +228052,7 @@ } }, { - "id": 19327, + "id": 21111, "properties": { "facing": "west", "half": "bottom", @@ -211558,7 +228061,7 @@ } }, { - "id": 19328, + "id": 21112, "properties": { "facing": "west", "half": "bottom", @@ -211567,7 +228070,7 @@ } }, { - "id": 19329, + "id": 21113, "properties": { "facing": "west", "half": "bottom", @@ -211576,7 +228079,7 @@ } }, { - "id": 19330, + "id": 21114, "properties": { "facing": "east", "half": "top", @@ -211585,7 +228088,7 @@ } }, { - "id": 19331, + "id": 21115, "properties": { "facing": "east", "half": "top", @@ -211594,7 +228097,7 @@ } }, { - "id": 19332, + "id": 21116, "properties": { "facing": "east", "half": "top", @@ -211603,7 +228106,7 @@ } }, { - "id": 19333, + "id": 21117, "properties": { "facing": "east", "half": "top", @@ -211612,7 +228115,7 @@ } }, { - "id": 19334, + "id": 21118, "properties": { "facing": "east", "half": "top", @@ -211621,7 +228124,7 @@ } }, { - "id": 19335, + "id": 21119, "properties": { "facing": "east", "half": "top", @@ -211630,7 +228133,7 @@ } }, { - "id": 19336, + "id": 21120, "properties": { "facing": "east", "half": "top", @@ -211639,7 +228142,7 @@ } }, { - "id": 19337, + "id": 21121, "properties": { "facing": "east", "half": "top", @@ -211648,7 +228151,7 @@ } }, { - "id": 19338, + "id": 21122, "properties": { "facing": "east", "half": "top", @@ -211657,7 +228160,7 @@ } }, { - "id": 19339, + "id": 21123, "properties": { "facing": "east", "half": "top", @@ -211666,7 +228169,7 @@ } }, { - "id": 19340, + "id": 21124, "properties": { "facing": "east", "half": "bottom", @@ -211675,7 +228178,7 @@ } }, { - "id": 19341, + "id": 21125, "properties": { "facing": "east", "half": "bottom", @@ -211684,7 +228187,7 @@ } }, { - "id": 19342, + "id": 21126, "properties": { "facing": "east", "half": "bottom", @@ -211693,7 +228196,7 @@ } }, { - "id": 19343, + "id": 21127, "properties": { "facing": "east", "half": "bottom", @@ -211702,7 +228205,7 @@ } }, { - "id": 19344, + "id": 21128, "properties": { "facing": "east", "half": "bottom", @@ -211711,7 +228214,7 @@ } }, { - "id": 19345, + "id": 21129, "properties": { "facing": "east", "half": "bottom", @@ -211720,7 +228223,7 @@ } }, { - "id": 19346, + "id": 21130, "properties": { "facing": "east", "half": "bottom", @@ -211729,7 +228232,7 @@ } }, { - "id": 19347, + "id": 21131, "properties": { "facing": "east", "half": "bottom", @@ -211738,7 +228241,7 @@ } }, { - "id": 19348, + "id": 21132, "properties": { "facing": "east", "half": "bottom", @@ -211747,7 +228250,7 @@ } }, { - "id": 19349, + "id": 21133, "properties": { "facing": "east", "half": "bottom", @@ -211761,7 +228264,7 @@ "states": [ { "default": true, - "id": 19263 + "id": 21047 } ] }, @@ -211769,7 +228272,7 @@ "states": [ { "default": true, - "id": 19267 + "id": 21051 } ] }, @@ -211787,21 +228290,21 @@ }, "states": [ { - "id": 19596, + "id": 21380, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 19597, + "id": 21381, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 19598, + "id": 21382, "properties": { "type": "bottom", "waterlogged": "true" @@ -211809,21 +228312,21 @@ }, { "default": true, - "id": 19599, + "id": 21383, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 19600, + "id": 21384, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 19601, + "id": 21385, "properties": { "type": "double", "waterlogged": "false" @@ -211857,7 +228360,7 @@ }, "states": [ { - "id": 19350, + "id": 21134, "properties": { "facing": "north", "half": "top", @@ -211866,7 +228369,7 @@ } }, { - "id": 19351, + "id": 21135, "properties": { "facing": "north", "half": "top", @@ -211875,7 +228378,7 @@ } }, { - "id": 19352, + "id": 21136, "properties": { "facing": "north", "half": "top", @@ -211884,7 +228387,7 @@ } }, { - "id": 19353, + "id": 21137, "properties": { "facing": "north", "half": "top", @@ -211893,7 +228396,7 @@ } }, { - "id": 19354, + "id": 21138, "properties": { "facing": "north", "half": "top", @@ -211902,7 +228405,7 @@ } }, { - "id": 19355, + "id": 21139, "properties": { "facing": "north", "half": "top", @@ -211911,7 +228414,7 @@ } }, { - "id": 19356, + "id": 21140, "properties": { "facing": "north", "half": "top", @@ -211920,7 +228423,7 @@ } }, { - "id": 19357, + "id": 21141, "properties": { "facing": "north", "half": "top", @@ -211929,7 +228432,7 @@ } }, { - "id": 19358, + "id": 21142, "properties": { "facing": "north", "half": "top", @@ -211938,7 +228441,7 @@ } }, { - "id": 19359, + "id": 21143, "properties": { "facing": "north", "half": "top", @@ -211947,7 +228450,7 @@ } }, { - "id": 19360, + "id": 21144, "properties": { "facing": "north", "half": "bottom", @@ -211957,7 +228460,7 @@ }, { "default": true, - "id": 19361, + "id": 21145, "properties": { "facing": "north", "half": "bottom", @@ -211966,7 +228469,7 @@ } }, { - "id": 19362, + "id": 21146, "properties": { "facing": "north", "half": "bottom", @@ -211975,7 +228478,7 @@ } }, { - "id": 19363, + "id": 21147, "properties": { "facing": "north", "half": "bottom", @@ -211984,7 +228487,7 @@ } }, { - "id": 19364, + "id": 21148, "properties": { "facing": "north", "half": "bottom", @@ -211993,7 +228496,7 @@ } }, { - "id": 19365, + "id": 21149, "properties": { "facing": "north", "half": "bottom", @@ -212002,7 +228505,7 @@ } }, { - "id": 19366, + "id": 21150, "properties": { "facing": "north", "half": "bottom", @@ -212011,7 +228514,7 @@ } }, { - "id": 19367, + "id": 21151, "properties": { "facing": "north", "half": "bottom", @@ -212020,7 +228523,7 @@ } }, { - "id": 19368, + "id": 21152, "properties": { "facing": "north", "half": "bottom", @@ -212029,7 +228532,7 @@ } }, { - "id": 19369, + "id": 21153, "properties": { "facing": "north", "half": "bottom", @@ -212038,7 +228541,7 @@ } }, { - "id": 19370, + "id": 21154, "properties": { "facing": "south", "half": "top", @@ -212047,7 +228550,7 @@ } }, { - "id": 19371, + "id": 21155, "properties": { "facing": "south", "half": "top", @@ -212056,7 +228559,7 @@ } }, { - "id": 19372, + "id": 21156, "properties": { "facing": "south", "half": "top", @@ -212065,7 +228568,7 @@ } }, { - "id": 19373, + "id": 21157, "properties": { "facing": "south", "half": "top", @@ -212074,7 +228577,7 @@ } }, { - "id": 19374, + "id": 21158, "properties": { "facing": "south", "half": "top", @@ -212083,7 +228586,7 @@ } }, { - "id": 19375, + "id": 21159, "properties": { "facing": "south", "half": "top", @@ -212092,7 +228595,7 @@ } }, { - "id": 19376, + "id": 21160, "properties": { "facing": "south", "half": "top", @@ -212101,7 +228604,7 @@ } }, { - "id": 19377, + "id": 21161, "properties": { "facing": "south", "half": "top", @@ -212110,7 +228613,7 @@ } }, { - "id": 19378, + "id": 21162, "properties": { "facing": "south", "half": "top", @@ -212119,7 +228622,7 @@ } }, { - "id": 19379, + "id": 21163, "properties": { "facing": "south", "half": "top", @@ -212128,7 +228631,7 @@ } }, { - "id": 19380, + "id": 21164, "properties": { "facing": "south", "half": "bottom", @@ -212137,7 +228640,7 @@ } }, { - "id": 19381, + "id": 21165, "properties": { "facing": "south", "half": "bottom", @@ -212146,7 +228649,7 @@ } }, { - "id": 19382, + "id": 21166, "properties": { "facing": "south", "half": "bottom", @@ -212155,7 +228658,7 @@ } }, { - "id": 19383, + "id": 21167, "properties": { "facing": "south", "half": "bottom", @@ -212164,7 +228667,7 @@ } }, { - "id": 19384, + "id": 21168, "properties": { "facing": "south", "half": "bottom", @@ -212173,7 +228676,7 @@ } }, { - "id": 19385, + "id": 21169, "properties": { "facing": "south", "half": "bottom", @@ -212182,7 +228685,7 @@ } }, { - "id": 19386, + "id": 21170, "properties": { "facing": "south", "half": "bottom", @@ -212191,7 +228694,7 @@ } }, { - "id": 19387, + "id": 21171, "properties": { "facing": "south", "half": "bottom", @@ -212200,7 +228703,7 @@ } }, { - "id": 19388, + "id": 21172, "properties": { "facing": "south", "half": "bottom", @@ -212209,7 +228712,7 @@ } }, { - "id": 19389, + "id": 21173, "properties": { "facing": "south", "half": "bottom", @@ -212218,7 +228721,7 @@ } }, { - "id": 19390, + "id": 21174, "properties": { "facing": "west", "half": "top", @@ -212227,7 +228730,7 @@ } }, { - "id": 19391, + "id": 21175, "properties": { "facing": "west", "half": "top", @@ -212236,7 +228739,7 @@ } }, { - "id": 19392, + "id": 21176, "properties": { "facing": "west", "half": "top", @@ -212245,7 +228748,7 @@ } }, { - "id": 19393, + "id": 21177, "properties": { "facing": "west", "half": "top", @@ -212254,7 +228757,7 @@ } }, { - "id": 19394, + "id": 21178, "properties": { "facing": "west", "half": "top", @@ -212263,7 +228766,7 @@ } }, { - "id": 19395, + "id": 21179, "properties": { "facing": "west", "half": "top", @@ -212272,7 +228775,7 @@ } }, { - "id": 19396, + "id": 21180, "properties": { "facing": "west", "half": "top", @@ -212281,7 +228784,7 @@ } }, { - "id": 19397, + "id": 21181, "properties": { "facing": "west", "half": "top", @@ -212290,7 +228793,7 @@ } }, { - "id": 19398, + "id": 21182, "properties": { "facing": "west", "half": "top", @@ -212299,7 +228802,7 @@ } }, { - "id": 19399, + "id": 21183, "properties": { "facing": "west", "half": "top", @@ -212308,7 +228811,7 @@ } }, { - "id": 19400, + "id": 21184, "properties": { "facing": "west", "half": "bottom", @@ -212317,7 +228820,7 @@ } }, { - "id": 19401, + "id": 21185, "properties": { "facing": "west", "half": "bottom", @@ -212326,7 +228829,7 @@ } }, { - "id": 19402, + "id": 21186, "properties": { "facing": "west", "half": "bottom", @@ -212335,7 +228838,7 @@ } }, { - "id": 19403, + "id": 21187, "properties": { "facing": "west", "half": "bottom", @@ -212344,7 +228847,7 @@ } }, { - "id": 19404, + "id": 21188, "properties": { "facing": "west", "half": "bottom", @@ -212353,7 +228856,7 @@ } }, { - "id": 19405, + "id": 21189, "properties": { "facing": "west", "half": "bottom", @@ -212362,7 +228865,7 @@ } }, { - "id": 19406, + "id": 21190, "properties": { "facing": "west", "half": "bottom", @@ -212371,7 +228874,7 @@ } }, { - "id": 19407, + "id": 21191, "properties": { "facing": "west", "half": "bottom", @@ -212380,7 +228883,7 @@ } }, { - "id": 19408, + "id": 21192, "properties": { "facing": "west", "half": "bottom", @@ -212389,7 +228892,7 @@ } }, { - "id": 19409, + "id": 21193, "properties": { "facing": "west", "half": "bottom", @@ -212398,7 +228901,7 @@ } }, { - "id": 19410, + "id": 21194, "properties": { "facing": "east", "half": "top", @@ -212407,7 +228910,7 @@ } }, { - "id": 19411, + "id": 21195, "properties": { "facing": "east", "half": "top", @@ -212416,7 +228919,7 @@ } }, { - "id": 19412, + "id": 21196, "properties": { "facing": "east", "half": "top", @@ -212425,7 +228928,7 @@ } }, { - "id": 19413, + "id": 21197, "properties": { "facing": "east", "half": "top", @@ -212434,7 +228937,7 @@ } }, { - "id": 19414, + "id": 21198, "properties": { "facing": "east", "half": "top", @@ -212443,7 +228946,7 @@ } }, { - "id": 19415, + "id": 21199, "properties": { "facing": "east", "half": "top", @@ -212452,7 +228955,7 @@ } }, { - "id": 19416, + "id": 21200, "properties": { "facing": "east", "half": "top", @@ -212461,7 +228964,7 @@ } }, { - "id": 19417, + "id": 21201, "properties": { "facing": "east", "half": "top", @@ -212470,7 +228973,7 @@ } }, { - "id": 19418, + "id": 21202, "properties": { "facing": "east", "half": "top", @@ -212479,7 +228982,7 @@ } }, { - "id": 19419, + "id": 21203, "properties": { "facing": "east", "half": "top", @@ -212488,7 +228991,7 @@ } }, { - "id": 19420, + "id": 21204, "properties": { "facing": "east", "half": "bottom", @@ -212497,7 +229000,7 @@ } }, { - "id": 19421, + "id": 21205, "properties": { "facing": "east", "half": "bottom", @@ -212506,7 +229009,7 @@ } }, { - "id": 19422, + "id": 21206, "properties": { "facing": "east", "half": "bottom", @@ -212515,7 +229018,7 @@ } }, { - "id": 19423, + "id": 21207, "properties": { "facing": "east", "half": "bottom", @@ -212524,7 +229027,7 @@ } }, { - "id": 19424, + "id": 21208, "properties": { "facing": "east", "half": "bottom", @@ -212533,7 +229036,7 @@ } }, { - "id": 19425, + "id": 21209, "properties": { "facing": "east", "half": "bottom", @@ -212542,7 +229045,7 @@ } }, { - "id": 19426, + "id": 21210, "properties": { "facing": "east", "half": "bottom", @@ -212551,7 +229054,7 @@ } }, { - "id": 19427, + "id": 21211, "properties": { "facing": "east", "half": "bottom", @@ -212560,7 +229063,7 @@ } }, { - "id": 19428, + "id": 21212, "properties": { "facing": "east", "half": "bottom", @@ -212569,7 +229072,7 @@ } }, { - "id": 19429, + "id": 21213, "properties": { "facing": "east", "half": "bottom", @@ -212583,7 +229086,7 @@ "states": [ { "default": true, - "id": 18909 + "id": 20693 } ] }, @@ -212591,7 +229094,7 @@ "states": [ { "default": true, - "id": 18915 + "id": 20699 } ] }, @@ -212609,21 +229112,21 @@ }, "states": [ { - "id": 19244, + "id": 21028, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 19245, + "id": 21029, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 19246, + "id": 21030, "properties": { "type": "bottom", "waterlogged": "true" @@ -212631,21 +229134,21 @@ }, { "default": true, - "id": 19247, + "id": 21031, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 19248, + "id": 21032, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 19249, + "id": 21033, "properties": { "type": "double", "waterlogged": "false" @@ -212679,7 +229182,7 @@ }, "states": [ { - "id": 18998, + "id": 20782, "properties": { "facing": "north", "half": "top", @@ -212688,7 +229191,7 @@ } }, { - "id": 18999, + "id": 20783, "properties": { "facing": "north", "half": "top", @@ -212697,7 +229200,7 @@ } }, { - "id": 19000, + "id": 20784, "properties": { "facing": "north", "half": "top", @@ -212706,7 +229209,7 @@ } }, { - "id": 19001, + "id": 20785, "properties": { "facing": "north", "half": "top", @@ -212715,7 +229218,7 @@ } }, { - "id": 19002, + "id": 20786, "properties": { "facing": "north", "half": "top", @@ -212724,7 +229227,7 @@ } }, { - "id": 19003, + "id": 20787, "properties": { "facing": "north", "half": "top", @@ -212733,7 +229236,7 @@ } }, { - "id": 19004, + "id": 20788, "properties": { "facing": "north", "half": "top", @@ -212742,7 +229245,7 @@ } }, { - "id": 19005, + "id": 20789, "properties": { "facing": "north", "half": "top", @@ -212751,7 +229254,7 @@ } }, { - "id": 19006, + "id": 20790, "properties": { "facing": "north", "half": "top", @@ -212760,7 +229263,7 @@ } }, { - "id": 19007, + "id": 20791, "properties": { "facing": "north", "half": "top", @@ -212769,7 +229272,7 @@ } }, { - "id": 19008, + "id": 20792, "properties": { "facing": "north", "half": "bottom", @@ -212779,7 +229282,7 @@ }, { "default": true, - "id": 19009, + "id": 20793, "properties": { "facing": "north", "half": "bottom", @@ -212788,7 +229291,7 @@ } }, { - "id": 19010, + "id": 20794, "properties": { "facing": "north", "half": "bottom", @@ -212797,7 +229300,7 @@ } }, { - "id": 19011, + "id": 20795, "properties": { "facing": "north", "half": "bottom", @@ -212806,7 +229309,7 @@ } }, { - "id": 19012, + "id": 20796, "properties": { "facing": "north", "half": "bottom", @@ -212815,7 +229318,7 @@ } }, { - "id": 19013, + "id": 20797, "properties": { "facing": "north", "half": "bottom", @@ -212824,7 +229327,7 @@ } }, { - "id": 19014, + "id": 20798, "properties": { "facing": "north", "half": "bottom", @@ -212833,7 +229336,7 @@ } }, { - "id": 19015, + "id": 20799, "properties": { "facing": "north", "half": "bottom", @@ -212842,7 +229345,7 @@ } }, { - "id": 19016, + "id": 20800, "properties": { "facing": "north", "half": "bottom", @@ -212851,7 +229354,7 @@ } }, { - "id": 19017, + "id": 20801, "properties": { "facing": "north", "half": "bottom", @@ -212860,7 +229363,7 @@ } }, { - "id": 19018, + "id": 20802, "properties": { "facing": "south", "half": "top", @@ -212869,7 +229372,7 @@ } }, { - "id": 19019, + "id": 20803, "properties": { "facing": "south", "half": "top", @@ -212878,7 +229381,7 @@ } }, { - "id": 19020, + "id": 20804, "properties": { "facing": "south", "half": "top", @@ -212887,7 +229390,7 @@ } }, { - "id": 19021, + "id": 20805, "properties": { "facing": "south", "half": "top", @@ -212896,7 +229399,7 @@ } }, { - "id": 19022, + "id": 20806, "properties": { "facing": "south", "half": "top", @@ -212905,7 +229408,7 @@ } }, { - "id": 19023, + "id": 20807, "properties": { "facing": "south", "half": "top", @@ -212914,7 +229417,7 @@ } }, { - "id": 19024, + "id": 20808, "properties": { "facing": "south", "half": "top", @@ -212923,7 +229426,7 @@ } }, { - "id": 19025, + "id": 20809, "properties": { "facing": "south", "half": "top", @@ -212932,7 +229435,7 @@ } }, { - "id": 19026, + "id": 20810, "properties": { "facing": "south", "half": "top", @@ -212941,7 +229444,7 @@ } }, { - "id": 19027, + "id": 20811, "properties": { "facing": "south", "half": "top", @@ -212950,7 +229453,7 @@ } }, { - "id": 19028, + "id": 20812, "properties": { "facing": "south", "half": "bottom", @@ -212959,7 +229462,7 @@ } }, { - "id": 19029, + "id": 20813, "properties": { "facing": "south", "half": "bottom", @@ -212968,7 +229471,7 @@ } }, { - "id": 19030, + "id": 20814, "properties": { "facing": "south", "half": "bottom", @@ -212977,7 +229480,7 @@ } }, { - "id": 19031, + "id": 20815, "properties": { "facing": "south", "half": "bottom", @@ -212986,7 +229489,7 @@ } }, { - "id": 19032, + "id": 20816, "properties": { "facing": "south", "half": "bottom", @@ -212995,7 +229498,7 @@ } }, { - "id": 19033, + "id": 20817, "properties": { "facing": "south", "half": "bottom", @@ -213004,7 +229507,7 @@ } }, { - "id": 19034, + "id": 20818, "properties": { "facing": "south", "half": "bottom", @@ -213013,7 +229516,7 @@ } }, { - "id": 19035, + "id": 20819, "properties": { "facing": "south", "half": "bottom", @@ -213022,7 +229525,7 @@ } }, { - "id": 19036, + "id": 20820, "properties": { "facing": "south", "half": "bottom", @@ -213031,7 +229534,7 @@ } }, { - "id": 19037, + "id": 20821, "properties": { "facing": "south", "half": "bottom", @@ -213040,7 +229543,7 @@ } }, { - "id": 19038, + "id": 20822, "properties": { "facing": "west", "half": "top", @@ -213049,7 +229552,7 @@ } }, { - "id": 19039, + "id": 20823, "properties": { "facing": "west", "half": "top", @@ -213058,7 +229561,7 @@ } }, { - "id": 19040, + "id": 20824, "properties": { "facing": "west", "half": "top", @@ -213067,7 +229570,7 @@ } }, { - "id": 19041, + "id": 20825, "properties": { "facing": "west", "half": "top", @@ -213076,7 +229579,7 @@ } }, { - "id": 19042, + "id": 20826, "properties": { "facing": "west", "half": "top", @@ -213085,7 +229588,7 @@ } }, { - "id": 19043, + "id": 20827, "properties": { "facing": "west", "half": "top", @@ -213094,7 +229597,7 @@ } }, { - "id": 19044, + "id": 20828, "properties": { "facing": "west", "half": "top", @@ -213103,7 +229606,7 @@ } }, { - "id": 19045, + "id": 20829, "properties": { "facing": "west", "half": "top", @@ -213112,7 +229615,7 @@ } }, { - "id": 19046, + "id": 20830, "properties": { "facing": "west", "half": "top", @@ -213121,7 +229624,7 @@ } }, { - "id": 19047, + "id": 20831, "properties": { "facing": "west", "half": "top", @@ -213130,7 +229633,7 @@ } }, { - "id": 19048, + "id": 20832, "properties": { "facing": "west", "half": "bottom", @@ -213139,7 +229642,7 @@ } }, { - "id": 19049, + "id": 20833, "properties": { "facing": "west", "half": "bottom", @@ -213148,7 +229651,7 @@ } }, { - "id": 19050, + "id": 20834, "properties": { "facing": "west", "half": "bottom", @@ -213157,7 +229660,7 @@ } }, { - "id": 19051, + "id": 20835, "properties": { "facing": "west", "half": "bottom", @@ -213166,7 +229669,7 @@ } }, { - "id": 19052, + "id": 20836, "properties": { "facing": "west", "half": "bottom", @@ -213175,7 +229678,7 @@ } }, { - "id": 19053, + "id": 20837, "properties": { "facing": "west", "half": "bottom", @@ -213184,7 +229687,7 @@ } }, { - "id": 19054, + "id": 20838, "properties": { "facing": "west", "half": "bottom", @@ -213193,7 +229696,7 @@ } }, { - "id": 19055, + "id": 20839, "properties": { "facing": "west", "half": "bottom", @@ -213202,7 +229705,7 @@ } }, { - "id": 19056, + "id": 20840, "properties": { "facing": "west", "half": "bottom", @@ -213211,7 +229714,7 @@ } }, { - "id": 19057, + "id": 20841, "properties": { "facing": "west", "half": "bottom", @@ -213220,7 +229723,7 @@ } }, { - "id": 19058, + "id": 20842, "properties": { "facing": "east", "half": "top", @@ -213229,7 +229732,7 @@ } }, { - "id": 19059, + "id": 20843, "properties": { "facing": "east", "half": "top", @@ -213238,7 +229741,7 @@ } }, { - "id": 19060, + "id": 20844, "properties": { "facing": "east", "half": "top", @@ -213247,7 +229750,7 @@ } }, { - "id": 19061, + "id": 20845, "properties": { "facing": "east", "half": "top", @@ -213256,7 +229759,7 @@ } }, { - "id": 19062, + "id": 20846, "properties": { "facing": "east", "half": "top", @@ -213265,7 +229768,7 @@ } }, { - "id": 19063, + "id": 20847, "properties": { "facing": "east", "half": "top", @@ -213274,7 +229777,7 @@ } }, { - "id": 19064, + "id": 20848, "properties": { "facing": "east", "half": "top", @@ -213283,7 +229786,7 @@ } }, { - "id": 19065, + "id": 20849, "properties": { "facing": "east", "half": "top", @@ -213292,7 +229795,7 @@ } }, { - "id": 19066, + "id": 20850, "properties": { "facing": "east", "half": "top", @@ -213301,7 +229804,7 @@ } }, { - "id": 19067, + "id": 20851, "properties": { "facing": "east", "half": "top", @@ -213310,7 +229813,7 @@ } }, { - "id": 19068, + "id": 20852, "properties": { "facing": "east", "half": "bottom", @@ -213319,7 +229822,7 @@ } }, { - "id": 19069, + "id": 20853, "properties": { "facing": "east", "half": "bottom", @@ -213328,7 +229831,7 @@ } }, { - "id": 19070, + "id": 20854, "properties": { "facing": "east", "half": "bottom", @@ -213337,7 +229840,7 @@ } }, { - "id": 19071, + "id": 20855, "properties": { "facing": "east", "half": "bottom", @@ -213346,7 +229849,7 @@ } }, { - "id": 19072, + "id": 20856, "properties": { "facing": "east", "half": "bottom", @@ -213355,7 +229858,7 @@ } }, { - "id": 19073, + "id": 20857, "properties": { "facing": "east", "half": "bottom", @@ -213364,7 +229867,7 @@ } }, { - "id": 19074, + "id": 20858, "properties": { "facing": "east", "half": "bottom", @@ -213373,7 +229876,7 @@ } }, { - "id": 19075, + "id": 20859, "properties": { "facing": "east", "half": "bottom", @@ -213382,7 +229885,7 @@ } }, { - "id": 19076, + "id": 20860, "properties": { "facing": "east", "half": "bottom", @@ -213391,7 +229894,7 @@ } }, { - "id": 19077, + "id": 20861, "properties": { "facing": "east", "half": "bottom", @@ -213435,157 +229938,157 @@ "states": [ { "default": true, - "id": 16199, + "id": 17983, "properties": { "age": "0" } }, { - "id": 16200, + "id": 17984, "properties": { "age": "1" } }, { - "id": 16201, + "id": 17985, "properties": { "age": "2" } }, { - "id": 16202, + "id": 17986, "properties": { "age": "3" } }, { - "id": 16203, + "id": 17987, "properties": { "age": "4" } }, { - "id": 16204, + "id": 17988, "properties": { "age": "5" } }, { - "id": 16205, + "id": 17989, "properties": { "age": "6" } }, { - "id": 16206, + "id": 17990, "properties": { "age": "7" } }, { - "id": 16207, + "id": 17991, "properties": { "age": "8" } }, { - "id": 16208, + "id": 17992, "properties": { "age": "9" } }, { - "id": 16209, + "id": 17993, "properties": { "age": "10" } }, { - "id": 16210, + "id": 17994, "properties": { "age": "11" } }, { - "id": 16211, + "id": 17995, "properties": { "age": "12" } }, { - "id": 16212, + "id": 17996, "properties": { "age": "13" } }, { - "id": 16213, + "id": 17997, "properties": { "age": "14" } }, { - "id": 16214, + "id": 17998, "properties": { "age": "15" } }, { - "id": 16215, + "id": 17999, "properties": { "age": "16" } }, { - "id": 16216, + "id": 18000, "properties": { "age": "17" } }, { - "id": 16217, + "id": 18001, "properties": { "age": "18" } }, { - "id": 16218, + "id": 18002, "properties": { "age": "19" } }, { - "id": 16219, + "id": 18003, "properties": { "age": "20" } }, { - "id": 16220, + "id": 18004, "properties": { "age": "21" } }, { - "id": 16221, + "id": 18005, "properties": { "age": "22" } }, { - "id": 16222, + "id": 18006, "properties": { "age": "23" } }, { - "id": 16223, + "id": 18007, "properties": { "age": "24" } }, { - "id": 16224, + "id": 18008, "properties": { "age": "25" } @@ -213596,7 +230099,7 @@ "states": [ { "default": true, - "id": 16225 + "id": 18009 } ] }, @@ -213604,7 +230107,7 @@ "states": [ { "default": true, - "id": 459 + "id": 467 } ] }, @@ -213624,49 +230127,49 @@ "states": [ { "default": true, - "id": 3612, + "id": 4226, "properties": { "age": "0" } }, { - "id": 3613, + "id": 4227, "properties": { "age": "1" } }, { - "id": 3614, + "id": 4228, "properties": { "age": "2" } }, { - "id": 3615, + "id": 4229, "properties": { "age": "3" } }, { - "id": 3616, + "id": 4230, "properties": { "age": "4" } }, { - "id": 3617, + "id": 4231, "properties": { "age": "5" } }, { - "id": 3618, + "id": 4232, "properties": { "age": "6" } }, { - "id": 3619, + "id": 4233, "properties": { "age": "7" } @@ -213697,97 +230200,97 @@ "states": [ { "default": true, - "id": 8638, + "id": 10282, "properties": { "rotation": "0" } }, { - "id": 8639, + "id": 10283, "properties": { "rotation": "1" } }, { - "id": 8640, + "id": 10284, "properties": { "rotation": "2" } }, { - "id": 8641, + "id": 10285, "properties": { "rotation": "3" } }, { - "id": 8642, + "id": 10286, "properties": { "rotation": "4" } }, { - "id": 8643, + "id": 10287, "properties": { "rotation": "5" } }, { - "id": 8644, + "id": 10288, "properties": { "rotation": "6" } }, { - "id": 8645, + "id": 10289, "properties": { "rotation": "7" } }, { - "id": 8646, + "id": 10290, "properties": { "rotation": "8" } }, { - "id": 8647, + "id": 10291, "properties": { "rotation": "9" } }, { - "id": 8648, + "id": 10292, "properties": { "rotation": "10" } }, { - "id": 8649, + "id": 10293, "properties": { "rotation": "11" } }, { - "id": 8650, + "id": 10294, "properties": { "rotation": "12" } }, { - "id": 8651, + "id": 10295, "properties": { "rotation": "13" } }, { - "id": 8652, + "id": 10296, "properties": { "rotation": "14" } }, { - "id": 8653, + "id": 10297, "properties": { "rotation": "15" } @@ -213813,7 +230316,7 @@ }, "states": [ { - "id": 1279, + "id": 1637, "properties": { "facing": "north", "occupied": "true", @@ -213821,7 +230324,7 @@ } }, { - "id": 1280, + "id": 1638, "properties": { "facing": "north", "occupied": "true", @@ -213829,7 +230332,7 @@ } }, { - "id": 1281, + "id": 1639, "properties": { "facing": "north", "occupied": "false", @@ -213838,7 +230341,7 @@ }, { "default": true, - "id": 1282, + "id": 1640, "properties": { "facing": "north", "occupied": "false", @@ -213846,7 +230349,7 @@ } }, { - "id": 1283, + "id": 1641, "properties": { "facing": "south", "occupied": "true", @@ -213854,7 +230357,7 @@ } }, { - "id": 1284, + "id": 1642, "properties": { "facing": "south", "occupied": "true", @@ -213862,7 +230365,7 @@ } }, { - "id": 1285, + "id": 1643, "properties": { "facing": "south", "occupied": "false", @@ -213870,7 +230373,7 @@ } }, { - "id": 1286, + "id": 1644, "properties": { "facing": "south", "occupied": "false", @@ -213878,7 +230381,7 @@ } }, { - "id": 1287, + "id": 1645, "properties": { "facing": "west", "occupied": "true", @@ -213886,7 +230389,7 @@ } }, { - "id": 1288, + "id": 1646, "properties": { "facing": "west", "occupied": "true", @@ -213894,7 +230397,7 @@ } }, { - "id": 1289, + "id": 1647, "properties": { "facing": "west", "occupied": "false", @@ -213902,7 +230405,7 @@ } }, { - "id": 1290, + "id": 1648, "properties": { "facing": "west", "occupied": "false", @@ -213910,7 +230413,7 @@ } }, { - "id": 1291, + "id": 1649, "properties": { "facing": "east", "occupied": "true", @@ -213918,7 +230421,7 @@ } }, { - "id": 1292, + "id": 1650, "properties": { "facing": "east", "occupied": "true", @@ -213926,7 +230429,7 @@ } }, { - "id": 1293, + "id": 1651, "properties": { "facing": "east", "occupied": "false", @@ -213934,7 +230437,7 @@ } }, { - "id": 1294, + "id": 1652, "properties": { "facing": "east", "occupied": "false", @@ -213962,7 +230465,7 @@ }, "states": [ { - "id": 18329, + "id": 20113, "properties": { "candles": "1", "lit": "true", @@ -213970,7 +230473,7 @@ } }, { - "id": 18330, + "id": 20114, "properties": { "candles": "1", "lit": "true", @@ -213978,7 +230481,7 @@ } }, { - "id": 18331, + "id": 20115, "properties": { "candles": "1", "lit": "false", @@ -213987,7 +230490,7 @@ }, { "default": true, - "id": 18332, + "id": 20116, "properties": { "candles": "1", "lit": "false", @@ -213995,7 +230498,7 @@ } }, { - "id": 18333, + "id": 20117, "properties": { "candles": "2", "lit": "true", @@ -214003,7 +230506,7 @@ } }, { - "id": 18334, + "id": 20118, "properties": { "candles": "2", "lit": "true", @@ -214011,7 +230514,7 @@ } }, { - "id": 18335, + "id": 20119, "properties": { "candles": "2", "lit": "false", @@ -214019,7 +230522,7 @@ } }, { - "id": 18336, + "id": 20120, "properties": { "candles": "2", "lit": "false", @@ -214027,7 +230530,7 @@ } }, { - "id": 18337, + "id": 20121, "properties": { "candles": "3", "lit": "true", @@ -214035,7 +230538,7 @@ } }, { - "id": 18338, + "id": 20122, "properties": { "candles": "3", "lit": "true", @@ -214043,7 +230546,7 @@ } }, { - "id": 18339, + "id": 20123, "properties": { "candles": "3", "lit": "false", @@ -214051,7 +230554,7 @@ } }, { - "id": 18340, + "id": 20124, "properties": { "candles": "3", "lit": "false", @@ -214059,7 +230562,7 @@ } }, { - "id": 18341, + "id": 20125, "properties": { "candles": "4", "lit": "true", @@ -214067,7 +230570,7 @@ } }, { - "id": 18342, + "id": 20126, "properties": { "candles": "4", "lit": "true", @@ -214075,7 +230578,7 @@ } }, { - "id": 18343, + "id": 20127, "properties": { "candles": "4", "lit": "false", @@ -214083,7 +230586,7 @@ } }, { - "id": 18344, + "id": 20128, "properties": { "candles": "4", "lit": "false", @@ -214101,14 +230604,14 @@ }, "states": [ { - "id": 18587, + "id": 20371, "properties": { "lit": "true" } }, { "default": true, - "id": 18588, + "id": 20372, "properties": { "lit": "false" } @@ -214119,7 +230622,7 @@ "states": [ { "default": true, - "id": 8607 + "id": 10251 } ] }, @@ -214127,7 +230630,7 @@ "states": [ { "default": true, - "id": 10319 + "id": 12103 } ] }, @@ -214135,7 +230638,7 @@ "states": [ { "default": true, - "id": 10335 + "id": 12119 } ] }, @@ -214151,25 +230654,25 @@ "states": [ { "default": true, - "id": 10255, + "id": 12039, "properties": { "facing": "north" } }, { - "id": 10256, + "id": 12040, "properties": { "facing": "south" } }, { - "id": 10257, + "id": 12041, "properties": { "facing": "west" } }, { - "id": 10258, + "id": 12042, "properties": { "facing": "east" } @@ -214189,38 +230692,38 @@ }, "states": [ { - "id": 10159, + "id": 11943, "properties": { "facing": "north" } }, { - "id": 10160, + "id": 11944, "properties": { "facing": "east" } }, { - "id": 10161, + "id": 11945, "properties": { "facing": "south" } }, { - "id": 10162, + "id": 11946, "properties": { "facing": "west" } }, { "default": true, - "id": 10163, + "id": 11947, "properties": { "facing": "up" } }, { - "id": 10164, + "id": 11948, "properties": { "facing": "down" } @@ -214231,7 +230734,7 @@ "states": [ { "default": true, - "id": 4404 + "id": 5780 } ] }, @@ -214260,7 +230763,7 @@ }, "states": [ { - "id": 7492, + "id": 8976, "properties": { "east": "true", "north": "true", @@ -214270,7 +230773,7 @@ } }, { - "id": 7493, + "id": 8977, "properties": { "east": "true", "north": "true", @@ -214280,7 +230783,7 @@ } }, { - "id": 7494, + "id": 8978, "properties": { "east": "true", "north": "true", @@ -214290,7 +230793,7 @@ } }, { - "id": 7495, + "id": 8979, "properties": { "east": "true", "north": "true", @@ -214300,7 +230803,7 @@ } }, { - "id": 7496, + "id": 8980, "properties": { "east": "true", "north": "true", @@ -214310,7 +230813,7 @@ } }, { - "id": 7497, + "id": 8981, "properties": { "east": "true", "north": "true", @@ -214320,7 +230823,7 @@ } }, { - "id": 7498, + "id": 8982, "properties": { "east": "true", "north": "true", @@ -214330,7 +230833,7 @@ } }, { - "id": 7499, + "id": 8983, "properties": { "east": "true", "north": "true", @@ -214340,7 +230843,7 @@ } }, { - "id": 7500, + "id": 8984, "properties": { "east": "true", "north": "false", @@ -214350,7 +230853,7 @@ } }, { - "id": 7501, + "id": 8985, "properties": { "east": "true", "north": "false", @@ -214360,7 +230863,7 @@ } }, { - "id": 7502, + "id": 8986, "properties": { "east": "true", "north": "false", @@ -214370,7 +230873,7 @@ } }, { - "id": 7503, + "id": 8987, "properties": { "east": "true", "north": "false", @@ -214380,7 +230883,7 @@ } }, { - "id": 7504, + "id": 8988, "properties": { "east": "true", "north": "false", @@ -214390,7 +230893,7 @@ } }, { - "id": 7505, + "id": 8989, "properties": { "east": "true", "north": "false", @@ -214400,7 +230903,7 @@ } }, { - "id": 7506, + "id": 8990, "properties": { "east": "true", "north": "false", @@ -214410,7 +230913,7 @@ } }, { - "id": 7507, + "id": 8991, "properties": { "east": "true", "north": "false", @@ -214420,7 +230923,7 @@ } }, { - "id": 7508, + "id": 8992, "properties": { "east": "false", "north": "true", @@ -214430,7 +230933,7 @@ } }, { - "id": 7509, + "id": 8993, "properties": { "east": "false", "north": "true", @@ -214440,7 +230943,7 @@ } }, { - "id": 7510, + "id": 8994, "properties": { "east": "false", "north": "true", @@ -214450,7 +230953,7 @@ } }, { - "id": 7511, + "id": 8995, "properties": { "east": "false", "north": "true", @@ -214460,7 +230963,7 @@ } }, { - "id": 7512, + "id": 8996, "properties": { "east": "false", "north": "true", @@ -214470,7 +230973,7 @@ } }, { - "id": 7513, + "id": 8997, "properties": { "east": "false", "north": "true", @@ -214480,7 +230983,7 @@ } }, { - "id": 7514, + "id": 8998, "properties": { "east": "false", "north": "true", @@ -214490,7 +230993,7 @@ } }, { - "id": 7515, + "id": 8999, "properties": { "east": "false", "north": "true", @@ -214500,7 +231003,7 @@ } }, { - "id": 7516, + "id": 9000, "properties": { "east": "false", "north": "false", @@ -214510,7 +231013,7 @@ } }, { - "id": 7517, + "id": 9001, "properties": { "east": "false", "north": "false", @@ -214520,7 +231023,7 @@ } }, { - "id": 7518, + "id": 9002, "properties": { "east": "false", "north": "false", @@ -214530,7 +231033,7 @@ } }, { - "id": 7519, + "id": 9003, "properties": { "east": "false", "north": "false", @@ -214540,7 +231043,7 @@ } }, { - "id": 7520, + "id": 9004, "properties": { "east": "false", "north": "false", @@ -214550,7 +231053,7 @@ } }, { - "id": 7521, + "id": 9005, "properties": { "east": "false", "north": "false", @@ -214560,7 +231063,7 @@ } }, { - "id": 7522, + "id": 9006, "properties": { "east": "false", "north": "false", @@ -214571,7 +231074,7 @@ }, { "default": true, - "id": 7523, + "id": 9007, "properties": { "east": "false", "north": "false", @@ -214586,7 +231089,7 @@ "states": [ { "default": true, - "id": 7476 + "id": 8960 } ] }, @@ -214594,7 +231097,7 @@ "states": [ { "default": true, - "id": 1673 + "id": 2031 } ] }, @@ -214610,25 +231113,25 @@ "states": [ { "default": true, - "id": 8894, + "id": 10538, "properties": { "facing": "north" } }, { - "id": 8895, + "id": 10539, "properties": { "facing": "south" } }, { - "id": 8896, + "id": 10540, "properties": { "facing": "west" } }, { - "id": 8897, + "id": 10541, "properties": { "facing": "east" } @@ -214639,7 +231142,7 @@ "states": [ { "default": true, - "id": 1638 + "id": 1996 } ] }, @@ -214647,7 +231150,7 @@ "states": [ { "default": true, - "id": 1677 + "id": 2035 } ] }, @@ -214675,97 +231178,97 @@ "states": [ { "default": true, - "id": 7127, + "id": 8591, "properties": { "rotation": "0" } }, { - "id": 7128, + "id": 8592, "properties": { "rotation": "1" } }, { - "id": 7129, + "id": 8593, "properties": { "rotation": "2" } }, { - "id": 7130, + "id": 8594, "properties": { "rotation": "3" } }, { - "id": 7131, + "id": 8595, "properties": { "rotation": "4" } }, { - "id": 7132, + "id": 8596, "properties": { "rotation": "5" } }, { - "id": 7133, + "id": 8597, "properties": { "rotation": "6" } }, { - "id": 7134, + "id": 8598, "properties": { "rotation": "7" } }, { - "id": 7135, + "id": 8599, "properties": { "rotation": "8" } }, { - "id": 7136, + "id": 8600, "properties": { "rotation": "9" } }, { - "id": 7137, + "id": 8601, "properties": { "rotation": "10" } }, { - "id": 7138, + "id": 8602, "properties": { "rotation": "11" } }, { - "id": 7139, + "id": 8603, "properties": { "rotation": "12" } }, { - "id": 7140, + "id": 8604, "properties": { "rotation": "13" } }, { - "id": 7141, + "id": 8605, "properties": { "rotation": "14" } }, { - "id": 7142, + "id": 8606, "properties": { "rotation": "15" } @@ -214784,25 +231287,25 @@ "states": [ { "default": true, - "id": 7143, + "id": 8607, "properties": { "facing": "north" } }, { - "id": 7144, + "id": 8608, "properties": { "facing": "south" } }, { - "id": 7145, + "id": 8609, "properties": { "facing": "west" } }, { - "id": 7146, + "id": 8610, "properties": { "facing": "east" } @@ -214833,97 +231336,97 @@ "states": [ { "default": true, - "id": 8702, + "id": 10346, "properties": { "rotation": "0" } }, { - "id": 8703, + "id": 10347, "properties": { "rotation": "1" } }, { - "id": 8704, + "id": 10348, "properties": { "rotation": "2" } }, { - "id": 8705, + "id": 10349, "properties": { "rotation": "3" } }, { - "id": 8706, + "id": 10350, "properties": { "rotation": "4" } }, { - "id": 8707, + "id": 10351, "properties": { "rotation": "5" } }, { - "id": 8708, + "id": 10352, "properties": { "rotation": "6" } }, { - "id": 8709, + "id": 10353, "properties": { "rotation": "7" } }, { - "id": 8710, + "id": 10354, "properties": { "rotation": "8" } }, { - "id": 8711, + "id": 10355, "properties": { "rotation": "9" } }, { - "id": 8712, + "id": 10356, "properties": { "rotation": "10" } }, { - "id": 8713, + "id": 10357, "properties": { "rotation": "11" } }, { - "id": 8714, + "id": 10358, "properties": { "rotation": "12" } }, { - "id": 8715, + "id": 10359, "properties": { "rotation": "13" } }, { - "id": 8716, + "id": 10360, "properties": { "rotation": "14" } }, { - "id": 8717, + "id": 10361, "properties": { "rotation": "15" } @@ -214949,7 +231452,7 @@ }, "states": [ { - "id": 1343, + "id": 1701, "properties": { "facing": "north", "occupied": "true", @@ -214957,7 +231460,7 @@ } }, { - "id": 1344, + "id": 1702, "properties": { "facing": "north", "occupied": "true", @@ -214965,7 +231468,7 @@ } }, { - "id": 1345, + "id": 1703, "properties": { "facing": "north", "occupied": "false", @@ -214974,7 +231477,7 @@ }, { "default": true, - "id": 1346, + "id": 1704, "properties": { "facing": "north", "occupied": "false", @@ -214982,7 +231485,7 @@ } }, { - "id": 1347, + "id": 1705, "properties": { "facing": "south", "occupied": "true", @@ -214990,7 +231493,7 @@ } }, { - "id": 1348, + "id": 1706, "properties": { "facing": "south", "occupied": "true", @@ -214998,7 +231501,7 @@ } }, { - "id": 1349, + "id": 1707, "properties": { "facing": "south", "occupied": "false", @@ -215006,7 +231509,7 @@ } }, { - "id": 1350, + "id": 1708, "properties": { "facing": "south", "occupied": "false", @@ -215014,7 +231517,7 @@ } }, { - "id": 1351, + "id": 1709, "properties": { "facing": "west", "occupied": "true", @@ -215022,7 +231525,7 @@ } }, { - "id": 1352, + "id": 1710, "properties": { "facing": "west", "occupied": "true", @@ -215030,7 +231533,7 @@ } }, { - "id": 1353, + "id": 1711, "properties": { "facing": "west", "occupied": "false", @@ -215038,7 +231541,7 @@ } }, { - "id": 1354, + "id": 1712, "properties": { "facing": "west", "occupied": "false", @@ -215046,7 +231549,7 @@ } }, { - "id": 1355, + "id": 1713, "properties": { "facing": "east", "occupied": "true", @@ -215054,7 +231557,7 @@ } }, { - "id": 1356, + "id": 1714, "properties": { "facing": "east", "occupied": "true", @@ -215062,7 +231565,7 @@ } }, { - "id": 1357, + "id": 1715, "properties": { "facing": "east", "occupied": "false", @@ -215070,7 +231573,7 @@ } }, { - "id": 1358, + "id": 1716, "properties": { "facing": "east", "occupied": "false", @@ -215098,7 +231601,7 @@ }, "states": [ { - "id": 18393, + "id": 20177, "properties": { "candles": "1", "lit": "true", @@ -215106,7 +231609,7 @@ } }, { - "id": 18394, + "id": 20178, "properties": { "candles": "1", "lit": "true", @@ -215114,7 +231617,7 @@ } }, { - "id": 18395, + "id": 20179, "properties": { "candles": "1", "lit": "false", @@ -215123,7 +231626,7 @@ }, { "default": true, - "id": 18396, + "id": 20180, "properties": { "candles": "1", "lit": "false", @@ -215131,7 +231634,7 @@ } }, { - "id": 18397, + "id": 20181, "properties": { "candles": "2", "lit": "true", @@ -215139,7 +231642,7 @@ } }, { - "id": 18398, + "id": 20182, "properties": { "candles": "2", "lit": "true", @@ -215147,7 +231650,7 @@ } }, { - "id": 18399, + "id": 20183, "properties": { "candles": "2", "lit": "false", @@ -215155,7 +231658,7 @@ } }, { - "id": 18400, + "id": 20184, "properties": { "candles": "2", "lit": "false", @@ -215163,7 +231666,7 @@ } }, { - "id": 18401, + "id": 20185, "properties": { "candles": "3", "lit": "true", @@ -215171,7 +231674,7 @@ } }, { - "id": 18402, + "id": 20186, "properties": { "candles": "3", "lit": "true", @@ -215179,7 +231682,7 @@ } }, { - "id": 18403, + "id": 20187, "properties": { "candles": "3", "lit": "false", @@ -215187,7 +231690,7 @@ } }, { - "id": 18404, + "id": 20188, "properties": { "candles": "3", "lit": "false", @@ -215195,7 +231698,7 @@ } }, { - "id": 18405, + "id": 20189, "properties": { "candles": "4", "lit": "true", @@ -215203,7 +231706,7 @@ } }, { - "id": 18406, + "id": 20190, "properties": { "candles": "4", "lit": "true", @@ -215211,7 +231714,7 @@ } }, { - "id": 18407, + "id": 20191, "properties": { "candles": "4", "lit": "false", @@ -215219,7 +231722,7 @@ } }, { - "id": 18408, + "id": 20192, "properties": { "candles": "4", "lit": "false", @@ -215237,14 +231740,14 @@ }, "states": [ { - "id": 18595, + "id": 20379, "properties": { "lit": "true" } }, { "default": true, - "id": 18596, + "id": 20380, "properties": { "lit": "false" } @@ -215255,7 +231758,7 @@ "states": [ { "default": true, - "id": 8611 + "id": 10255 } ] }, @@ -215263,7 +231766,7 @@ "states": [ { "default": true, - "id": 10323 + "id": 12107 } ] }, @@ -215271,7 +231774,7 @@ "states": [ { "default": true, - "id": 10339 + "id": 12123 } ] }, @@ -215287,25 +231790,25 @@ "states": [ { "default": true, - "id": 10271, + "id": 12055, "properties": { "facing": "north" } }, { - "id": 10272, + "id": 12056, "properties": { "facing": "south" } }, { - "id": 10273, + "id": 12057, "properties": { "facing": "west" } }, { - "id": 10274, + "id": 12058, "properties": { "facing": "east" } @@ -215325,38 +231828,38 @@ }, "states": [ { - "id": 10183, + "id": 11967, "properties": { "facing": "north" } }, { - "id": 10184, + "id": 11968, "properties": { "facing": "east" } }, { - "id": 10185, + "id": 11969, "properties": { "facing": "south" } }, { - "id": 10186, + "id": 11970, "properties": { "facing": "west" } }, { "default": true, - "id": 10187, + "id": 11971, "properties": { "facing": "up" } }, { - "id": 10188, + "id": 11972, "properties": { "facing": "down" } @@ -215367,7 +231870,7 @@ "states": [ { "default": true, - "id": 4408 + "id": 5784 } ] }, @@ -215396,7 +231899,7 @@ }, "states": [ { - "id": 7620, + "id": 9104, "properties": { "east": "true", "north": "true", @@ -215406,7 +231909,7 @@ } }, { - "id": 7621, + "id": 9105, "properties": { "east": "true", "north": "true", @@ -215416,7 +231919,7 @@ } }, { - "id": 7622, + "id": 9106, "properties": { "east": "true", "north": "true", @@ -215426,7 +231929,7 @@ } }, { - "id": 7623, + "id": 9107, "properties": { "east": "true", "north": "true", @@ -215436,7 +231939,7 @@ } }, { - "id": 7624, + "id": 9108, "properties": { "east": "true", "north": "true", @@ -215446,7 +231949,7 @@ } }, { - "id": 7625, + "id": 9109, "properties": { "east": "true", "north": "true", @@ -215456,7 +231959,7 @@ } }, { - "id": 7626, + "id": 9110, "properties": { "east": "true", "north": "true", @@ -215466,7 +231969,7 @@ } }, { - "id": 7627, + "id": 9111, "properties": { "east": "true", "north": "true", @@ -215476,7 +231979,7 @@ } }, { - "id": 7628, + "id": 9112, "properties": { "east": "true", "north": "false", @@ -215486,7 +231989,7 @@ } }, { - "id": 7629, + "id": 9113, "properties": { "east": "true", "north": "false", @@ -215496,7 +231999,7 @@ } }, { - "id": 7630, + "id": 9114, "properties": { "east": "true", "north": "false", @@ -215506,7 +232009,7 @@ } }, { - "id": 7631, + "id": 9115, "properties": { "east": "true", "north": "false", @@ -215516,7 +232019,7 @@ } }, { - "id": 7632, + "id": 9116, "properties": { "east": "true", "north": "false", @@ -215526,7 +232029,7 @@ } }, { - "id": 7633, + "id": 9117, "properties": { "east": "true", "north": "false", @@ -215536,7 +232039,7 @@ } }, { - "id": 7634, + "id": 9118, "properties": { "east": "true", "north": "false", @@ -215546,7 +232049,7 @@ } }, { - "id": 7635, + "id": 9119, "properties": { "east": "true", "north": "false", @@ -215556,7 +232059,7 @@ } }, { - "id": 7636, + "id": 9120, "properties": { "east": "false", "north": "true", @@ -215566,7 +232069,7 @@ } }, { - "id": 7637, + "id": 9121, "properties": { "east": "false", "north": "true", @@ -215576,7 +232079,7 @@ } }, { - "id": 7638, + "id": 9122, "properties": { "east": "false", "north": "true", @@ -215586,7 +232089,7 @@ } }, { - "id": 7639, + "id": 9123, "properties": { "east": "false", "north": "true", @@ -215596,7 +232099,7 @@ } }, { - "id": 7640, + "id": 9124, "properties": { "east": "false", "north": "true", @@ -215606,7 +232109,7 @@ } }, { - "id": 7641, + "id": 9125, "properties": { "east": "false", "north": "true", @@ -215616,7 +232119,7 @@ } }, { - "id": 7642, + "id": 9126, "properties": { "east": "false", "north": "true", @@ -215626,7 +232129,7 @@ } }, { - "id": 7643, + "id": 9127, "properties": { "east": "false", "north": "true", @@ -215636,7 +232139,7 @@ } }, { - "id": 7644, + "id": 9128, "properties": { "east": "false", "north": "false", @@ -215646,7 +232149,7 @@ } }, { - "id": 7645, + "id": 9129, "properties": { "east": "false", "north": "false", @@ -215656,7 +232159,7 @@ } }, { - "id": 7646, + "id": 9130, "properties": { "east": "false", "north": "false", @@ -215666,7 +232169,7 @@ } }, { - "id": 7647, + "id": 9131, "properties": { "east": "false", "north": "false", @@ -215676,7 +232179,7 @@ } }, { - "id": 7648, + "id": 9132, "properties": { "east": "false", "north": "false", @@ -215686,7 +232189,7 @@ } }, { - "id": 7649, + "id": 9133, "properties": { "east": "false", "north": "false", @@ -215696,7 +232199,7 @@ } }, { - "id": 7650, + "id": 9134, "properties": { "east": "false", "north": "false", @@ -215707,7 +232210,7 @@ }, { "default": true, - "id": 7651, + "id": 9135, "properties": { "east": "false", "north": "false", @@ -215722,7 +232225,7 @@ "states": [ { "default": true, - "id": 7480 + "id": 8964 } ] }, @@ -215738,25 +232241,25 @@ "states": [ { "default": true, - "id": 8910, + "id": 10554, "properties": { "facing": "north" } }, { - "id": 8911, + "id": 10555, "properties": { "facing": "south" } }, { - "id": 8912, + "id": 10556, "properties": { "facing": "west" } }, { - "id": 8913, + "id": 10557, "properties": { "facing": "east" } @@ -215767,7 +232270,7 @@ "states": [ { "default": true, - "id": 1642 + "id": 2000 } ] }, @@ -215795,97 +232298,97 @@ "states": [ { "default": true, - "id": 7147, + "id": 8611, "properties": { "rotation": "0" } }, { - "id": 7148, + "id": 8612, "properties": { "rotation": "1" } }, { - "id": 7149, + "id": 8613, "properties": { "rotation": "2" } }, { - "id": 7150, + "id": 8614, "properties": { "rotation": "3" } }, { - "id": 7151, + "id": 8615, "properties": { "rotation": "4" } }, { - "id": 7152, + "id": 8616, "properties": { "rotation": "5" } }, { - "id": 7153, + "id": 8617, "properties": { "rotation": "6" } }, { - "id": 7154, + "id": 8618, "properties": { "rotation": "7" } }, { - "id": 7155, + "id": 8619, "properties": { "rotation": "8" } }, { - "id": 7156, + "id": 8620, "properties": { "rotation": "9" } }, { - "id": 7157, + "id": 8621, "properties": { "rotation": "10" } }, { - "id": 7158, + "id": 8622, "properties": { "rotation": "11" } }, { - "id": 7159, + "id": 8623, "properties": { "rotation": "12" } }, { - "id": 7160, + "id": 8624, "properties": { "rotation": "13" } }, { - "id": 7161, + "id": 8625, "properties": { "rotation": "14" } }, { - "id": 7162, + "id": 8626, "properties": { "rotation": "15" } @@ -215904,25 +232407,25 @@ "states": [ { "default": true, - "id": 7163, + "id": 8627, "properties": { "facing": "north" } }, { - "id": 7164, + "id": 8628, "properties": { "facing": "south" } }, { - "id": 7165, + "id": 8629, "properties": { "facing": "west" } }, { - "id": 7166, + "id": 8630, "properties": { "facing": "east" } diff --git a/src/main/resources/mapping.json b/src/main/resources/mapping.json index ff603c4..8a90cb0 100644 --- a/src/main/resources/mapping.json +++ b/src/main/resources/mapping.json @@ -12,44 +12,44 @@ "PacketLoginOutPluginMessaging": "0x04" }, "PlayIn": { - "0x12": "PacketPlayInKeepAlive", + "0x11": "PacketPlayInKeepAlive", "0x04": "ServerboundChatCommandPacket", "0x05": "PacketPlayInChat", - "0x15": "PacketPlayInPositionAndLook", - "0x14": "PacketPlayInPosition", - "0x16": "PacketPlayInRotation", - "0x0D": "PacketPlayInPluginMessaging", - "0x09": "PacketPlayInTabComplete", + "0x14": "PacketPlayInPositionAndLook", + "0x13": "PacketPlayInPosition", + "0x15": "PacketPlayInRotation", + "0x0C": "PacketPlayInPluginMessaging", + "0x08": "PacketPlayInTabComplete", "0x28": "PacketPlayInHeldItemChange", "0x24": "PacketPlayInResourcePackStatus" }, "PlayOut": { - "PacketPlayOutLogin": "0x25", - "PacketPlayOutPositionAndLook": "0x39", - "PacketPlayOutSpawnPosition": "0x4D", - "ClientboundSystemChatPacket": "0x62", - "PacketPlayOutPlayerAbilities": "0x31", - "ClientboundLevelChunkWithLightPacket": "0x21", - "PacketPlayOutUnloadChunk": "0x1C", - "PacketPlayOutKeepAlive": "0x20", - "PacketPlayOutPlayerInfo": "0x37", - "PacketPlayOutUpdateViewPosition": "0x4B", - "PacketPlayOutDisconnect": "0x19", - "PacketPlayOutPluginMessaging": "0x16", - "PacketPlayOutTabComplete": "0x0E", - "PacketPlayOutDeclareCommands": "0x0F", + "PacketPlayOutLogin": "0x24", + "PacketPlayOutPositionAndLook": "0x38", + "PacketPlayOutSpawnPosition": "0x4C", + "ClientboundSystemChatPacket": "0x60", + "PacketPlayOutPlayerAbilities": "0x30", + "ClientboundLevelChunkWithLightPacket": "0x20", + "PacketPlayOutUnloadChunk": "0x1B", + "PacketPlayOutKeepAlive": "0x1F", + "PacketPlayOutPlayerInfo": "0x36", + "PacketPlayOutUpdateViewPosition": "0x4A", + "PacketPlayOutDisconnect": "0x17", + "PacketPlayOutPluginMessaging": "0x15", + "PacketPlayOutTabComplete": "0x0D", + "PacketPlayOutDeclareCommands": "0x0E", "PacketPlayOutRespawn": "0x3E", - "PacketPlayOutGameState": "0x1D", - "PacketPlayOutEntityDestroy": "0x3B", - "PacketPlayOutEntityMetadata": "0x50", + "PacketPlayOutGameState": "0x1C", + "PacketPlayOutEntityDestroy": "0x3A", + "PacketPlayOutEntityMetadata": "0x4E", "PacketPlayOutSpawnEntity": "0x00", - "PacketPlayOutHeldItemChange": "0x4A", - "PacketPlayOutPlayerListHeaderFooter": "0x63", - "PacketPlayOutResourcePackSend": "0x3D", - "ClientboundSetTitlesAnimationPacket": "0x5E", - "ClientboundSetTitleTextPacket": "0x5D", - "ClientboundSetSubtitleTextPacket": "0x5B", - "ClientboundClearTitlesPacket": "0x0D" + "PacketPlayOutHeldItemChange": "0x49", + "PacketPlayOutPlayerListHeaderFooter": "0x61", + "PacketPlayOutResourcePackSend": "0x3C", + "ClientboundSetTitlesAnimationPacket": "0x5C", + "ClientboundSetTitleTextPacket": "0x5B", + "ClientboundSetSubtitleTextPacket": "0x59", + "ClientboundClearTitlesPacket": "0x0C" }, "StatusIn": { "0x01": "PacketStatusInPing", diff --git a/src/main/resources/server.properties b/src/main/resources/server.properties index 367a1e1..6fd5021 100644 --- a/src/main/resources/server.properties +++ b/src/main/resources/server.properties @@ -81,6 +81,6 @@ required-resource-pack=false #JSON formatted text to show when prompting the player to install the resource pack (May be left blank) resource-pack-prompt={"text":"","extra":[{"text":"Install server resource pack!","color":"yellow"}]} -#Whether to enforce the player allowlist. If true, loads and enforces the allowlist from 'allowlist.json' +#Whether to enforce the player whitelist. If true, enforces the whitelist from 'whitelist.json' #in the same format as vanilla minecraft servers -enforce-allowlist=false \ No newline at end of file +enforce-whitelist=false \ No newline at end of file